Class: Aws::CloudFront::Types::PublicKeyConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::PublicKeyConfig
- Defined in:
- gems/aws-sdk-cloudfront/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",
}
Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#caller_reference ⇒ String
A string included in the request to help make sure that the request can’t be replayed.
-
#comment ⇒ String
A comment to describe the public key.
-
#encoded_key ⇒ String
The public key that you can use with [signed URLs and signed cookies][1], or with [field-level encryption][2].
-
#name ⇒ String
A name to help identify the public key.
Instance Attribute Details
#caller_reference ⇒ String
A string included in the request to help make sure that the request can’t be replayed.
10899 10900 10901 10902 10903 10904 10905 10906 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 10899 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) SENSITIVE = [] include Aws::Structure end |
#comment ⇒ String
A comment to describe the public key. The comment cannot be longer than 128 characters.
10899 10900 10901 10902 10903 10904 10905 10906 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 10899 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) SENSITIVE = [] include Aws::Structure end |
#encoded_key ⇒ String
The public key that you can use with signed URLs and signed cookies, or with field-level encryption.
10899 10900 10901 10902 10903 10904 10905 10906 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 10899 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name to help identify the public key.
10899 10900 10901 10902 10903 10904 10905 10906 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 10899 class PublicKeyConfig < Struct.new( :caller_reference, :name, :encoded_key, :comment) SENSITIVE = [] include Aws::Structure end |