interface CfnKeyGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnKeyGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnKeyGroupProps |
Java | software.amazon.awscdk.services.cloudfront.CfnKeyGroupProps |
Python | aws_cdk.aws_cloudfront.CfnKeyGroupProps |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnKeyGroupProps |
Properties for defining a CfnKeyGroup.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keygroup.html
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 cfnKeyGroupProps: cloudfront.CfnKeyGroupProps = {
keyGroupConfig: {
items: ['items'],
name: 'name',
// the properties below are optional
comment: 'comment',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| key | IResolvable | Key | The key group configuration. |
keyGroupConfig
Type:
IResolvable | Key
The key group configuration.

.NET
Go
Java
Python
TypeScript