interface CfnGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Synthetics.CfnGroupProps |
Java | software.amazon.awscdk.services.synthetics.CfnGroupProps |
Python | aws_cdk.aws_synthetics.CfnGroupProps |
TypeScript | @aws-cdk/aws-synthetics » CfnGroupProps |
Properties for defining a CfnGroup
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as synthetics from '@aws-cdk/aws-synthetics';
const cfnGroupProps: synthetics.CfnGroupProps = {
name: 'name',
// the properties below are optional
resourceArns: ['resourceArns'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | A name for the group. It can include any Unicode characters. |
resource | string[] | The ARNs of the canaries that you want to associate with this group. |
tags? | Cfn [] | The list of key-value pairs that are associated with the group. |
name
Type:
string
A name for the group. It can include any Unicode characters.
The names for all groups in your account, across all Regions, must be unique.
resourceArns?
Type:
string[]
(optional)
The ARNs of the canaries that you want to associate with this group.
tags?
Type:
Cfn
[]
(optional)
The list of key-value pairs that are associated with the group.