interface KeyGroupConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnKeyGroupPropsMixin.KeyGroupConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnKeyGroupPropsMixin_KeyGroupConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnKeyGroupPropsMixin.KeyGroupConfigProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnKeyGroupPropsMixin.KeyGroupConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnKeyGroupPropsMixin » KeyGroupConfigProperty |
A key group configuration.
A key group contains a list of public keys that you can use with CloudFront signed URLs and signed cookies .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const keyGroupConfigProperty: cloudfront_mixins.CfnKeyGroupPropsMixin.KeyGroupConfigProperty = {
comment: 'comment',
items: ['items'],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| comment? | string | A comment to describe the key group. |
| items? | string[] | A list of the identifiers of the public keys in the key group. |
| name? | string | A name to identify the key group. |
comment?
Type:
string
(optional)
A comment to describe the key group.
The comment cannot be longer than 128 characters.
items?
Type:
string[]
(optional)
A list of the identifiers of the public keys in the key group.
name?
Type:
string
(optional)
A name to identify the key group.

.NET
Go
Java
Python
TypeScript