Table of Contents

Interface CfnMaintenanceWindowTask.IMaintenanceWindowAutomationParametersProperty

Namespace
Amazon.CDK.AWS.SSM
Assembly
Amazon.CDK.AWS.SSM.dll

The MaintenanceWindowAutomationParameters property type specifies the parameters for an AUTOMATION task type for a maintenance window task in AWS Systems Manager .

public interface CfnMaintenanceWindowTask.IMaintenanceWindowAutomationParametersProperty

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SSM;

             var parameters;

             var maintenanceWindowAutomationParametersProperty = new MaintenanceWindowAutomationParametersProperty {
                 DocumentVersion = "documentVersion",
                 Parameters = parameters
             };

Remarks

MaintenanceWindowAutomationParameters is a property of the TaskInvocationParameters property type.

For information about available parameters in Automation runbooks, you can view the content of the runbook itself in the Systems Manager console. For information, see View runbook content in the AWS Systems Manager User Guide .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html

ExampleMetadata: fixture=_generated

Properties

DocumentVersion

The version of an Automation runbook to use during task execution.

string? DocumentVersion { get; }

Property Value

string

Remarks

Parameters

The parameters for the AUTOMATION task.

object? Parameters { get; }

Property Value

object

Remarks