pub struct StandardsSubscription {
pub standards_arn: String,
pub standards_input: HashMap<String, String>,
pub standards_status: String,
pub standards_subscription_arn: String,
}
Expand description
A resource that represents your subscription to a supported standard.
Fields§
§standards_arn: String
The ARN of a standard.
standards_input: HashMap<String, String>
A key-value pair of input for the standard.
standards_status: String
The status of the standards subscription.
standards_subscription_arn: String
The ARN of a resource that represents your subscription to a supported standard.
Trait Implementations§
Source§impl Clone for StandardsSubscription
impl Clone for StandardsSubscription
Source§fn clone(&self) -> StandardsSubscription
fn clone(&self) -> StandardsSubscription
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 StandardsSubscription
impl Debug for StandardsSubscription
Source§impl Default for StandardsSubscription
impl Default for StandardsSubscription
Source§fn default() -> StandardsSubscription
fn default() -> StandardsSubscription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StandardsSubscription
impl<'de> Deserialize<'de> for StandardsSubscription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StandardsSubscription
impl PartialEq for StandardsSubscription
impl StructuralPartialEq for StandardsSubscription
Auto Trait Implementations§
impl Freeze for StandardsSubscription
impl RefUnwindSafe for StandardsSubscription
impl Send for StandardsSubscription
impl Sync for StandardsSubscription
impl Unpin for StandardsSubscription
impl UnwindSafe for StandardsSubscription
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