CfnEventBridgeRuleTemplateMixinProps
- class aws_cdk.mixins_preview.aws_medialive.mixins.CfnEventBridgeRuleTemplateMixinProps(*, description=None, event_targets=None, event_type=None, group_identifier=None, name=None, tags=None)
Bases:
objectProperties for CfnEventBridgeRuleTemplatePropsMixin.
- Parameters:
description (
Optional[str]) – A resource’s optional description.event_targets (
Union[IResolvable,Sequence[Union[IResolvable,EventBridgeRuleTemplateTargetProperty,Dict[str,Any]]],None]) – The destinations that will receive the event notifications.event_type (
Optional[str]) – The type of event to match with the rule.group_identifier (
Optional[str]) – An eventbridge rule template group’s identifier. Can be either be its id or current name.name (
Optional[str]) – A resource’s name. Names must be unique within the scope of a resource type in a specific region.tags (
Optional[Mapping[str,str]]) – Represents the tags associated with a resource.
- See:
- 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_medialive import mixins as medialive_mixins cfn_event_bridge_rule_template_mixin_props = medialive_mixins.CfnEventBridgeRuleTemplateMixinProps( description="description", event_targets=[medialive_mixins.CfnEventBridgeRuleTemplatePropsMixin.EventBridgeRuleTemplateTargetProperty( arn="arn" )], event_type="eventType", group_identifier="groupIdentifier", name="name", tags={ "tags_key": "tags" } )
Attributes
- description
A resource’s optional description.
- event_targets
The destinations that will receive the event notifications.
- event_type
The type of event to match with the rule.
- group_identifier
An eventbridge rule template group’s identifier.
Can be either be its id or current name.
- 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.