MaintenanceWindowTaskReference
- class aws_cdk.interfaces.aws_ssm.MaintenanceWindowTaskReference(*, window_id, window_task_id)
Bases:
objectA reference to a MaintenanceWindowTask resource.
- Parameters:
window_id (
str) – The WindowId of the MaintenanceWindowTask resource.window_task_id (
str) – The WindowTaskId of the MaintenanceWindowTask resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_ssm as interfaces_ssm maintenance_window_task_reference = interfaces_ssm.MaintenanceWindowTaskReference( window_id="windowId", window_task_id="windowTaskId" )
Attributes
- window_id
The WindowId of the MaintenanceWindowTask resource.
- window_task_id
The WindowTaskId of the MaintenanceWindowTask resource.