![]() |
![]()
| ![]() |
![]()
NAMEPaws::KinesisVideo::CreateSignalingChannel - Arguments for method CreateSignalingChannel on Paws::KinesisVideo DESCRIPTIONThis class represents the parameters used for calling the method CreateSignalingChannel on the Amazon Kinesis Video Streams service. Use the attributes of this class as arguments to method CreateSignalingChannel. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateSignalingChannel. SYNOPSISmy $kinesisvideo = Paws->service('KinesisVideo'); my $CreateSignalingChannelOutput = $kinesisvideo->CreateSignalingChannel( ChannelName => 'MyChannelName', ChannelType => 'SINGLE_MASTER', # OPTIONAL SingleMasterConfiguration => { MessageTtlSeconds => 1, # min: 5, max: 120; OPTIONAL }, # OPTIONAL Tags => [ { Key => 'MyTagKey', # min: 1, max: 128 Value => 'MyTagValue', # max: 256 }, ... ], # OPTIONAL ); # Results: my $ChannelARN = $CreateSignalingChannelOutput->ChannelARN; # Returns a L<Paws::KinesisVideo::CreateSignalingChannelOutput> object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/kinesisvideo/CreateSignalingChannel> ATTRIBUTESREQUIRED ChannelName => StrA name for the signaling channel that you are creating. It must be unique for each AWS account and AWS Region. ChannelType => StrA type of the signaling channel that you are creating. Currently, "SINGLE_MASTER" is the only supported channel type. Valid values are: "SINGLE_MASTER" SingleMasterConfiguration => Paws::KinesisVideo::SingleMasterConfigurationA structure containing the configuration for the "SINGLE_MASTER" channel type. Tags => ArrayRef[Paws::KinesisVideo::Tag]A set of tags (key-value pairs) that you want to associate with this channel. SEE ALSOThis class forms part of Paws, documenting arguments for method CreateSignalingChannel in Paws::KinesisVideo BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|