Class: Aws::CloudFront::Types::PublicKeyConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudfront/types.rb

Overview

Note:

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

Instance Attribute Details

#caller_referenceString

A unique number that ensures that the request can’t be replayed.

Returns:

  • (String)


5941
5942
5943
5944
5945
5946
5947
# File 'lib/aws-sdk-cloudfront/types.rb', line 5941

class PublicKeyConfig < Struct.new(
  :caller_reference,
  :name,
  :encoded_key,
  :comment)
  include Aws::Structure
end

#commentString

An optional comment about a public key.

Returns:

  • (String)


5941
5942
5943
5944
5945
5946
5947
# File 'lib/aws-sdk-cloudfront/types.rb', line 5941

class PublicKeyConfig < Struct.new(
  :caller_reference,
  :name,
  :encoded_key,
  :comment)
  include Aws::Structure
end

#encoded_keyString

The encoded public key that you want to add to CloudFront to use with features like field-level encryption.

Returns:

  • (String)


5941
5942
5943
5944
5945
5946
5947
# File 'lib/aws-sdk-cloudfront/types.rb', line 5941

class PublicKeyConfig < Struct.new(
  :caller_reference,
  :name,
  :encoded_key,
  :comment)
  include Aws::Structure
end

#nameString

The name for a public key you add to CloudFront to use with features like field-level encryption.

Returns:

  • (String)


5941
5942
5943
5944
5945
5946
5947
# File 'lib/aws-sdk-cloudfront/types.rb', line 5941

class PublicKeyConfig < Struct.new(
  :caller_reference,
  :name,
  :encoded_key,
  :comment)
  include Aws::Structure
end