pub struct DescribeStandardsControlsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub standards_subscription_arn: String,
}
Fields§
§max_results: Option<i64>
The maximum number of security standard controls to return.
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.
standards_subscription_arn: String
The ARN of a resource that represents your subscription to a supported standard.
Trait Implementations§
Source§impl Clone for DescribeStandardsControlsRequest
impl Clone for DescribeStandardsControlsRequest
Source§fn clone(&self) -> DescribeStandardsControlsRequest
fn clone(&self) -> DescribeStandardsControlsRequest
Returns a duplicate 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 DescribeStandardsControlsRequest
impl Default for DescribeStandardsControlsRequest
Source§fn default() -> DescribeStandardsControlsRequest
fn default() -> DescribeStandardsControlsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeStandardsControlsRequest
impl PartialEq for DescribeStandardsControlsRequest
Source§fn eq(&self, other: &DescribeStandardsControlsRequest) -> bool
fn eq(&self, other: &DescribeStandardsControlsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeStandardsControlsRequest
Auto Trait Implementations§
impl Freeze for DescribeStandardsControlsRequest
impl RefUnwindSafe for DescribeStandardsControlsRequest
impl Send for DescribeStandardsControlsRequest
impl Sync for DescribeStandardsControlsRequest
impl Unpin for DescribeStandardsControlsRequest
impl UnwindSafe for DescribeStandardsControlsRequest
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