Struct aws_sdk_securityhub::operation::list_security_control_definitions::ListSecurityControlDefinitionsInput
source · #[non_exhaustive]pub struct ListSecurityControlDefinitionsInput {
pub standards_arn: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.standards_arn: Option<String>
The Amazon Resource Name (ARN) of the standard that you want to view controls for.
next_token: Option<String>
Optional pagination parameter.
max_results: Option<i32>
An optional parameter that limits the total results of the API response to the specified number. If this parameter isn't provided in the request, the results include the first 25 security controls that apply to the specified standard. The results also include a NextToken
parameter that you can use in a subsequent API call to get the next 25 controls. This repeats until all controls for the standard are returned.
Implementations§
source§impl ListSecurityControlDefinitionsInput
impl ListSecurityControlDefinitionsInput
sourcepub fn standards_arn(&self) -> Option<&str>
pub fn standards_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the standard that you want to view controls for.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Optional pagination parameter.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
An optional parameter that limits the total results of the API response to the specified number. If this parameter isn't provided in the request, the results include the first 25 security controls that apply to the specified standard. The results also include a NextToken
parameter that you can use in a subsequent API call to get the next 25 controls. This repeats until all controls for the standard are returned.
source§impl ListSecurityControlDefinitionsInput
impl ListSecurityControlDefinitionsInput
sourcepub fn builder() -> ListSecurityControlDefinitionsInputBuilder
pub fn builder() -> ListSecurityControlDefinitionsInputBuilder
Creates a new builder-style object to manufacture ListSecurityControlDefinitionsInput
.
Trait Implementations§
source§impl Clone for ListSecurityControlDefinitionsInput
impl Clone for ListSecurityControlDefinitionsInput
source§fn clone(&self) -> ListSecurityControlDefinitionsInput
fn clone(&self) -> ListSecurityControlDefinitionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListSecurityControlDefinitionsInput
impl PartialEq for ListSecurityControlDefinitionsInput
source§fn eq(&self, other: &ListSecurityControlDefinitionsInput) -> bool
fn eq(&self, other: &ListSecurityControlDefinitionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListSecurityControlDefinitionsInput
Auto Trait Implementations§
impl Freeze for ListSecurityControlDefinitionsInput
impl RefUnwindSafe for ListSecurityControlDefinitionsInput
impl Send for ListSecurityControlDefinitionsInput
impl Sync for ListSecurityControlDefinitionsInput
impl Unpin for ListSecurityControlDefinitionsInput
impl UnwindSafe for ListSecurityControlDefinitionsInput
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