public static interface CfnPublicKey.PublicKeyConfigProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cloudfront.*; PublicKeyConfigProperty publicKeyConfigProperty = PublicKeyConfigProperty.builder() .callerReference("callerReference") .encodedKey("encodedKey") .name("name") // the properties below are optional .comment("comment") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPublicKey.PublicKeyConfigProperty.Builder
A builder for
CfnPublicKey.PublicKeyConfigProperty |
static class |
CfnPublicKey.PublicKeyConfigProperty.Jsii$Proxy
An implementation for
CfnPublicKey.PublicKeyConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnPublicKey.PublicKeyConfigProperty.Builder |
builder() |
java.lang.String |
getCallerReference()
A string included in the request to help make sure that the request can't be replayed.
|
default java.lang.String |
getComment()
A comment to describe the public key.
|
java.lang.String |
getEncodedKey()
The public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) , or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html) .
|
java.lang.String |
getName()
A name to help identify the public key.
|
java.lang.String getCallerReference()
java.lang.String getEncodedKey()
java.lang.String getName()
default java.lang.String getComment()
The comment cannot be longer than 128 characters.
static CfnPublicKey.PublicKeyConfigProperty.Builder builder()