#[non_exhaustive]pub struct UnprocessedConfigurationPolicyAssociation {
pub configuration_policy_association_identifiers: Option<ConfigurationPolicyAssociation>,
pub error_code: Option<String>,
pub error_reason: Option<String>,
}
Expand description
An array of configuration policy associations, one for each configuration policy association identifier, that was specified in a BatchGetConfigurationPolicyAssociations
request but couldn’t be processed due to an error.
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_association_identifiers: Option<ConfigurationPolicyAssociation>
Configuration policy association identifiers that were specified in a BatchGetConfigurationPolicyAssociations
request but couldn’t be processed due to an error.
error_code: Option<String>
An HTTP status code that identifies why the configuration policy association failed.
error_reason: Option<String>
A string that identifies why the configuration policy association failed.
Implementations§
source§impl UnprocessedConfigurationPolicyAssociation
impl UnprocessedConfigurationPolicyAssociation
sourcepub fn configuration_policy_association_identifiers(
&self
) -> Option<&ConfigurationPolicyAssociation>
pub fn configuration_policy_association_identifiers( &self ) -> Option<&ConfigurationPolicyAssociation>
Configuration policy association identifiers that were specified in a BatchGetConfigurationPolicyAssociations
request but couldn’t be processed due to an error.
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
An HTTP status code that identifies why the configuration policy association failed.
sourcepub fn error_reason(&self) -> Option<&str>
pub fn error_reason(&self) -> Option<&str>
A string that identifies why the configuration policy association failed.
source§impl UnprocessedConfigurationPolicyAssociation
impl UnprocessedConfigurationPolicyAssociation
sourcepub fn builder() -> UnprocessedConfigurationPolicyAssociationBuilder
pub fn builder() -> UnprocessedConfigurationPolicyAssociationBuilder
Creates a new builder-style object to manufacture UnprocessedConfigurationPolicyAssociation
.
Trait Implementations§
source§impl Clone for UnprocessedConfigurationPolicyAssociation
impl Clone for UnprocessedConfigurationPolicyAssociation
source§fn clone(&self) -> UnprocessedConfigurationPolicyAssociation
fn clone(&self) -> UnprocessedConfigurationPolicyAssociation
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UnprocessedConfigurationPolicyAssociation
impl PartialEq for UnprocessedConfigurationPolicyAssociation
source§fn eq(&self, other: &UnprocessedConfigurationPolicyAssociation) -> bool
fn eq(&self, other: &UnprocessedConfigurationPolicyAssociation) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UnprocessedConfigurationPolicyAssociation
Auto Trait Implementations§
impl Freeze for UnprocessedConfigurationPolicyAssociation
impl RefUnwindSafe for UnprocessedConfigurationPolicyAssociation
impl Send for UnprocessedConfigurationPolicyAssociation
impl Sync for UnprocessedConfigurationPolicyAssociation
impl Unpin for UnprocessedConfigurationPolicyAssociation
impl UnwindSafe for UnprocessedConfigurationPolicyAssociation
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