interface MaintenanceWindowStepFunctionsParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnMaintenanceWindowTaskPropsMixin.MaintenanceWindowStepFunctionsParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnMaintenanceWindowTaskPropsMixin_MaintenanceWindowStepFunctionsParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnMaintenanceWindowTaskPropsMixin.MaintenanceWindowStepFunctionsParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnMaintenanceWindowTaskPropsMixin.MaintenanceWindowStepFunctionsParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnMaintenanceWindowTaskPropsMixin » MaintenanceWindowStepFunctionsParametersProperty |
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 { aws_ssm as ssm } from '@aws-cdk/cfn-property-mixins';
const maintenanceWindowStepFunctionsParametersProperty: ssm.CfnMaintenanceWindowTaskPropsMixin.MaintenanceWindowStepFunctionsParametersProperty = {
input: 'input',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| input? | string | The inputs for the STEP_FUNCTIONS task. |
| name? | string | The name of the STEP_FUNCTIONS task. |
input?
Type:
string
(optional)
The inputs for the STEP_FUNCTIONS task.
name?
Type:
string
(optional)
The name of the STEP_FUNCTIONS task.

.NET
Go
Java
Python
TypeScript