Class: Aws::CloudFront::Types::DeleteStreamingDistributionRequest

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

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

The request to delete a streaming distribution.

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The distribution ID.

Returns:

  • (String)


2147
2148
2149
2150
2151
# File 'lib/aws-sdk-cloudfront/types.rb', line 2147

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

#if_matchString

The value of the ‘ETag` header that you received when you disabled the streaming distribution. For example: `E2QWRUHAPOMQZL`.

Returns:

  • (String)


2147
2148
2149
2150
2151
# File 'lib/aws-sdk-cloudfront/types.rb', line 2147

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