Class: Aws::CloudFront::Types::DeleteCloudFrontOriginAccessIdentityRequest

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 DeleteCloudFrontOriginAccessIdentityRequest data as a hash:

{
  id: "string", # required
  if_match: "string",
}

Deletes a origin access identity.

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The origin access identity’s ID.

Returns:

  • (String)


2413
2414
2415
2416
2417
# File 'lib/aws-sdk-cloudfront/types.rb', line 2413

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

#if_matchString

The value of the ‘ETag` header you received from a previous `GET` or `PUT` request. For example: `E2QWRUHAPOMQZL`.

Returns:

  • (String)


2413
2414
2415
2416
2417
# File 'lib/aws-sdk-cloudfront/types.rb', line 2413

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