Class: Aws::KinesisVideo::Types::DeleteSignalingChannelInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::DeleteSignalingChannelInput
- Defined in:
- gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb
Overview
Note:
When making an API call, you may pass DeleteSignalingChannelInput data as a hash:
{
channel_arn: "ResourceARN", # required
current_version: "Version",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel_arn ⇒ String
The Amazon Resource Name (ARN) of the signaling channel that you want to delete.
-
#current_version ⇒ String
The current version of the signaling channel that you want to delete.
Instance Attribute Details
#channel_arn ⇒ String
The Amazon Resource Name (ARN) of the signaling channel that you want to delete.
334 335 336 337 338 339 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 334 class DeleteSignalingChannelInput < Struct.new( :channel_arn, :current_version) SENSITIVE = [] include Aws::Structure end |
#current_version ⇒ String
The current version of the signaling channel that you want to
delete. You can obtain the current version by invoking the
DescribeSignalingChannel
or ListSignalingChannels
API
operations.
334 335 336 337 338 339 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 334 class DeleteSignalingChannelInput < Struct.new( :channel_arn, :current_version) SENSITIVE = [] include Aws::Structure end |