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