Class: Aws::CloudFront::Types::UpdatePublicKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::UpdatePublicKeyRequest
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass UpdatePublicKeyRequest data as a hash:
{
public_key_config: { # required
caller_reference: "string", # required
name: "string", # required
encoded_key: "string", # required
comment: "string",
},
id: "string", # required
if_match: "string",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier of the public key that you are updating.
-
#if_match ⇒ String
The value of the
ETag
header that you received when retrieving the public key to update. -
#public_key_config ⇒ Types::PublicKeyConfig
A public key configuration.
Instance Attribute Details
#id ⇒ String
The identifier of the public key that you are updating.
15094 15095 15096 15097 15098 15099 15100 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 15094 class UpdatePublicKeyRequest < Struct.new( :public_key_config, :id, :if_match) SENSITIVE = [] include Aws::Structure end |
#if_match ⇒ String
The value of the ETag
header that you received when retrieving the
public key to update. For example: E2QWRUHAPOMQZL
.
15094 15095 15096 15097 15098 15099 15100 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 15094 class UpdatePublicKeyRequest < Struct.new( :public_key_config, :id, :if_match) SENSITIVE = [] include Aws::Structure end |
#public_key_config ⇒ Types::PublicKeyConfig
A public key configuration.
15094 15095 15096 15097 15098 15099 15100 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 15094 class UpdatePublicKeyRequest < Struct.new( :public_key_config, :id, :if_match) SENSITIVE = [] include Aws::Structure end |