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

pub struct GroupProperties {
    pub group_name: Option<Value<String>>,
    pub managed_policy_arns: Option<ValueList<String>>,
    pub path: Option<Value<String>>,
    pub policies: Option<ValueList<Policy>>,
}

Properties for the Group resource.

Fields

Property GroupName.

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

Property ManagedPolicyArns.

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

Property Path.

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

Property Policies.

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

Trait Implementations

impl Debug for GroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for GroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<GroupProperties> for Group
[src]

[src]

Performs the conversion.

Auto Trait Implementations