[][src]Trait rusoto_dlm::Dlm

pub trait Dlm {
#[must_use]    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
;
#[must_use] 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
;
#[must_use] 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
;
#[must_use] 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
;
#[must_use] 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
;
#[must_use] 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
;
#[must_use] 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
;
#[must_use] 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
; }

Trait representing the capabilities of the Amazon DLM API. Amazon DLM clients implement this trait.

Required methods

#[must_use]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.

#[must_use]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.

#[must_use]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.

#[must_use]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.

#[must_use]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.

#[must_use]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.

#[must_use]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.

#[must_use]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.

Loading content...

Implementors

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.

Loading content...