interface CfnMaintenanceWindowTargetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSM.Mixins.CfnMaintenanceWindowTargetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssm/mixins#CfnMaintenanceWindowTargetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ssm.mixins.CfnMaintenanceWindowTargetMixinProps |
Python | aws_cdk.mixins_preview.aws_ssm.mixins.CfnMaintenanceWindowTargetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ssm » mixins » CfnMaintenanceWindowTargetMixinProps |
Properties for CfnMaintenanceWindowTargetPropsMixin.
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 cfnMaintenanceWindowTargetMixinProps: ssm_mixins.CfnMaintenanceWindowTargetMixinProps = {
description: 'description',
name: 'name',
ownerInformation: 'ownerInformation',
resourceType: 'resourceType',
targets: [{
key: 'key',
values: ['values'],
}],
windowId: 'windowId',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| 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?
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.
resourceType?
Type:
string
(optional)
The type of target that is being registered with the maintenance window.
targets?
Type:
IResolvable | (IResolvable | Targets)[]
(optional)
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
(optional)
The ID of the maintenance window to register the target with.

.NET
Go
Java
Python
TypeScript