[][src]Struct rusoto_dlm::DlmClient

pub struct DlmClient { /* fields omitted */ }

A client for the Amazon DLM API.

Implementations

impl DlmClient[src]

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

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

Trait Implementations

impl Clone for DlmClient[src]

impl Dlm for DlmClient[src]

pub fn create_lifecycle_policy<'life0, 'async_trait>(
    &'life0 self,
    input: CreateLifecyclePolicyRequest
) -> Pin<Box<dyn Future<Output = Result<CreateLifecyclePolicyResponse, RusotoError<CreateLifecyclePolicyError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a policy to manage the lifecycle of the specified AWS resources. You can create up to 100 lifecycle policies.

pub fn delete_lifecycle_policy<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteLifecyclePolicyRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteLifecyclePolicyResponse, RusotoError<DeleteLifecyclePolicyError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified lifecycle policy and halts the automated operations that the policy specified.

pub fn get_lifecycle_policies<'life0, 'async_trait>(
    &'life0 self,
    input: GetLifecyclePoliciesRequest
) -> Pin<Box<dyn Future<Output = Result<GetLifecyclePoliciesResponse, RusotoError<GetLifecyclePoliciesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Gets summary information about all or the specified data lifecycle policies.

To get complete information about a policy, use GetLifecyclePolicy.

pub fn get_lifecycle_policy<'life0, 'async_trait>(
    &'life0 self,
    input: GetLifecyclePolicyRequest
) -> Pin<Box<dyn Future<Output = Result<GetLifecyclePolicyResponse, RusotoError<GetLifecyclePolicyError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Gets detailed information about the specified lifecycle policy.

pub fn list_tags_for_resource<'life0, 'async_trait>(
    &'life0 self,
    input: ListTagsForResourceRequest
) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the tags for the specified resource.

pub fn tag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: TagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<TagResourceResponse, RusotoError<TagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds the specified tags to the specified resource.

pub fn untag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UntagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<UntagResourceResponse, RusotoError<UntagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes the specified tags from the specified resource.

pub fn update_lifecycle_policy<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateLifecyclePolicyRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateLifecyclePolicyResponse, RusotoError<UpdateLifecyclePolicyError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the specified lifecycle policy.

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> 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.