Class: Aws::CloudFront::Types::PublicKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::PublicKey
- 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
-
#created_time ⇒ Time
The date and time when the public key was uploaded.
-
#id ⇒ String
The identifier of the public key.
-
#public_key_config ⇒ Types::PublicKeyConfig
Configuration information about a public key that you can use with [signed URLs and signed cookies][1], or with [field-level encryption][2].
Instance Attribute Details
#created_time ⇒ Time
The date and time when the public key was uploaded.
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 |
#id ⇒ String
The identifier of the public key.
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_config ⇒ Types::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 |