interface CloudWatchAlarmTemplateReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaLive.CloudWatchAlarmTemplateReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmedialive#CloudWatchAlarmTemplateReference |
Java | software.amazon.awscdk.interfaces.medialive.CloudWatchAlarmTemplateReference |
Python | aws_cdk.interfaces.aws_medialive.CloudWatchAlarmTemplateReference |
TypeScript | aws-cdk-lib » interfaces » aws_medialive » CloudWatchAlarmTemplateReference |
A reference to a CloudWatchAlarmTemplate resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as interfaces_aws_medialive } from 'aws-cdk-lib/interfaces';
const cloudWatchAlarmTemplateReference: interfaces_aws_medialive.CloudWatchAlarmTemplateReference = {
cloudWatchAlarmTemplateArn: 'cloudWatchAlarmTemplateArn',
identifier: 'identifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | string | The ARN of the CloudWatchAlarmTemplate resource. |
| identifier | string | The Identifier of the CloudWatchAlarmTemplate resource. |
cloudWatchAlarmTemplateArn
Type:
string
The ARN of the CloudWatchAlarmTemplate resource.
identifier
Type:
string
The Identifier of the CloudWatchAlarmTemplate resource.

.NET
Go
Java
Python
TypeScript