ScheduleGroupReference

class aws_cdk.interfaces.aws_scheduler.ScheduleGroupReference(*, schedule_group_arn, schedule_group_name)

Bases: object

A reference to a ScheduleGroup resource.

Parameters:
  • schedule_group_arn (str) – The ARN of the ScheduleGroup resource.

  • schedule_group_name (str) – The Name of the ScheduleGroup 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_scheduler as interfaces_aws_scheduler

schedule_group_reference = interfaces_aws_scheduler.ScheduleGroupReference(
    schedule_group_arn="scheduleGroupArn",
    schedule_group_name="scheduleGroupName"
)

Attributes

schedule_group_arn

The ARN of the ScheduleGroup resource.

schedule_group_name

The Name of the ScheduleGroup resource.