Table of Contents

Class CfnMaintenanceWindowTask.MaintenanceWindowStepFunctionsParametersProperty

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

The MaintenanceWindowStepFunctionsParameters property type specifies the parameters for the execution of a STEP_FUNCTIONS task in a Systems Manager maintenance window.

public class CfnMaintenanceWindowTask.MaintenanceWindowStepFunctionsParametersProperty : CfnMaintenanceWindowTask.IMaintenanceWindowStepFunctionsParametersProperty
Inheritance
CfnMaintenanceWindowTask.MaintenanceWindowStepFunctionsParametersProperty
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 maintenanceWindowStepFunctionsParametersProperty = new MaintenanceWindowStepFunctionsParametersProperty {
                 Input = "input",
                 Name = "name"
             };

Remarks

MaintenanceWindowStepFunctionsParameters is a property of the TaskInvocationParameters property type.

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

ExampleMetadata: fixture=_generated

Constructors

MaintenanceWindowStepFunctionsParametersProperty()

public MaintenanceWindowStepFunctionsParametersProperty()

Properties

Input

The inputs for the STEP_FUNCTIONS task.

public string? Input { get; set; }

Property Value

string

Remarks

Name

The name of the STEP_FUNCTIONS task.

public string? Name { get; set; }

Property Value

string

Remarks