#[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 ==
.