Struct aws_sdk_securityhub::operation::batch_get_configuration_policy_associations::BatchGetConfigurationPolicyAssociationsOutput
source · #[non_exhaustive]pub struct BatchGetConfigurationPolicyAssociationsOutput {
pub configuration_policy_associations: Option<Vec<ConfigurationPolicyAssociationSummary>>,
pub unprocessed_configuration_policy_associations: Option<Vec<UnprocessedConfigurationPolicyAssociation>>,
/* private fields */
}
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.configuration_policy_associations: Option<Vec<ConfigurationPolicyAssociationSummary>>
Describes associations for the target accounts, OUs, or the root.
unprocessed_configuration_policy_associations: Option<Vec<UnprocessedConfigurationPolicyAssociation>>
An array of configuration policy associations, one for each configuration policy association identifier, that was specified in the request but couldn’t be processed due to an error.
Implementations§
source§impl BatchGetConfigurationPolicyAssociationsOutput
impl BatchGetConfigurationPolicyAssociationsOutput
sourcepub fn configuration_policy_associations(
&self
) -> &[ConfigurationPolicyAssociationSummary]
pub fn configuration_policy_associations( &self ) -> &[ConfigurationPolicyAssociationSummary]
Describes associations for the target accounts, OUs, or the root.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .configuration_policy_associations.is_none()
.
sourcepub fn unprocessed_configuration_policy_associations(
&self
) -> &[UnprocessedConfigurationPolicyAssociation]
pub fn unprocessed_configuration_policy_associations( &self ) -> &[UnprocessedConfigurationPolicyAssociation]
An array of configuration policy associations, one for each configuration policy association identifier, that was specified in the request but couldn’t be processed due to an error.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .unprocessed_configuration_policy_associations.is_none()
.
source§impl BatchGetConfigurationPolicyAssociationsOutput
impl BatchGetConfigurationPolicyAssociationsOutput
sourcepub fn builder() -> BatchGetConfigurationPolicyAssociationsOutputBuilder
pub fn builder() -> BatchGetConfigurationPolicyAssociationsOutputBuilder
Creates a new builder-style object to manufacture BatchGetConfigurationPolicyAssociationsOutput
.
Trait Implementations§
source§impl Clone for BatchGetConfigurationPolicyAssociationsOutput
impl Clone for BatchGetConfigurationPolicyAssociationsOutput
source§fn clone(&self) -> BatchGetConfigurationPolicyAssociationsOutput
fn clone(&self) -> BatchGetConfigurationPolicyAssociationsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for BatchGetConfigurationPolicyAssociationsOutput
impl PartialEq for BatchGetConfigurationPolicyAssociationsOutput
source§fn eq(&self, other: &BatchGetConfigurationPolicyAssociationsOutput) -> bool
fn eq(&self, other: &BatchGetConfigurationPolicyAssociationsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for BatchGetConfigurationPolicyAssociationsOutput
impl RequestId for BatchGetConfigurationPolicyAssociationsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for BatchGetConfigurationPolicyAssociationsOutput
Auto Trait Implementations§
impl Freeze for BatchGetConfigurationPolicyAssociationsOutput
impl RefUnwindSafe for BatchGetConfigurationPolicyAssociationsOutput
impl Send for BatchGetConfigurationPolicyAssociationsOutput
impl Sync for BatchGetConfigurationPolicyAssociationsOutput
impl Unpin for BatchGetConfigurationPolicyAssociationsOutput
impl UnwindSafe for BatchGetConfigurationPolicyAssociationsOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more