CfnScheduleGroupProps

class aws_cdk.aws_scheduler.CfnScheduleGroupProps(*, name=None, tags=None)

Bases: object

Properties for defining a CfnScheduleGroup.

Parameters:
  • name (Optional[str]) – The name of the schedule group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-scheduler-schedulegroup.html

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 import aws_scheduler as scheduler

cfn_schedule_group_props = scheduler.CfnScheduleGroupProps(
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

name

The name of the schedule group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-scheduler-schedulegroup.html#cfn-scheduler-schedulegroup-name

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-scheduler-schedulegroup.html#cfn-scheduler-schedulegroup-tags