CfnSignalMapProps

class aws_cdk.aws_medialive.CfnSignalMapProps(*, discovery_entry_point_arn, name, cloud_watch_alarm_template_group_identifiers=None, description=None, event_bridge_rule_template_group_identifiers=None, force_rediscovery=None, tags=None)

Bases: object

Properties for defining a CfnSignalMap.

Parameters:
  • discovery_entry_point_arn (str) – A top-level supported Amazon Web Services resource ARN to discover a signal map from.

  • name (str) – A resource’s name. Names must be unique within the scope of a resource type in a specific region.

  • cloud_watch_alarm_template_group_identifiers (Optional[Sequence[str]]) – A cloudwatch alarm template group’s identifier. Can be either be its id or current name.

  • description (Optional[str]) – A resource’s optional description.

  • event_bridge_rule_template_group_identifiers (Optional[Sequence[str]]) – An eventbridge rule template group’s identifier. Can be either be its id or current name.

  • force_rediscovery (Union[bool, IResolvable, None]) – If true, will force a rediscovery of a signal map if an unchanged discoveryEntryPointArn is provided. Default: - false

  • tags (Optional[Mapping[str, str]]) – Represents the tags associated with a resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.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_medialive as medialive

cfn_signal_map_props = medialive.CfnSignalMapProps(
    discovery_entry_point_arn="discoveryEntryPointArn",
    name="name",

    # the properties below are optional
    cloud_watch_alarm_template_group_identifiers=["cloudWatchAlarmTemplateGroupIdentifiers"],
    description="description",
    event_bridge_rule_template_group_identifiers=["eventBridgeRuleTemplateGroupIdentifiers"],
    force_rediscovery=False,
    tags={
        "tags_key": "tags"
    }
)

Attributes

cloud_watch_alarm_template_group_identifiers

A cloudwatch alarm template group’s identifier.

Can be either be its id or current name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html#cfn-medialive-signalmap-cloudwatchalarmtemplategroupidentifiers

description

A resource’s optional description.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html#cfn-medialive-signalmap-description

discovery_entry_point_arn

A top-level supported Amazon Web Services resource ARN to discover a signal map from.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html#cfn-medialive-signalmap-discoveryentrypointarn

event_bridge_rule_template_group_identifiers

An eventbridge rule template group’s identifier.

Can be either be its id or current name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html#cfn-medialive-signalmap-eventbridgeruletemplategroupidentifiers

force_rediscovery

If true, will force a rediscovery of a signal map if an unchanged discoveryEntryPointArn is provided.

Default:
  • false

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html#cfn-medialive-signalmap-forcerediscovery

name

A resource’s name.

Names must be unique within the scope of a resource type in a specific region.

See:

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

tags

Represents the tags associated with a resource.

See:

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