Class: Aws::KinesisVideo::Types::DeleteStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::DeleteStreamInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisvideo/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#current_version ⇒ String
Optional: The version of the stream that you want to delete.
-
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the stream that you want to delete.
Instance Attribute Details
#current_version ⇒ String
Optional: The version of the stream that you want to delete.
Specify the version as a safeguard to ensure that your are deleting the correct stream. To get the stream version, use the ‘DescribeStream` API.
If not specified, only the ‘CreationTime` is checked before deleting the stream.
340 341 342 343 344 345 |
# File 'lib/aws-sdk-kinesisvideo/types.rb', line 340 class DeleteStreamInput < Struct.new( :stream_arn, :current_version) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the stream that you want to delete.
340 341 342 343 344 345 |
# File 'lib/aws-sdk-kinesisvideo/types.rb', line 340 class DeleteStreamInput < Struct.new( :stream_arn, :current_version) SENSITIVE = [] include Aws::Structure end |