Struct aws_sdk_securityhub::types::builders::UnprocessedConfigurationPolicyAssociationBuilder
source · #[non_exhaustive]pub struct UnprocessedConfigurationPolicyAssociationBuilder { /* private fields */ }
Expand description
A builder for UnprocessedConfigurationPolicyAssociation
.
Implementations§
source§impl UnprocessedConfigurationPolicyAssociationBuilder
impl UnprocessedConfigurationPolicyAssociationBuilder
sourcepub fn configuration_policy_association_identifiers(
self,
input: ConfigurationPolicyAssociation
) -> Self
pub fn configuration_policy_association_identifiers( self, input: ConfigurationPolicyAssociation ) -> Self
Configuration policy association identifiers that were specified in a BatchGetConfigurationPolicyAssociations
request but couldn’t be processed due to an error.
sourcepub fn set_configuration_policy_association_identifiers(
self,
input: Option<ConfigurationPolicyAssociation>
) -> Self
pub fn set_configuration_policy_association_identifiers( self, input: Option<ConfigurationPolicyAssociation> ) -> Self
Configuration policy association identifiers that were specified in a BatchGetConfigurationPolicyAssociations
request but couldn’t be processed due to an error.
sourcepub fn get_configuration_policy_association_identifiers(
&self
) -> &Option<ConfigurationPolicyAssociation>
pub fn get_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, input: impl Into<String>) -> Self
pub fn error_code(self, input: impl Into<String>) -> Self
An HTTP status code that identifies why the configuration policy association failed.
sourcepub fn set_error_code(self, input: Option<String>) -> Self
pub fn set_error_code(self, input: Option<String>) -> Self
An HTTP status code that identifies why the configuration policy association failed.
sourcepub fn get_error_code(&self) -> &Option<String>
pub fn get_error_code(&self) -> &Option<String>
An HTTP status code that identifies why the configuration policy association failed.
sourcepub fn error_reason(self, input: impl Into<String>) -> Self
pub fn error_reason(self, input: impl Into<String>) -> Self
A string that identifies why the configuration policy association failed.
sourcepub fn set_error_reason(self, input: Option<String>) -> Self
pub fn set_error_reason(self, input: Option<String>) -> Self
A string that identifies why the configuration policy association failed.
sourcepub fn get_error_reason(&self) -> &Option<String>
pub fn get_error_reason(&self) -> &Option<String>
A string that identifies why the configuration policy association failed.
sourcepub fn build(self) -> UnprocessedConfigurationPolicyAssociation
pub fn build(self) -> UnprocessedConfigurationPolicyAssociation
Consumes the builder and constructs a UnprocessedConfigurationPolicyAssociation
.
Trait Implementations§
source§impl Clone for UnprocessedConfigurationPolicyAssociationBuilder
impl Clone for UnprocessedConfigurationPolicyAssociationBuilder
source§fn clone(&self) -> UnprocessedConfigurationPolicyAssociationBuilder
fn clone(&self) -> UnprocessedConfigurationPolicyAssociationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UnprocessedConfigurationPolicyAssociationBuilder
impl Default for UnprocessedConfigurationPolicyAssociationBuilder
source§fn default() -> UnprocessedConfigurationPolicyAssociationBuilder
fn default() -> UnprocessedConfigurationPolicyAssociationBuilder
source§impl PartialEq for UnprocessedConfigurationPolicyAssociationBuilder
impl PartialEq for UnprocessedConfigurationPolicyAssociationBuilder
source§fn eq(&self, other: &UnprocessedConfigurationPolicyAssociationBuilder) -> bool
fn eq(&self, other: &UnprocessedConfigurationPolicyAssociationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UnprocessedConfigurationPolicyAssociationBuilder
Auto Trait Implementations§
impl Freeze for UnprocessedConfigurationPolicyAssociationBuilder
impl RefUnwindSafe for UnprocessedConfigurationPolicyAssociationBuilder
impl Send for UnprocessedConfigurationPolicyAssociationBuilder
impl Sync for UnprocessedConfigurationPolicyAssociationBuilder
impl Unpin for UnprocessedConfigurationPolicyAssociationBuilder
impl UnwindSafe for UnprocessedConfigurationPolicyAssociationBuilder
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