[][src]Struct rusoto_sagemaker_a2i_runtime::SagemakerA2iRuntimeClient

pub struct SagemakerA2iRuntimeClient { /* fields omitted */ }

A client for the Amazon Augmented AI Runtime API.

Implementations

impl SagemakerA2iRuntimeClient[src]

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

pub fn new_with_client(
    client: Client,
    region: Region
) -> SagemakerA2iRuntimeClient
[src]

Trait Implementations

impl Clone for SagemakerA2iRuntimeClient[src]

impl SagemakerA2iRuntime for SagemakerA2iRuntimeClient[src]

pub fn delete_human_loop<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteHumanLoopRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteHumanLoopResponse, RusotoError<DeleteHumanLoopError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified human loop for a flow definition.

pub fn describe_human_loop<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeHumanLoopRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeHumanLoopResponse, RusotoError<DescribeHumanLoopError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns information about the specified human loop.

pub fn list_human_loops<'life0, 'async_trait>(
    &'life0 self,
    input: ListHumanLoopsRequest
) -> Pin<Box<dyn Future<Output = Result<ListHumanLoopsResponse, RusotoError<ListHumanLoopsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns information about human loops, given the specified parameters. If a human loop was deleted, it will not be included.

pub fn start_human_loop<'life0, 'async_trait>(
    &'life0 self,
    input: StartHumanLoopRequest
) -> Pin<Box<dyn Future<Output = Result<StartHumanLoopResponse, RusotoError<StartHumanLoopError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Starts a human loop, provided that at least one activation condition is met.

pub fn stop_human_loop<'life0, 'async_trait>(
    &'life0 self,
    input: StopHumanLoopRequest
) -> Pin<Box<dyn Future<Output = Result<StopHumanLoopResponse, RusotoError<StopHumanLoopError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Stops the specified human loop.

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.