interface CfnPublicKeyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnPublicKeyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnPublicKeyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnPublicKeyMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnPublicKeyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnPublicKeyMixinProps |
Properties for CfnPublicKeyPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-publickey.html
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 cfnPublicKeyMixinProps: cloudfront_mixins.CfnPublicKeyMixinProps = {
publicKeyConfig: {
callerReference: 'callerReference',
comment: 'comment',
encodedKey: 'encodedKey',
name: 'name',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| public | IResolvable | Public | Configuration information about a public key that you can use with signed URLs and signed cookies , or with field-level encryption . |
publicKeyConfig?
Type:
IResolvable | Public
(optional)
Configuration information about a public key that you can use with signed URLs and signed cookies , or with field-level encryption .

.NET
Go
Java
Python
TypeScript