Class: Aws::Firehose::Types::DeleteDeliveryStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::DeleteDeliveryStreamInput
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allow_force_delete ⇒ Boolean
Set this to true if you want to delete the Firehose stream even if Firehose is unable to retire the grant for the CMK.
-
#delivery_stream_name ⇒ String
The name of the Firehose stream.
Instance Attribute Details
#allow_force_delete ⇒ Boolean
Set this to true if you want to delete the Firehose stream even if Firehose is unable to retire the grant for the CMK. Firehose might be unable to retire the grant due to a customer error, such as when the CMK or the grant are in an invalid state. If you force deletion, you can then use the RevokeGrant operation to revoke the grant you gave to Firehose. If a failure to retire the grant happens due to an Amazon Web Services KMS issue, Firehose keeps retrying the delete operation.
The default value is false.
1234 1235 1236 1237 1238 1239 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 1234 class DeleteDeliveryStreamInput < Struct.new( :delivery_stream_name, :allow_force_delete) SENSITIVE = [] include Aws::Structure end |
#delivery_stream_name ⇒ String
The name of the Firehose stream.
1234 1235 1236 1237 1238 1239 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 1234 class DeleteDeliveryStreamInput < Struct.new( :delivery_stream_name, :allow_force_delete) SENSITIVE = [] include Aws::Structure end |