#[non_exhaustive]pub struct DescribeStandardsControlsInput {
pub standards_subscription_arn: Option<String>,
pub next_token: Option<String>,
pub max_results: 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_subscription_arn: Option<String>
The ARN of a resource that represents your subscription to a supported standard. To get the subscription ARNs of the standards you have enabled, use the GetEnabledStandards
operation.
next_token: Option<String>
The token that is required for pagination. On your first call to the DescribeStandardsControls
operation, set the value of this parameter to NULL
.
For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
max_results: i32
The maximum number of security standard controls to return.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeStandardsControls, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeStandardsControls, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeStandardsControls
>
Creates a new builder-style object to manufacture DescribeStandardsControlsInput
The ARN of a resource that represents your subscription to a supported standard. To get the subscription ARNs of the standards you have enabled, use the GetEnabledStandards
operation.
The token that is required for pagination. On your first call to the DescribeStandardsControls
operation, set the value of this parameter to NULL
.
For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
The maximum number of security standard controls to return.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for DescribeStandardsControlsInput
impl Sync for DescribeStandardsControlsInput
impl Unpin for DescribeStandardsControlsInput
impl UnwindSafe for DescribeStandardsControlsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more