Struct cfn::aws::iam::ManagedPolicyProperties [] [src]

pub struct ManagedPolicyProperties {
    pub description: Option<Value<String>>,
    pub groups: Option<ValueList<String>>,
    pub managed_policy_name: Option<Value<String>>,
    pub path: Option<Value<String>>,
    pub policy_document: Value<Value>,
    pub roles: Option<ValueList<String>>,
    pub users: Option<ValueList<String>>,
}

Properties for the ManagedPolicy resource.

Fields

Property Description.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Groups.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ManagedPolicyName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Path.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property PolicyDocument.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Roles.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Users.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for ManagedPolicyProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ManagedPolicyProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ManagedPolicyProperties> for ManagedPolicy
[src]

[src]

Performs the conversion.

Auto Trait Implementations