Class: Aws::KinesisVideo::Types::GetSignalingChannelEndpointInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::GetSignalingChannelEndpointInput
- Defined in:
- gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb
Overview
Note:
When making an API call, you may pass GetSignalingChannelEndpointInput data as a hash:
{
channel_arn: "ResourceARN", # required
single_master_channel_endpoint_configuration: {
protocols: ["WSS"], # accepts WSS, HTTPS
role: "MASTER", # accepts MASTER, VIEWER
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel_arn ⇒ String
The Amazon Resource Name (ARN) of the signalling channel for which you want to get an endpoint.
-
#single_master_channel_endpoint_configuration ⇒ Types::SingleMasterChannelEndpointConfiguration
A structure containing the endpoint configuration for the
SINGLE_MASTER
channel type.
Instance Attribute Details
#channel_arn ⇒ String
The Amazon Resource Name (ARN) of the signalling channel for which you want to get an endpoint.
540 541 542 543 544 545 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 540 class GetSignalingChannelEndpointInput < Struct.new( :channel_arn, :single_master_channel_endpoint_configuration) SENSITIVE = [] include Aws::Structure end |
#single_master_channel_endpoint_configuration ⇒ Types::SingleMasterChannelEndpointConfiguration
A structure containing the endpoint configuration for the
SINGLE_MASTER
channel type.
540 541 542 543 544 545 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 540 class GetSignalingChannelEndpointInput < Struct.new( :channel_arn, :single_master_channel_endpoint_configuration) SENSITIVE = [] include Aws::Structure end |