Class: Aws::Kinesis::Types::DeleteStreamInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb

Overview

Represents the input for DeleteStream.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enforce_consumer_deletionBoolean

If this parameter is unset (null) or if you set it to false, and the stream has registered consumers, the call to DeleteStream fails with a ResourceInUseException.

Returns:

  • (Boolean)


245
246
247
248
249
250
251
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 245

class DeleteStreamInput < Struct.new(
  :stream_name,
  :enforce_consumer_deletion,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#stream_arnString

The ARN of the stream.

Returns:

  • (String)


245
246
247
248
249
250
251
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 245

class DeleteStreamInput < Struct.new(
  :stream_name,
  :enforce_consumer_deletion,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#stream_nameString

The name of the stream to delete.

Returns:

  • (String)


245
246
247
248
249
250
251
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 245

class DeleteStreamInput < Struct.new(
  :stream_name,
  :enforce_consumer_deletion,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end