Table of Contents

Class CfnMaintenanceWindowTask.MaintenanceWindowAutomationParametersProperty

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 class CfnMaintenanceWindowTask.MaintenanceWindowAutomationParametersProperty : CfnMaintenanceWindowTask.IMaintenanceWindowAutomationParametersProperty
Inheritance
CfnMaintenanceWindowTask.MaintenanceWindowAutomationParametersProperty
Implements
Inherited Members

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

Constructors

MaintenanceWindowAutomationParametersProperty()

public MaintenanceWindowAutomationParametersProperty()

Properties

DocumentVersion

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

public string? DocumentVersion { get; set; }

Property Value

string

Remarks

Parameters

The parameters for the AUTOMATION task.

public object? Parameters { get; set; }

Property Value

object

Remarks