Interface CfnMaintenanceWindowTask.MaintenanceWindowStepFunctionsParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMaintenanceWindowTask.MaintenanceWindowStepFunctionsParametersProperty.Jsii$Proxy
Enclosing class:
CfnMaintenanceWindowTask

@Stability(Stable) public static interface CfnMaintenanceWindowTask.MaintenanceWindowStepFunctionsParametersProperty extends software.amazon.jsii.JsiiSerializable
The MaintenanceWindowStepFunctionsParameters property type specifies the parameters for the execution of a STEP_FUNCTIONS task in a Systems Manager maintenance window.

MaintenanceWindowStepFunctionsParameters is a property of the TaskInvocationParameters property type.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ssm.*;
 MaintenanceWindowStepFunctionsParametersProperty maintenanceWindowStepFunctionsParametersProperty = MaintenanceWindowStepFunctionsParametersProperty.builder()
         .input("input")
         .name("name")
         .build();
 

See Also: