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
show all
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

Instance Attribute Details

#clip_fragment_selectorTypes::ClipFragmentSelector

The time range of the requested clip and the source of the timestamps.

Returns:

#stream_arnString

The Amazon Resource Name (ARN) of the stream for which to retrieve the media clip.

You must specify either the StreamName or the StreamARN.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the stream for which to retrieve the media clip.

#stream_nameString

The name of the stream for which to retrieve the media clip.

You must specify either the StreamName or the StreamARN.

Returns:

  • (String)

    The name of the stream for which to retrieve the media clip.