logo
pub trait Dlm {
    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
; 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
; 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
; 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
; 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
; 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
; 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
; 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
; }
Expand description

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

Required Methods

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

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

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

To get complete information about a policy, use GetLifecyclePolicy.

Gets detailed information about the specified lifecycle policy.

Lists the tags for the specified resource.

Adds the specified tags to the specified resource.

Removes the specified tags from the specified resource.

Updates the specified lifecycle policy.

Implementors