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

Inherits:
Struct
  • Object
show all
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].

CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.

[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

Instance Attribute Details

#caller_referenceString

A string included in the request to help make sure that the request can’t be replayed.

Returns:

  • (String)


11645
11646
11647
11648
11649
11650
11651
11652
# File 'lib/aws-sdk-cloudfront/types.rb', line 11645

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

#commentString

A comment to describe the public key. The comment cannot be longer than 128 characters.

Returns:

  • (String)


11645
11646
11647
11648
11649
11650
11651
11652
# File 'lib/aws-sdk-cloudfront/types.rb', line 11645

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

#encoded_keyString

Returns:

  • (String)


11645
11646
11647
11648
11649
11650
11651
11652
# File 'lib/aws-sdk-cloudfront/types.rb', line 11645

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

#nameString

A name to help identify the public key.

Returns:

  • (String)


11645
11646
11647
11648
11649
11650
11651
11652
# File 'lib/aws-sdk-cloudfront/types.rb', line 11645

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