pub struct StandardsSubscriptionRequest {
pub standards_arn: String,
pub standards_input: Option<HashMap<String, String>>,
}
Expand description
The standard that you want to enable.
Fields§
§standards_arn: String
The ARN of the standard that you want to enable. To view the list of available standards and their ARNs, use the DescribeStandards
operation.
standards_input: Option<HashMap<String, String>>
A key-value pair of input for the standard.
Trait Implementations§
Source§impl Clone for StandardsSubscriptionRequest
impl Clone for StandardsSubscriptionRequest
Source§fn clone(&self) -> StandardsSubscriptionRequest
fn clone(&self) -> StandardsSubscriptionRequest
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 StandardsSubscriptionRequest
impl Debug for StandardsSubscriptionRequest
Source§impl Default for StandardsSubscriptionRequest
impl Default for StandardsSubscriptionRequest
Source§fn default() -> StandardsSubscriptionRequest
fn default() -> StandardsSubscriptionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for StandardsSubscriptionRequest
impl PartialEq for StandardsSubscriptionRequest
Source§fn eq(&self, other: &StandardsSubscriptionRequest) -> bool
fn eq(&self, other: &StandardsSubscriptionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for StandardsSubscriptionRequest
Auto Trait Implementations§
impl Freeze for StandardsSubscriptionRequest
impl RefUnwindSafe for StandardsSubscriptionRequest
impl Send for StandardsSubscriptionRequest
impl Sync for StandardsSubscriptionRequest
impl Unpin for StandardsSubscriptionRequest
impl UnwindSafe for StandardsSubscriptionRequest
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