interface ConnectionGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.ConnectionGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#ConnectionGroupReference |
Java | software.amazon.awscdk.services.cloudfront.ConnectionGroupReference |
Python | aws_cdk.aws_cloudfront.ConnectionGroupReference |
TypeScript | aws-cdk-lib » aws_cloudfront » ConnectionGroupReference |
A reference to a ConnectionGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as cloudfront } from 'aws-cdk-lib';
const connectionGroupReference: cloudfront.ConnectionGroupReference = {
connectionGroupArn: 'connectionGroupArn',
connectionGroupId: 'connectionGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The ARN of the ConnectionGroup resource. |
| connection | string | The Id of the ConnectionGroup resource. |
connectionGroupArn
Type:
string
The ARN of the ConnectionGroup resource.
connectionGroupId
Type:
string
The Id of the ConnectionGroup resource.

.NET
Go
Java
Python
TypeScript