#[non_exhaustive]pub struct UpdateOrganizationConfigurationInput {
pub auto_enable: bool,
pub auto_enable_standards: Option<AutoEnableStandards>,
}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.auto_enable: boolWhether to automatically enable Security Hub for new accounts in the organization.
By default, this is false, and new accounts are not added automatically.
To automatically enable Security Hub for new accounts, set this to true.
auto_enable_standards: Option<AutoEnableStandards>Whether to automatically enable Security Hub default standards for new member accounts in the organization.
By default, this parameter is equal to DEFAULT, and new member accounts are automatically enabled with default Security Hub standards.
To opt out of enabling default standards for new member accounts, set this parameter equal to NONE.
Implementations
sourceimpl UpdateOrganizationConfigurationInput
impl UpdateOrganizationConfigurationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateOrganizationConfiguration, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateOrganizationConfiguration, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateOrganizationConfiguration>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateOrganizationConfigurationInput.
sourceimpl UpdateOrganizationConfigurationInput
impl UpdateOrganizationConfigurationInput
sourcepub fn auto_enable(&self) -> bool
pub fn auto_enable(&self) -> bool
Whether to automatically enable Security Hub for new accounts in the organization.
By default, this is false, and new accounts are not added automatically.
To automatically enable Security Hub for new accounts, set this to true.
sourcepub fn auto_enable_standards(&self) -> Option<&AutoEnableStandards>
pub fn auto_enable_standards(&self) -> Option<&AutoEnableStandards>
Whether to automatically enable Security Hub default standards for new member accounts in the organization.
By default, this parameter is equal to DEFAULT, and new member accounts are automatically enabled with default Security Hub standards.
To opt out of enabling default standards for new member accounts, set this parameter equal to NONE.
Trait Implementations
sourceimpl Clone for UpdateOrganizationConfigurationInput
impl Clone for UpdateOrganizationConfigurationInput
sourcefn clone(&self) -> UpdateOrganizationConfigurationInput
fn clone(&self) -> UpdateOrganizationConfigurationInput
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 PartialEq<UpdateOrganizationConfigurationInput> for UpdateOrganizationConfigurationInput
impl PartialEq<UpdateOrganizationConfigurationInput> for UpdateOrganizationConfigurationInput
sourcefn eq(&self, other: &UpdateOrganizationConfigurationInput) -> bool
fn eq(&self, other: &UpdateOrganizationConfigurationInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UpdateOrganizationConfigurationInput) -> bool
fn ne(&self, other: &UpdateOrganizationConfigurationInput) -> bool
This method tests for !=.
impl StructuralPartialEq for UpdateOrganizationConfigurationInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateOrganizationConfigurationInput
impl Send for UpdateOrganizationConfigurationInput
impl Sync for UpdateOrganizationConfigurationInput
impl Unpin for UpdateOrganizationConfigurationInput
impl UnwindSafe for UpdateOrganizationConfigurationInput
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