[][src]Struct rusoto_medialive::MediaLiveClient

pub struct MediaLiveClient { /* fields omitted */ }

A client for the MediaLive API.

Methods

impl MediaLiveClient[src]

pub fn new(region: Region) -> MediaLiveClient[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
) -> MediaLiveClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

Trait Implementations

impl MediaLive for MediaLiveClient[src]

fn batch_update_schedule(
    &self,
    input: BatchUpdateScheduleRequest
) -> RusotoFuture<BatchUpdateScheduleResponse, BatchUpdateScheduleError>
[src]

Update a channel schedule

fn create_channel(
    &self,
    input: CreateChannelRequest
) -> RusotoFuture<CreateChannelResponse, CreateChannelError>
[src]

Creates a new channel

fn create_input(
    &self,
    input: CreateInputRequest
) -> RusotoFuture<CreateInputResponse, CreateInputError>
[src]

Create an input

fn create_input_security_group(
    &self,
    input: CreateInputSecurityGroupRequest
) -> RusotoFuture<CreateInputSecurityGroupResponse, CreateInputSecurityGroupError>
[src]

Creates a Input Security Group

fn create_tags(
    &self,
    input: CreateTagsRequest
) -> RusotoFuture<(), CreateTagsError>
[src]

Create tags for a resource

fn delete_channel(
    &self,
    input: DeleteChannelRequest
) -> RusotoFuture<DeleteChannelResponse, DeleteChannelError>
[src]

Starts deletion of channel. The associated outputs are also deleted.

fn delete_input(
    &self,
    input: DeleteInputRequest
) -> RusotoFuture<DeleteInputResponse, DeleteInputError>
[src]

Deletes the input end point

fn delete_input_security_group(
    &self,
    input: DeleteInputSecurityGroupRequest
) -> RusotoFuture<DeleteInputSecurityGroupResponse, DeleteInputSecurityGroupError>
[src]

Deletes an Input Security Group

fn delete_reservation(
    &self,
    input: DeleteReservationRequest
) -> RusotoFuture<DeleteReservationResponse, DeleteReservationError>
[src]

Delete an expired reservation.

fn delete_schedule(
    &self,
    input: DeleteScheduleRequest
) -> RusotoFuture<DeleteScheduleResponse, DeleteScheduleError>
[src]

Delete all schedule actions on a channel.

fn delete_tags(
    &self,
    input: DeleteTagsRequest
) -> RusotoFuture<(), DeleteTagsError>
[src]

Removes tags for a resource

fn describe_channel(
    &self,
    input: DescribeChannelRequest
) -> RusotoFuture<DescribeChannelResponse, DescribeChannelError>
[src]

Gets details about a channel

fn describe_input(
    &self,
    input: DescribeInputRequest
) -> RusotoFuture<DescribeInputResponse, DescribeInputError>
[src]

Produces details about an input

fn describe_input_security_group(
    &self,
    input: DescribeInputSecurityGroupRequest
) -> RusotoFuture<DescribeInputSecurityGroupResponse, DescribeInputSecurityGroupError>
[src]

Produces a summary of an Input Security Group

fn describe_offering(
    &self,
    input: DescribeOfferingRequest
) -> RusotoFuture<DescribeOfferingResponse, DescribeOfferingError>
[src]

Get details for an offering.

fn describe_reservation(
    &self,
    input: DescribeReservationRequest
) -> RusotoFuture<DescribeReservationResponse, DescribeReservationError>
[src]

Get details for a reservation.

fn describe_schedule(
    &self,
    input: DescribeScheduleRequest
) -> RusotoFuture<DescribeScheduleResponse, DescribeScheduleError>
[src]

Get a channel schedule

fn list_channels(
    &self,
    input: ListChannelsRequest
) -> RusotoFuture<ListChannelsResponse, ListChannelsError>
[src]

Produces list of channels that have been created

fn list_input_security_groups(
    &self,
    input: ListInputSecurityGroupsRequest
) -> RusotoFuture<ListInputSecurityGroupsResponse, ListInputSecurityGroupsError>
[src]

Produces a list of Input Security Groups for an account

fn list_inputs(
    &self,
    input: ListInputsRequest
) -> RusotoFuture<ListInputsResponse, ListInputsError>
[src]

Produces list of inputs that have been created

fn list_offerings(
    &self,
    input: ListOfferingsRequest
) -> RusotoFuture<ListOfferingsResponse, ListOfferingsError>
[src]

List offerings available for purchase.

fn list_reservations(
    &self,
    input: ListReservationsRequest
) -> RusotoFuture<ListReservationsResponse, ListReservationsError>
[src]

List purchased reservations.

fn list_tags_for_resource(
    &self,
    input: ListTagsForResourceRequest
) -> RusotoFuture<ListTagsForResourceResponse, ListTagsForResourceError>
[src]

Produces list of tags that have been created for a resource

fn purchase_offering(
    &self,
    input: PurchaseOfferingRequest
) -> RusotoFuture<PurchaseOfferingResponse, PurchaseOfferingError>
[src]

Purchase an offering and create a reservation.

fn start_channel(
    &self,
    input: StartChannelRequest
) -> RusotoFuture<StartChannelResponse, StartChannelError>
[src]

Starts an existing channel

fn stop_channel(
    &self,
    input: StopChannelRequest
) -> RusotoFuture<StopChannelResponse, StopChannelError>
[src]

Stops a running channel

fn update_channel(
    &self,
    input: UpdateChannelRequest
) -> RusotoFuture<UpdateChannelResponse, UpdateChannelError>
[src]

Updates a channel.

fn update_channel_class(
    &self,
    input: UpdateChannelClassRequest
) -> RusotoFuture<UpdateChannelClassResponse, UpdateChannelClassError>
[src]

Changes the class of the channel.

fn update_input(
    &self,
    input: UpdateInputRequest
) -> RusotoFuture<UpdateInputResponse, UpdateInputError>
[src]

Updates an input.

fn update_input_security_group(
    &self,
    input: UpdateInputSecurityGroupRequest
) -> RusotoFuture<UpdateInputSecurityGroupResponse, UpdateInputSecurityGroupError>
[src]

Update an Input Security Group's Whilelists.

fn update_reservation(
    &self,
    input: UpdateReservationRequest
) -> RusotoFuture<UpdateReservationResponse, UpdateReservationError>
[src]

Update reservation.

impl Clone for MediaLiveClient[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 MediaLiveClient

impl Sync for MediaLiveClient

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