interface CfnEventBridgeRuleTemplateGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnEventBridgeRuleTemplateGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnEventBridgeRuleTemplateGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnEventBridgeRuleTemplateGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnEventBridgeRuleTemplateGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnEventBridgeRuleTemplateGroupMixinProps |
Properties for CfnEventBridgeRuleTemplateGroupPropsMixin.
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 cfnEventBridgeRuleTemplateGroupMixinProps: medialive_mixins.CfnEventBridgeRuleTemplateGroupMixinProps = {
description: 'description',
name: 'name',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A resource's optional description. |
| 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.
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