[][src]Struct rusoto_fms::ComplianceViolator

pub struct ComplianceViolator {
    pub resource_id: Option<String>,
    pub resource_type: Option<String>,
    pub violation_reason: Option<String>,
}

Details of the resource that is not protected by the policy.

Fields

resource_id: Option<String>

The resource ID.

resource_type: Option<String>

The resource type. This is in the format shown in the AWS Resource Types Reference. For example: AWS::ElasticLoadBalancingV2::LoadBalancer or AWS::CloudFront::Distribution.

violation_reason: Option<String>

The reason that the resource is not protected by the policy.

Trait Implementations

impl Clone for ComplianceViolator[src]

impl Debug for ComplianceViolator[src]

impl Default for ComplianceViolator[src]

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

impl PartialEq<ComplianceViolator> for ComplianceViolator[src]

impl StructuralPartialEq for ComplianceViolator[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.