Struct aws_sdk_securityhub::operation::list_security_control_definitions::builders::ListSecurityControlDefinitionsOutputBuilder
source · #[non_exhaustive]pub struct ListSecurityControlDefinitionsOutputBuilder { /* private fields */ }
Expand description
A builder for ListSecurityControlDefinitionsOutput
.
Implementations§
source§impl ListSecurityControlDefinitionsOutputBuilder
impl ListSecurityControlDefinitionsOutputBuilder
sourcepub fn security_control_definitions(
self,
input: SecurityControlDefinition
) -> Self
pub fn security_control_definitions( self, input: SecurityControlDefinition ) -> Self
Appends an item to security_control_definitions
.
To override the contents of this collection use set_security_control_definitions
.
An array of controls that apply to the specified standard.
sourcepub fn set_security_control_definitions(
self,
input: Option<Vec<SecurityControlDefinition>>
) -> Self
pub fn set_security_control_definitions( self, input: Option<Vec<SecurityControlDefinition>> ) -> Self
An array of controls that apply to the specified standard.
sourcepub fn get_security_control_definitions(
&self
) -> &Option<Vec<SecurityControlDefinition>>
pub fn get_security_control_definitions( &self ) -> &Option<Vec<SecurityControlDefinition>>
An array of controls that apply to the specified standard.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A pagination parameter that's included in the response only if it was included in the request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A pagination parameter that's included in the response only if it was included in the request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A pagination parameter that's included in the response only if it was included in the request.
sourcepub fn build(self) -> ListSecurityControlDefinitionsOutput
pub fn build(self) -> ListSecurityControlDefinitionsOutput
Consumes the builder and constructs a ListSecurityControlDefinitionsOutput
.
Trait Implementations§
source§impl Clone for ListSecurityControlDefinitionsOutputBuilder
impl Clone for ListSecurityControlDefinitionsOutputBuilder
source§fn clone(&self) -> ListSecurityControlDefinitionsOutputBuilder
fn clone(&self) -> ListSecurityControlDefinitionsOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for ListSecurityControlDefinitionsOutputBuilder
impl Default for ListSecurityControlDefinitionsOutputBuilder
source§fn default() -> ListSecurityControlDefinitionsOutputBuilder
fn default() -> ListSecurityControlDefinitionsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListSecurityControlDefinitionsOutputBuilder
impl PartialEq for ListSecurityControlDefinitionsOutputBuilder
source§fn eq(&self, other: &ListSecurityControlDefinitionsOutputBuilder) -> bool
fn eq(&self, other: &ListSecurityControlDefinitionsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListSecurityControlDefinitionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListSecurityControlDefinitionsOutputBuilder
impl RefUnwindSafe for ListSecurityControlDefinitionsOutputBuilder
impl Send for ListSecurityControlDefinitionsOutputBuilder
impl Sync for ListSecurityControlDefinitionsOutputBuilder
impl Unpin for ListSecurityControlDefinitionsOutputBuilder
impl UnwindSafe for ListSecurityControlDefinitionsOutputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.