![]() |
![]()
| ![]() |
![]()
NAMEPaws::KinesisVideoMedia::GetMedia - Arguments for method GetMedia on Paws::KinesisVideoMedia DESCRIPTIONThis class represents the parameters used for calling the method GetMedia on the Amazon Kinesis Video Streams Media service. Use the attributes of this class as arguments to method GetMedia. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetMedia. SYNOPSISmy $kinesisvideo = Paws->service('KinesisVideoMedia'); my $GetMediaOutput = $kinesisvideo->GetMedia( StartSelector => { StartSelectorType => 'FRAGMENT_NUMBER' , # values: FRAGMENT_NUMBER, SERVER_TIMESTAMP, PRODUCER_TIMESTAMP, NOW, EARLIEST, CONTINUATION_TOKEN AfterFragmentNumber => 'MyFragmentNumberString', # min: 1, max: 128; OPTIONAL ContinuationToken => 'MyContinuationToken', # min: 1, max: 128; OPTIONAL StartTimestamp => '1970-01-01T01:00:00', # OPTIONAL }, StreamARN => 'MyResourceARN', # OPTIONAL StreamName => 'MyStreamName', # OPTIONAL ); # Results: my $ContentType = $GetMediaOutput->ContentType; my $Payload = $GetMediaOutput->Payload; # Returns a L<Paws::KinesisVideoMedia::GetMediaOutput> 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/GetMedia> ATTRIBUTESREQUIRED StartSelector => Paws::KinesisVideoMedia::StartSelectorIdentifies the starting chunk to get from the specified stream. StreamARN => StrThe ARN of the stream from where you want to get the media content. If you don't specify the "streamARN", you must specify the "streamName". StreamName => StrThe Kinesis video stream name from where you want to get the media content. If you don't specify the "streamName", you must specify the "streamARN". SEE ALSOThis class forms part of Paws, documenting arguments for method GetMedia in Paws::KinesisVideoMedia 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>
|