[][src]Struct rusoto_securityhub::Standard

pub struct Standard {
    pub description: Option<String>,
    pub enabled_by_default: Option<bool>,
    pub name: Option<String>,
    pub standards_arn: Option<String>,
}

Provides information about a specific standard.

Fields

description: Option<String>

A description of the standard.

enabled_by_default: Option<bool>

Whether the standard is enabled by default. When Security Hub is enabled from the console, if a standard is enabled by default, the check box for that standard is selected by default.

When Security Hub is enabled using the EnableSecurityHub API operation, the standard is enabled by default unless EnableDefaultStandards is set to false.

name: Option<String>

The name of the standard.

standards_arn: Option<String>

The ARN of a standard.

Trait Implementations

impl Clone for Standard[src]

impl Debug for Standard[src]

impl Default for Standard[src]

impl<'de> Deserialize<'de> for Standard[src]

impl PartialEq<Standard> for Standard[src]

impl StructuralPartialEq for Standard[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.