Struct aws_sdk_securityhub::operation::batch_get_security_controls::builders::BatchGetSecurityControlsOutputBuilder
source · #[non_exhaustive]pub struct BatchGetSecurityControlsOutputBuilder { /* private fields */ }
Expand description
A builder for BatchGetSecurityControlsOutput
.
Implementations§
source§impl BatchGetSecurityControlsOutputBuilder
impl BatchGetSecurityControlsOutputBuilder
sourcepub fn security_controls(self, input: SecurityControl) -> Self
pub fn security_controls(self, input: SecurityControl) -> Self
Appends an item to security_controls
.
To override the contents of this collection use set_security_controls
.
An array that returns the identifier, Amazon Resource Name (ARN), and other details about a security control. The same information is returned whether the request includes SecurityControlId
or SecurityControlArn
.
sourcepub fn set_security_controls(self, input: Option<Vec<SecurityControl>>) -> Self
pub fn set_security_controls(self, input: Option<Vec<SecurityControl>>) -> Self
An array that returns the identifier, Amazon Resource Name (ARN), and other details about a security control. The same information is returned whether the request includes SecurityControlId
or SecurityControlArn
.
sourcepub fn get_security_controls(&self) -> &Option<Vec<SecurityControl>>
pub fn get_security_controls(&self) -> &Option<Vec<SecurityControl>>
An array that returns the identifier, Amazon Resource Name (ARN), and other details about a security control. The same information is returned whether the request includes SecurityControlId
or SecurityControlArn
.
sourcepub fn unprocessed_ids(self, input: UnprocessedSecurityControl) -> Self
pub fn unprocessed_ids(self, input: UnprocessedSecurityControl) -> Self
Appends an item to unprocessed_ids
.
To override the contents of this collection use set_unprocessed_ids
.
A security control (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) for which details cannot be returned.
sourcepub fn set_unprocessed_ids(
self,
input: Option<Vec<UnprocessedSecurityControl>>
) -> Self
pub fn set_unprocessed_ids( self, input: Option<Vec<UnprocessedSecurityControl>> ) -> Self
A security control (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) for which details cannot be returned.
sourcepub fn get_unprocessed_ids(&self) -> &Option<Vec<UnprocessedSecurityControl>>
pub fn get_unprocessed_ids(&self) -> &Option<Vec<UnprocessedSecurityControl>>
A security control (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) for which details cannot be returned.
sourcepub fn build(self) -> BatchGetSecurityControlsOutput
pub fn build(self) -> BatchGetSecurityControlsOutput
Consumes the builder and constructs a BatchGetSecurityControlsOutput
.
Trait Implementations§
source§impl Clone for BatchGetSecurityControlsOutputBuilder
impl Clone for BatchGetSecurityControlsOutputBuilder
source§fn clone(&self) -> BatchGetSecurityControlsOutputBuilder
fn clone(&self) -> BatchGetSecurityControlsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchGetSecurityControlsOutputBuilder
impl Default for BatchGetSecurityControlsOutputBuilder
source§fn default() -> BatchGetSecurityControlsOutputBuilder
fn default() -> BatchGetSecurityControlsOutputBuilder
source§impl PartialEq for BatchGetSecurityControlsOutputBuilder
impl PartialEq for BatchGetSecurityControlsOutputBuilder
source§fn eq(&self, other: &BatchGetSecurityControlsOutputBuilder) -> bool
fn eq(&self, other: &BatchGetSecurityControlsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetSecurityControlsOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetSecurityControlsOutputBuilder
impl RefUnwindSafe for BatchGetSecurityControlsOutputBuilder
impl Send for BatchGetSecurityControlsOutputBuilder
impl Sync for BatchGetSecurityControlsOutputBuilder
impl Unpin for BatchGetSecurityControlsOutputBuilder
impl UnwindSafe for BatchGetSecurityControlsOutputBuilder
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