interface CfnPublicKeyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnPublicKeyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnPublicKeyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnPublicKeyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnPublicKeyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » 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 { aws_cloudfront as cloudfront } from '@aws-cdk/cfn-property-mixins';
const cfnPublicKeyMixinProps: cloudfront.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