interface MaintenanceWindowStepFunctionsParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSM.Mixins.CfnMaintenanceWindowTaskPropsMixin.MaintenanceWindowStepFunctionsParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssm/mixins#CfnMaintenanceWindowTaskPropsMixin_MaintenanceWindowStepFunctionsParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssm.mixins.CfnMaintenanceWindowTaskPropsMixin.MaintenanceWindowStepFunctionsParametersProperty |
Python | aws_cdk.mixins_preview.aws_ssm.mixins.CfnMaintenanceWindowTaskPropsMixin.MaintenanceWindowStepFunctionsParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssm » mixins » 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 { mixins as ssm_mixins } from '@aws-cdk/mixins-preview/aws-ssm';
const maintenanceWindowStepFunctionsParametersProperty: ssm_mixins.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