MaintenanceWindowTargetReference

class aws_cdk.interfaces.aws_ssm.MaintenanceWindowTargetReference(*, window_id, window_target_id)

Bases: object

A reference to a MaintenanceWindowTarget resource.

Parameters:
  • window_id (str) – The WindowId of the MaintenanceWindowTarget resource.

  • window_target_id (str) – The WindowTargetId of the MaintenanceWindowTarget 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_target_reference = interfaces_ssm.MaintenanceWindowTargetReference(
    window_id="windowId",
    window_target_id="windowTargetId"
)

Attributes

window_id

The WindowId of the MaintenanceWindowTarget resource.

window_target_id

The WindowTargetId of the MaintenanceWindowTarget resource.