Class: Aws::CloudFront::Types::DeleteStreamingDistributionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::DeleteStreamingDistributionRequest
- 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
-
#id ⇒ String
The distribution ID.
-
#if_match ⇒ String
The value of the ‘ETag` header that you received when you disabled the streaming distribution.
Instance Attribute Details
#id ⇒ String
The distribution ID.
2718 2719 2720 2721 2722 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 2718 class DeleteStreamingDistributionRequest < Struct.new( :id, :if_match) include Aws::Structure end |
#if_match ⇒ String
The value of the ‘ETag` header that you received when you disabled the streaming distribution. For example: `E2QWRUHAPOMQZL`.
2718 2719 2720 2721 2722 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 2718 class DeleteStreamingDistributionRequest < Struct.new( :id, :if_match) include Aws::Structure end |