Class: Aws::CloudFront::Types::PublicKeyConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::PublicKeyConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
When making an API call, you may pass PublicKeyConfig data as a hash:
{
caller_reference: "string", # required
name: "string", # required
encoded_key: "string", # required
comment: "string",
}
Information about a public key you add to CloudFront to use with features like field-level encryption.
Instance Attribute Summary collapse
-
#caller_reference ⇒ String
A unique number that ensures that the request can’t be replayed.
-
#comment ⇒ String
An optional comment about a public key.
-
#encoded_key ⇒ String
The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
-
#name ⇒ String
The name for a public key you add to CloudFront to use with features like field-level encryption.
Instance Attribute Details
#caller_reference ⇒ String
A unique number that ensures that the request can’t be replayed.
6704 6705 6706 6707 6708 6709 6710 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6704 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) include Aws::Structure end |
#comment ⇒ String
An optional comment about a public key.
6704 6705 6706 6707 6708 6709 6710 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6704 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) include Aws::Structure end |
#encoded_key ⇒ String
The encoded public key that you want to add to CloudFront to use with features like field-level encryption.
6704 6705 6706 6707 6708 6709 6710 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6704 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) include Aws::Structure end |
#name ⇒ String
The name for a public key you add to CloudFront to use with features like field-level encryption.
6704 6705 6706 6707 6708 6709 6710 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6704 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) include Aws::Structure end |