interface GroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Synthetics.GroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssynthetics#GroupReference |
Java | software.amazon.awscdk.interfaces.synthetics.GroupReference |
Python | aws_cdk.interfaces.aws_synthetics.GroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_synthetics » GroupReference |
A reference to a Group resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_synthetics as interfaces_aws_synthetics } from 'aws-cdk-lib/interfaces';
const groupReference: interfaces_aws_synthetics.GroupReference = {
groupName: 'groupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The Name of the Group resource. |
groupName
Type:
string
The Name of the Group resource.

.NET
Go
Java
Python
TypeScript