interface CfnEventBridgeRuleTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnEventBridgeRuleTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnEventBridgeRuleTemplateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnEventBridgeRuleTemplateMixinProps |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnEventBridgeRuleTemplateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnEventBridgeRuleTemplateMixinProps |
Properties for CfnEventBridgeRuleTemplatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const cfnEventBridgeRuleTemplateMixinProps: medialive_mixins.CfnEventBridgeRuleTemplateMixinProps = {
description: 'description',
eventTargets: [{
arn: 'arn',
}],
eventType: 'eventType',
groupIdentifier: 'groupIdentifier',
name: 'name',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A resource's optional description. |
| event | IResolvable | (IResolvable | Event)[] | The destinations that will receive the event notifications. |
| 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. |
| tags? | { [string]: string } | Represents the tags associated with a resource. |
description?
Type:
string
(optional)
A resource's optional description.
eventTargets?
Type:
IResolvable | (IResolvable | Event)[]
(optional)
The destinations that will receive the event notifications.
eventType?
Type:
string
(optional)
The type of event to match with the rule.
groupIdentifier?
Type:
string
(optional)
An eventbridge rule template group's identifier.
Can be either be its id or current name.
name?
Type:
string
(optional)
A resource's name.
Names must be unique within the scope of a resource type in a specific region.
tags?
Type:
{ [string]: string }
(optional)
Represents the tags associated with a resource.

.NET
Go
Java
Python
TypeScript