interface CfnSignalMapMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnSignalMapMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnSignalMapMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnSignalMapMixinProps |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnSignalMapMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnSignalMapMixinProps |
Properties for CfnSignalMapPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html
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 cfnSignalMapMixinProps: medialive_mixins.CfnSignalMapMixinProps = {
cloudWatchAlarmTemplateGroupIdentifiers: ['cloudWatchAlarmTemplateGroupIdentifiers'],
description: 'description',
discoveryEntryPointArn: 'discoveryEntryPointArn',
eventBridgeRuleTemplateGroupIdentifiers: ['eventBridgeRuleTemplateGroupIdentifiers'],
forceRediscovery: false,
name: 'name',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | string[] | A cloudwatch alarm template group's identifier. |
| description? | string | A resource's optional description. |
| discovery | string | A top-level supported Amazon Web Services resource ARN to discover a signal map from. |
| event | string[] | An eventbridge rule template group's identifier. |
| force | boolean | IResolvable | If true, will force a rediscovery of a signal map if an unchanged discoveryEntryPointArn is provided. |
| name? | string | A resource's name. |
| tags? | { [string]: string } | Represents the tags associated with a resource. |
cloudWatchAlarmTemplateGroupIdentifiers?
Type:
string[]
(optional)
A cloudwatch alarm template group's identifier.
Can be either be its id or current name.
description?
Type:
string
(optional)
A resource's optional description.
discoveryEntryPointArn?
Type:
string
(optional)
A top-level supported Amazon Web Services resource ARN to discover a signal map from.
eventBridgeRuleTemplateGroupIdentifiers?
Type:
string[]
(optional)
An eventbridge rule template group's identifier.
Can be either be its id or current name.
forceRediscovery?
Type:
boolean | IResolvable
(optional, default: false)
If true, will force a rediscovery of a signal map if an unchanged discoveryEntryPointArn is provided.
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