Class: Aws::CloudFront::Types::PublicKey

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

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#created_timeTime

The date and time when the public key was uploaded.

Returns:

  • (Time)


11585
11586
11587
11588
11589
11590
11591
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 11585

class PublicKey < Struct.new(
  :id,
  :created_time,
  :public_key_config)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The identifier of the public key.

Returns:

  • (String)


11585
11586
11587
11588
11589
11590
11591
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 11585

class PublicKey < Struct.new(
  :id,
  :created_time,
  :public_key_config)
  SENSITIVE = []
  include Aws::Structure
end

#public_key_configTypes::PublicKeyConfig

Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption.



11585
11586
11587
11588
11589
11590
11591
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 11585

class PublicKey < Struct.new(
  :id,
  :created_time,
  :public_key_config)
  SENSITIVE = []
  include Aws::Structure
end