interface CfnMaintenanceWindowTargetProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SSM.CfnMaintenanceWindowTargetProps |
Java | software.amazon.awscdk.services.ssm.CfnMaintenanceWindowTargetProps |
Python | aws_cdk.aws_ssm.CfnMaintenanceWindowTargetProps |
TypeScript | @aws-cdk/aws-ssm » CfnMaintenanceWindowTargetProps |
Properties for defining a CfnMaintenanceWindowTarget
.
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 cfnMaintenanceWindowTargetProps: ssm.CfnMaintenanceWindowTargetProps = {
resourceType: 'resourceType',
targets: [{
key: 'key',
values: ['values'],
}],
windowId: 'windowId',
// the properties below are optional
description: 'description',
name: 'name',
ownerInformation: 'ownerInformation',
};
Properties
Name | Type | Description |
---|---|---|
resource | string | The type of target that is being registered with the maintenance window. |
targets | IResolvable | IResolvable | Targets [] | The targets to register with the maintenance window. |
window | string | The ID of the maintenance window to register the target with. |
description? | string | A description for the target. |
name? | string | The name for the maintenance window target. |
owner | string | A user-provided value that will be included in any Amazon CloudWatch Events events that are raised while running tasks for these targets in this maintenance window. |
resourceType
Type:
string
The type of target that is being registered with the maintenance window.
targets
Type:
IResolvable
|
IResolvable
|
Targets
[]
The targets to register with the maintenance window.
In other words, the instances to run commands on when the maintenance window runs.
You must specify targets by using the WindowTargetIds
parameter.
windowId
Type:
string
The ID of the maintenance window to register the target with.
description?
Type:
string
(optional)
A description for the target.
name?
Type:
string
(optional)
The name for the maintenance window target.
ownerInformation?
Type:
string
(optional)
A user-provided value that will be included in any Amazon CloudWatch Events events that are raised while running tasks for these targets in this maintenance window.