interface MaintenanceWindowStepFunctionsParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnMaintenanceWindowTask.MaintenanceWindowStepFunctionsParametersProperty |
Java | software.amazon.awscdk.services.ssm.CfnMaintenanceWindowTask.MaintenanceWindowStepFunctionsParametersProperty |
Python | aws_cdk.aws_ssm.CfnMaintenanceWindowTask.MaintenanceWindowStepFunctionsParametersProperty |
TypeScript | @aws-cdk/aws-ssm » CfnMaintenanceWindowTask » 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 * as ssm from '@aws-cdk/aws-ssm';
const maintenanceWindowStepFunctionsParametersProperty: ssm.CfnMaintenanceWindowTask.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
Java
Python
TypeScript