interface MaintenanceWindowTaskReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SSM.MaintenanceWindowTaskReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsssm#MaintenanceWindowTaskReference |
Java | software.amazon.awscdk.interfaces.ssm.MaintenanceWindowTaskReference |
Python | aws_cdk.interfaces.aws_ssm.MaintenanceWindowTaskReference |
TypeScript | aws-cdk-lib » interfaces » aws_ssm » MaintenanceWindowTaskReference |
A reference to a MaintenanceWindowTask resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as interfaces_ssm } from 'aws-cdk-lib/interfaces';
const maintenanceWindowTaskReference: interfaces_ssm.MaintenanceWindowTaskReference = {
maintenanceWindowTaskId: 'maintenanceWindowTaskId',
windowTaskId: 'windowTaskId',
};
Properties
| Name | Type | Description |
|---|---|---|
| maintenance | string | The Id of the MaintenanceWindowTask resource. |
| window | string | The WindowTaskId of the MaintenanceWindowTask resource. |
maintenanceWindowTaskId
Type:
string
The Id of the MaintenanceWindowTask resource.
windowTaskId
Type:
string
The WindowTaskId of the MaintenanceWindowTask resource.

.NET
Go
Java
Python
TypeScript