Class: Aws::Kinesis::Types::DeleteStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::DeleteStreamInput
- 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
-
#enforce_consumer_deletion ⇒ Boolean
If this parameter is unset (
null) or if you set it tofalse, and the stream has registered consumers, the call toDeleteStreamfails with aResourceInUseException. -
#stream_arn ⇒ String
The ARN of the stream.
-
#stream_name ⇒ String
The name of the stream to delete.
Instance Attribute Details
#enforce_consumer_deletion ⇒ Boolean
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.
266 267 268 269 270 271 272 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 266 class DeleteStreamInput < Struct.new( :stream_name, :enforce_consumer_deletion, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The ARN of the stream.
266 267 268 269 270 271 272 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 266 class DeleteStreamInput < Struct.new( :stream_name, :enforce_consumer_deletion, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the stream to delete.
266 267 268 269 270 271 272 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 266 class DeleteStreamInput < Struct.new( :stream_name, :enforce_consumer_deletion, :stream_arn) SENSITIVE = [] include Aws::Structure end |