[][src]Struct rusoto_kinesisvideo::KinesisVideoClient

pub struct KinesisVideoClient { /* fields omitted */ }

A client for the Kinesis Video API.

Methods

impl KinesisVideoClient[src]

pub fn new(region: Region) -> KinesisVideoClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> KinesisVideoClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

Trait Implementations

impl KinesisVideo for KinesisVideoClient[src]

fn create_stream(
    &self,
    input: CreateStreamInput
) -> RusotoFuture<CreateStreamOutput, CreateStreamError>
[src]

Creates a new Kinesis video stream.

When you create a new stream, Kinesis Video Streams assigns it a version number. When you change the stream's metadata, Kinesis Video Streams updates the version.

CreateStream is an asynchronous operation.

For information about how the service works, see How it Works.

You must have permissions for the KinesisVideo:CreateStream action.

fn delete_stream(
    &self,
    input: DeleteStreamInput
) -> RusotoFuture<DeleteStreamOutput, DeleteStreamError>
[src]

Deletes a Kinesis video stream and the data contained in the stream.

This method marks the stream for deletion, and makes the data in the stream inaccessible immediately.

To ensure that you have the latest version of the stream before deleting it, you can specify the stream version. Kinesis Video Streams assigns a version to each stream. When you update a stream, Kinesis Video Streams assigns a new version number. To get the latest stream version, use the DescribeStream API.

This operation requires permission for the KinesisVideo:DeleteStream action.

fn describe_stream(
    &self,
    input: DescribeStreamInput
) -> RusotoFuture<DescribeStreamOutput, DescribeStreamError>
[src]

Returns the most current information about the specified stream. You must specify either the StreamName or the StreamARN.

fn get_data_endpoint(
    &self,
    input: GetDataEndpointInput
) -> RusotoFuture<GetDataEndpointOutput, GetDataEndpointError>
[src]

Gets an endpoint for a specified stream for either reading or writing. Use this endpoint in your application to read from the specified stream (using the GetMedia or GetMediaForFragmentList operations) or write to it (using the PutMedia operation).

The returned endpoint does not have the API name appended. The client needs to add the API name to the returned endpoint.

In the request, specify the stream either by StreamName or StreamARN.

fn list_streams(
    &self,
    input: ListStreamsInput
) -> RusotoFuture<ListStreamsOutput, ListStreamsError>
[src]

Returns an array of StreamInfo objects. Each object describes a stream. To retrieve only streams that satisfy a specific condition, you can specify a StreamNameCondition.

fn list_tags_for_stream(
    &self,
    input: ListTagsForStreamInput
) -> RusotoFuture<ListTagsForStreamOutput, ListTagsForStreamError>
[src]

Returns a list of tags associated with the specified stream.

In the request, you must specify either the StreamName or the StreamARN.

fn tag_stream(
    &self,
    input: TagStreamInput
) -> RusotoFuture<TagStreamOutput, TagStreamError>
[src]

Adds one or more tags to a stream. A tag is a key-value pair (the value is optional) that you can define and assign to AWS resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

You must provide either the StreamName or the StreamARN.

This operation requires permission for the KinesisVideo:TagStream action.

Kinesis video streams support up to 50 tags.

fn untag_stream(
    &self,
    input: UntagStreamInput
) -> RusotoFuture<UntagStreamOutput, UntagStreamError>
[src]

Removes one or more tags from a stream. In the request, specify only a tag key or keys; don't specify the value. If you specify a tag key that does not exist, it's ignored.

In the request, you must provide the StreamName or StreamARN.

fn update_data_retention(
    &self,
    input: UpdateDataRetentionInput
) -> RusotoFuture<UpdateDataRetentionOutput, UpdateDataRetentionError>
[src]

Increases or decreases the stream's data retention period by the value that you specify. To indicate whether you want to increase or decrease the data retention period, specify the Operation parameter in the request body. In the request, you must specify either the StreamName or the StreamARN.

The retention period that you specify replaces the current value.

This operation requires permission for the KinesisVideo:UpdateDataRetention action.

Changing the data retention period affects the data in the stream as follows:

  • If the data retention period is increased, existing data is retained for the new retention period. For example, if the data retention period is increased from one hour to seven hours, all existing data is retained for seven hours.

  • If the data retention period is decreased, existing data is retained for the new retention period. For example, if the data retention period is decreased from seven hours to one hour, all existing data is retained for one hour, and any data older than one hour is deleted immediately.

fn update_stream(
    &self,
    input: UpdateStreamInput
) -> RusotoFuture<UpdateStreamOutput, UpdateStreamError>
[src]

Updates stream metadata, such as the device name and media type.

You must provide the stream name or the Amazon Resource Name (ARN) of the stream.

To make sure that you have the latest version of the stream before updating it, you can specify the stream version. Kinesis Video Streams assigns a version to each stream. When you update a stream, Kinesis Video Streams assigns a new version number. To get the latest stream version, use the DescribeStream API.

UpdateStream is an asynchronous operation, and takes time to complete.

impl Clone for KinesisVideoClient[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for KinesisVideoClient

impl Sync for KinesisVideoClient

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self