[][src]Struct rusoto_securityhub::AwsIamPolicyDetails

pub struct AwsIamPolicyDetails {
    pub attachment_count: Option<i64>,
    pub create_date: Option<String>,
    pub default_version_id: Option<String>,
    pub description: Option<String>,
    pub is_attachable: Option<bool>,
    pub path: Option<String>,
    pub permissions_boundary_usage_count: Option<i64>,
    pub policy_id: Option<String>,
    pub policy_name: Option<String>,
    pub policy_version_list: Option<Vec<AwsIamPolicyVersion>>,
    pub update_date: Option<String>,
}

Represents an IAM permissions policy.

Fields

attachment_count: Option<i64>

The number of users, groups, and roles that the policy is attached to.

create_date: Option<String>

When the policy was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

default_version_id: Option<String>

The identifier of the default version of the policy.

description: Option<String>

A description of the policy.

is_attachable: Option<bool>

Whether the policy can be attached to a user, group, or role.

path: Option<String>

The path to the policy.

permissions_boundary_usage_count: Option<i64>

The number of users and roles that use the policy to set the permissions boundary.

policy_id: Option<String>

The unique identifier of the policy.

policy_name: Option<String>

The name of the policy.

policy_version_list: Option<Vec<AwsIamPolicyVersion>>

List of versions of the policy.

update_date: Option<String>

When the policy was most recently updated.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

Trait Implementations

impl Clone for AwsIamPolicyDetails[src]

impl Debug for AwsIamPolicyDetails[src]

impl Default for AwsIamPolicyDetails[src]

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

impl PartialEq<AwsIamPolicyDetails> for AwsIamPolicyDetails[src]

impl Serialize for AwsIamPolicyDetails[src]

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