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: - falsetags (
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.
- description
A resource’s optional description.
- discovery_entry_point_arn
A top-level supported Amazon Web Services resource ARN to discover a signal map from.
- event_bridge_rule_template_group_identifiers
An eventbridge rule template group’s identifier.
Can be either be its id or current name.
- force_rediscovery
If true, will force a rediscovery of a signal map if an unchanged discoveryEntryPointArn is provided.
- name
A resource’s name.
Names must be unique within the scope of a resource type in a specific region.
- tags
Represents the tags associated with a resource.