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