Class: Aws::Firehose::Types::DeleteDeliveryStreamInput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#allow_force_deleteBoolean

Set this to true if you want to delete the delivery stream even if Kinesis Data Firehose is unable to retire the grant for the CMK. Kinesis Data 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 Kinesis Data Firehose. If a failure to retire the grant happens due to an Amazon Web Services KMS issue, Kinesis Data Firehose keeps retrying the delete operation.

The default value is false.

[1]: docs.aws.amazon.com/kms/latest/APIReference/API_RevokeGrant.html

Returns:

  • (Boolean)


929
930
931
932
933
934
# File 'lib/aws-sdk-firehose/types.rb', line 929

class DeleteDeliveryStreamInput < Struct.new(
  :delivery_stream_name,
  :allow_force_delete)
  SENSITIVE = []
  include Aws::Structure
end

#delivery_stream_nameString

The name of the delivery stream.

Returns:

  • (String)


929
930
931
932
933
934
# File 'lib/aws-sdk-firehose/types.rb', line 929

class DeleteDeliveryStreamInput < Struct.new(
  :delivery_stream_name,
  :allow_force_delete)
  SENSITIVE = []
  include Aws::Structure
end