interface MaintenanceWindowAutomationParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnMaintenanceWindowTask.MaintenanceWindowAutomationParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnMaintenanceWindowTask_MaintenanceWindowAutomationParametersProperty |
Java | software.amazon.awscdk.services.ssm.CfnMaintenanceWindowTask.MaintenanceWindowAutomationParametersProperty |
Python | aws_cdk.aws_ssm.CfnMaintenanceWindowTask.MaintenanceWindowAutomationParametersProperty |
TypeScript | aws-cdk-lib » aws_ssm » CfnMaintenanceWindowTask » MaintenanceWindowAutomationParametersProperty |
The MaintenanceWindowAutomationParameters property type specifies the parameters for an AUTOMATION task type for a maintenance window task in AWS Systems Manager .
MaintenanceWindowAutomationParameters is a property of the TaskInvocationParameters property type.
For information about available parameters in Automation runbooks, you can view the content of the runbook itself in the Systems Manager console. For information, see View runbook content in the AWS Systems Manager User Guide .
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-lib';
declare const parameters: any;
const maintenanceWindowAutomationParametersProperty: ssm.CfnMaintenanceWindowTask.MaintenanceWindowAutomationParametersProperty = {
documentVersion: 'documentVersion',
parameters: parameters,
};
Properties
| Name | Type | Description |
|---|---|---|
| document | string | The version of an Automation runbook to use during task execution. |
| parameters? | any | The parameters for the AUTOMATION type task. |
documentVersion?
Type:
string
(optional)
The version of an Automation runbook to use during task execution.
parameters?
Type:
any
(optional)
The parameters for the AUTOMATION type task.

.NET
Go
Java
Python
TypeScript