[][src]Struct rusoto_backup::CreateBackupPlanInput

pub struct CreateBackupPlanInput {
    pub backup_plan: BackupPlanInput,
    pub backup_plan_tags: Option<HashMap<String, String>>,
    pub creator_request_id: Option<String>,
}

Fields

backup_plan: BackupPlanInput

Specifies the body of a backup plan. Includes a BackupPlanName and one or more sets of Rules.

backup_plan_tags: Option<HashMap<String, String>>

To help organize your resources, you can assign your own metadata to the resources that you create. Each tag is a key-value pair. The specified tags are assigned to all backups created with this plan.

creator_request_id: Option<String>

Identifies the request and allows failed requests to be retried without the risk of running the operation twice. If the request includes a CreatorRequestId that matches an existing backup plan, that plan is returned. This parameter is optional.

Trait Implementations

impl Clone for CreateBackupPlanInput[src]

impl Debug for CreateBackupPlanInput[src]

impl Default for CreateBackupPlanInput[src]

impl PartialEq<CreateBackupPlanInput> for CreateBackupPlanInput[src]

impl Serialize for CreateBackupPlanInput[src]

impl StructuralPartialEq for CreateBackupPlanInput[src]

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.