Class: Aws::CloudFront::Types::PublicKeyConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::PublicKeyConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
Configuration information about a public key that you can use with [signed URLs and signed cookies], or with [field-level encryption].
[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html [2]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#caller_reference ⇒ String
A string included in the request to help make sure that the request can’t be replayed.
-
#comment ⇒ String
A comment to describe the public key.
-
#encoded_key ⇒ String
The public key that you can use with [signed URLs and signed cookies], or with [field-level encryption].
-
#name ⇒ String
A name to help identify the public key.
Instance Attribute Details
#caller_reference ⇒ String
A string included in the request to help make sure that the request can’t be replayed.
9268 9269 9270 9271 9272 9273 9274 9275 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9268 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) SENSITIVE = [] include Aws::Structure end |
#comment ⇒ String
A comment to describe the public key. The comment cannot be longer than 128 characters.
9268 9269 9270 9271 9272 9273 9274 9275 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9268 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) SENSITIVE = [] include Aws::Structure end |
#encoded_key ⇒ String
The public key that you can use with [signed URLs and signed cookies], or with [field-level encryption].
[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html [2]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html
9268 9269 9270 9271 9272 9273 9274 9275 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9268 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name to help identify the public key.
9268 9269 9270 9271 9272 9273 9274 9275 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9268 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) SENSITIVE = [] include Aws::Structure end |