interface CfnSignalMapProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnSignalMapProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnSignalMapProps |
Java | software.amazon.awscdk.services.medialive.CfnSignalMapProps |
Python | aws_cdk.aws_medialive.CfnSignalMapProps |
TypeScript | aws-cdk-lib » aws_medialive » CfnSignalMapProps |
Properties for defining a CfnSignalMap.
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 { aws_medialive as medialive } from 'aws-cdk-lib';
const cfnSignalMapProps: medialive.CfnSignalMapProps = {
discoveryEntryPointArn: 'discoveryEntryPointArn',
name: 'name',
// the properties below are optional
cloudWatchAlarmTemplateGroupIdentifiers: ['cloudWatchAlarmTemplateGroupIdentifiers'],
description: 'description',
eventBridgeRuleTemplateGroupIdentifiers: ['eventBridgeRuleTemplateGroupIdentifiers'],
forceRediscovery: false,
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| discovery | string | A top-level supported Amazon Web Services resource ARN to discover a signal map from. |
| name | string | A resource's name. |
| cloud | string[] | A cloudwatch alarm template group's identifier. |
| description? | string | A resource's optional description. |
| 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. |
| tags? | { [string]: string } | Represents the tags associated with a resource. |
discoveryEntryPointArn
Type:
string
A top-level supported Amazon Web Services resource ARN to discover a signal map from.
name
Type:
string
A resource's name.
Names must be unique within the scope of a resource type in a specific region.
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.
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.
tags?
Type:
{ [string]: string }
(optional)
Represents the tags associated with a resource.

.NET
Go
Java
Python
TypeScript