Class: Aws::Kinesis::Types::DeleteStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::DeleteStreamInput
- Includes:
- Structure
- Defined in:
- 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 to `false`, and the stream has registered consumers, the call to `DeleteStream` fails with a `ResourceInUseException`.
-
#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`.
250 251 252 253 254 255 256 |
# File 'lib/aws-sdk-kinesis/types.rb', line 250 class DeleteStreamInput < Struct.new( :stream_name, :enforce_consumer_deletion, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The ARN of the stream.
250 251 252 253 254 255 256 |
# File 'lib/aws-sdk-kinesis/types.rb', line 250 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.
250 251 252 253 254 255 256 |
# File 'lib/aws-sdk-kinesis/types.rb', line 250 class DeleteStreamInput < Struct.new( :stream_name, :enforce_consumer_deletion, :stream_arn) SENSITIVE = [] include Aws::Structure end |