interface CfnGroupProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Synthetics.CfnGroupProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssynthetics#CfnGroupProps |
![]() | software.amazon.awscdk.services.synthetics.CfnGroupProps |
![]() | aws_cdk.aws_synthetics.CfnGroupProps |
![]() | aws-cdk-lib » aws_synthetics » CfnGroupProps |
Properties for defining a CfnGroup
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-group.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_synthetics as synthetics } from 'aws-cdk-lib';
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.