pub struct GetEnabledStandardsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub standards_subscription_arns: Option<Vec<String>>,
}
Fields§
§max_results: Option<i64>
The maximum number of results to return in the response.
next_token: Option<String>
The token that is required for pagination. On your first call to the GetEnabledStandards
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_arns: Option<Vec<String>>
The list of the standards subscription ARNs for the standards to retrieve.
Trait Implementations§
Source§impl Clone for GetEnabledStandardsRequest
impl Clone for GetEnabledStandardsRequest
Source§fn clone(&self) -> GetEnabledStandardsRequest
fn clone(&self) -> GetEnabledStandardsRequest
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 Debug for GetEnabledStandardsRequest
impl Debug for GetEnabledStandardsRequest
Source§impl Default for GetEnabledStandardsRequest
impl Default for GetEnabledStandardsRequest
Source§fn default() -> GetEnabledStandardsRequest
fn default() -> GetEnabledStandardsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetEnabledStandardsRequest
Auto Trait Implementations§
impl Freeze for GetEnabledStandardsRequest
impl RefUnwindSafe for GetEnabledStandardsRequest
impl Send for GetEnabledStandardsRequest
impl Sync for GetEnabledStandardsRequest
impl Unpin for GetEnabledStandardsRequest
impl UnwindSafe for GetEnabledStandardsRequest
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