[][src]Struct rusoto_cloudformation::DeploymentTargets

pub struct DeploymentTargets {
    pub accounts: Option<Vec<String>>,
    pub organizational_unit_ids: Option<Vec<String>>,
}

[Service-managed permissions] The AWS Organizations accounts to which StackSets deploys. StackSets does not deploy stack instances to the organization master account, even if the master account is in your organization or in an OU in your organization.

For update operations, you can specify either Accounts or OrganizationalUnitIds. For create and delete operations, specify OrganizationalUnitIds.

Fields

accounts: Option<Vec<String>>

The names of one or more AWS accounts for which you want to deploy stack set updates.

organizational_unit_ids: Option<Vec<String>>

The organization root ID or organizational unit (OU) IDs to which StackSets deploys.

Trait Implementations

impl Clone for DeploymentTargets[src]

impl Debug for DeploymentTargets[src]

impl Default for DeploymentTargets[src]

impl PartialEq<DeploymentTargets> for DeploymentTargets[src]

impl StructuralPartialEq for DeploymentTargets[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> 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.