Struct aws_sdk_cloudformation::model::DeploymentTargets
source · [−]#[non_exhaustive]pub struct DeploymentTargets {
pub accounts: Option<Vec<String>>,
pub accounts_url: Option<String>,
pub organizational_unit_ids: Option<Vec<String>>,
}
Expand description
[Service-managed permissions] The Organizations accounts to which StackSets deploys. StackSets doesn't deploy stack instances to the organization management account, even if the organization management 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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.accounts: Option<Vec<String>>
The names of one or more Amazon Web Services accounts for which you want to deploy stack set updates.
accounts_url: Option<String>
Returns the value of the AccountsUrl
property.
organizational_unit_ids: Option<Vec<String>>
The organization root ID or organizational unit (OU) IDs to which StackSets deploys.
Implementations
sourceimpl DeploymentTargets
impl DeploymentTargets
sourcepub fn accounts(&self) -> Option<&[String]>
pub fn accounts(&self) -> Option<&[String]>
The names of one or more Amazon Web Services accounts for which you want to deploy stack set updates.
sourcepub fn accounts_url(&self) -> Option<&str>
pub fn accounts_url(&self) -> Option<&str>
Returns the value of the AccountsUrl
property.
sourcepub fn organizational_unit_ids(&self) -> Option<&[String]>
pub fn organizational_unit_ids(&self) -> Option<&[String]>
The organization root ID or organizational unit (OU) IDs to which StackSets deploys.
sourceimpl DeploymentTargets
impl DeploymentTargets
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeploymentTargets
Trait Implementations
sourceimpl Clone for DeploymentTargets
impl Clone for DeploymentTargets
sourcefn clone(&self) -> DeploymentTargets
fn clone(&self) -> DeploymentTargets
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DeploymentTargets
impl Debug for DeploymentTargets
sourceimpl PartialEq<DeploymentTargets> for DeploymentTargets
impl PartialEq<DeploymentTargets> for DeploymentTargets
sourcefn eq(&self, other: &DeploymentTargets) -> bool
fn eq(&self, other: &DeploymentTargets) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DeploymentTargets) -> bool
fn ne(&self, other: &DeploymentTargets) -> bool
This method tests for !=
.
impl StructuralPartialEq for DeploymentTargets
Auto Trait Implementations
impl RefUnwindSafe for DeploymentTargets
impl Send for DeploymentTargets
impl Sync for DeploymentTargets
impl Unpin for DeploymentTargets
impl UnwindSafe for DeploymentTargets
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more