CfnGroupMixinProps

class aws_cdk.mixins_preview.aws_synthetics.mixins.CfnGroupMixinProps(*, name=None, resource_arns=None, tags=None)

Bases: object

Properties for CfnGroupPropsMixin.

Parameters:
  • name (Optional[str]) – A name for the group. It can include any Unicode characters. The names for all groups in your account, across all Regions, must be unique.

  • resource_arns (Optional[Sequence[str]]) – The ARNs of the canaries that you want to associate with this group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The list of key-value pairs that are associated with the group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-group.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.mixins_preview.aws_synthetics import mixins as synthetics_mixins

cfn_group_mixin_props = synthetics_mixins.CfnGroupMixinProps(
    name="name",
    resource_arns=["resourceArns"],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

name

A name for the group. It can include any Unicode characters.

The names for all groups in your account, across all Regions, must be unique.

See:

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

resource_arns

The ARNs of the canaries that you want to associate with this group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-group.html#cfn-synthetics-group-resourcearns

tags

The list of key-value pairs that are associated with the group.

See:

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