MaintenanceWindowTaskReference

class aws_cdk.interfaces.aws_ssm.MaintenanceWindowTaskReference(*, maintenance_window_task_id, window_task_id)

Bases: object

A reference to a MaintenanceWindowTask resource.

Parameters:
  • maintenance_window_task_id (str) – The Id 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(
    maintenance_window_task_id="maintenanceWindowTaskId",
    window_task_id="windowTaskId"
)

Attributes

maintenance_window_task_id

The Id of the MaintenanceWindowTask resource.

window_task_id

The WindowTaskId of the MaintenanceWindowTask resource.