interface CfnEventBridgeRuleTemplateProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MediaLive.CfnEventBridgeRuleTemplateProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnEventBridgeRuleTemplateProps |
![]() | software.amazon.awscdk.services.medialive.CfnEventBridgeRuleTemplateProps |
![]() | aws_cdk.aws_medialive.CfnEventBridgeRuleTemplateProps |
![]() | aws-cdk-lib » aws_medialive » CfnEventBridgeRuleTemplateProps |
Properties for defining a CfnEventBridgeRuleTemplate
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const cfnEventBridgeRuleTemplateProps: medialive.CfnEventBridgeRuleTemplateProps = {
eventType: 'eventType',
groupIdentifier: 'groupIdentifier',
name: 'name',
// the properties below are optional
description: 'description',
eventTargets: [{
arn: 'arn',
}],
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
event | string | The type of event to match with the rule. |
group | string | An eventbridge rule template group's identifier. |
name | string | A resource's name. |
description? | string | A resource's optional description. |
event | IResolvable | IResolvable | Event [] | The destinations that will receive the event notifications. |
tags? | { [string]: string } | Represents the tags associated with a resource. |
eventType
Type:
string
The type of event to match with the rule.
groupIdentifier
Type:
string
An eventbridge rule template group's identifier.
Can be either be its id or current name.
name
Type:
string
A resource's name.
Names must be unique within the scope of a resource type in a specific region.
description?
Type:
string
(optional)
A resource's optional description.
eventTargets?
Type:
IResolvable
|
IResolvable
|
Event
[]
(optional)
The destinations that will receive the event notifications.
tags?
Type:
{ [string]: string }
(optional)
Represents the tags associated with a resource.