[][src]Struct rusoto_backup::BackupSelection

pub struct BackupSelection {
    pub iam_role_arn: String,
    pub list_of_tags: Option<Vec<Condition>>,
    pub resources: Option<Vec<String>>,
    pub selection_name: String,
}

Used to specify a set of resources to a backup plan.

Fields

iam_role_arn: String

The ARN of the IAM role that AWS Backup uses to authenticate when restoring the target resource; for example, arn:aws:iam::123456789012:role/S3Access.

list_of_tags: Option<Vec<Condition>>

An array of conditions used to specify a set of resources to assign to a backup plan; for example, "STRINGEQUALS": {"ec2:ResourceTag/Department": "accounting".

resources: Option<Vec<String>>

An array of strings that contain Amazon Resource Names (ARNs) of resources to assign to a backup plan.

selection_name: String

The display name of a resource selection document.

Trait Implementations

impl Clone for BackupSelection[src]

impl Debug for BackupSelection[src]

impl Default for BackupSelection[src]

impl<'de> Deserialize<'de> for BackupSelection[src]

impl PartialEq<BackupSelection> for BackupSelection[src]

impl Serialize for BackupSelection[src]

impl StructuralPartialEq for BackupSelection[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.