[][src]Struct rusoto_accessanalyzer::AnalyzedResource

pub struct AnalyzedResource {
    pub actions: Option<Vec<String>>,
    pub analyzed_at: f64,
    pub created_at: f64,
    pub error: Option<String>,
    pub is_public: bool,
    pub resource_arn: String,
    pub resource_owner_account: String,
    pub resource_type: String,
    pub shared_via: Option<Vec<String>>,
    pub status: Option<String>,
    pub updated_at: f64,
}

Contains details about the analyzed resource.

Fields

actions: Option<Vec<String>>

The actions that an external principal is granted permission to use by the policy that generated the finding.

analyzed_at: f64

The time at which the resource was analyzed.

created_at: f64

The time at which the finding was created.

error: Option<String>

An error message.

is_public: bool

Indicates whether the policy that generated the finding grants public access to the resource.

resource_arn: String

The ARN of the resource that was analyzed.

resource_owner_account: String

The AWS account ID that owns the resource.

resource_type: String

The type of the resource that was analyzed.

shared_via: Option<Vec<String>>

Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings.

status: Option<String>

The current status of the finding generated from the analyzed resource.

updated_at: f64

The time at which the finding was updated.

Trait Implementations

impl Clone for AnalyzedResource[src]

impl Debug for AnalyzedResource[src]

impl Default for AnalyzedResource[src]

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

impl PartialEq<AnalyzedResource> for AnalyzedResource[src]

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