You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::KinesisVideoArchivedMedia::Types::GetClipInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideoArchivedMedia::Types::GetClipInput
- Defined in:
- (unknown)
Overview
Note:
When passing GetClipInput as input to an Aws::Client method, you can use a vanilla Hash:
{
stream_name: "StreamName",
stream_arn: "ResourceARN",
clip_fragment_selector: { # required
fragment_selector_type: "PRODUCER_TIMESTAMP", # required, accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
timestamp_range: { # required
start_timestamp: Time.now, # required
end_timestamp: Time.now, # required
},
},
}
Instance Attribute Summary collapse
-
#clip_fragment_selector ⇒ Types::ClipFragmentSelector
The time range of the requested clip and the source of the timestamps.
-
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the stream for which to retrieve the media clip.
-
#stream_name ⇒ String
The name of the stream for which to retrieve the media clip.
Instance Attribute Details
#clip_fragment_selector ⇒ Types::ClipFragmentSelector
The time range of the requested clip and the source of the timestamps.
#stream_arn ⇒ String
The Amazon Resource Name (ARN) of the stream for which to retrieve the media clip.
You must specify either the StreamName or the StreamARN.
#stream_name ⇒ String
The name of the stream for which to retrieve the media clip.
You must specify either the StreamName or the StreamARN.