Class: Aws::CloudFront::Types::UpdateCloudFrontOriginAccessIdentityRequest

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

Overview

Note:

When making an API call, you may pass UpdateCloudFrontOriginAccessIdentityRequest data as a hash:

{
  cloud_front_origin_access_identity_config: { # required
    caller_reference: "string", # required
    comment: "string", # required
  },
  id: "string", # required
  if_match: "string",
}

The request to update an origin access identity.

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_front_origin_access_identity_configTypes::CloudFrontOriginAccessIdentityConfig

The identity’s configuration information.



8114
8115
8116
8117
8118
8119
# File 'lib/aws-sdk-cloudfront/types.rb', line 8114

class UpdateCloudFrontOriginAccessIdentityRequest < Struct.new(
  :cloud_front_origin_access_identity_config,
  :id,
  :if_match)
  include Aws::Structure
end

#idString

The identity’s id.

Returns:

  • (String)


8114
8115
8116
8117
8118
8119
# File 'lib/aws-sdk-cloudfront/types.rb', line 8114

class UpdateCloudFrontOriginAccessIdentityRequest < Struct.new(
  :cloud_front_origin_access_identity_config,
  :id,
  :if_match)
  include Aws::Structure
end

#if_matchString

The value of the ‘ETag` header that you received when retrieving the identity’s configuration. For example: ‘E2QWRUHAPOMQZL`.

Returns:

  • (String)


8114
8115
8116
8117
8118
8119
# File 'lib/aws-sdk-cloudfront/types.rb', line 8114

class UpdateCloudFrontOriginAccessIdentityRequest < Struct.new(
  :cloud_front_origin_access_identity_config,
  :id,
  :if_match)
  include Aws::Structure
end