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

pub struct RoleProperties {
    pub assume_role_policy_document: Value<Value>,
    pub managed_policy_arns: Option<ValueList<String>>,
    pub path: Option<Value<String>>,
    pub policies: Option<ValueList<Policy>>,
    pub role_name: Option<Value<String>>,
}

Properties for the Role resource.

Fields

Property AssumeRolePolicyDocument.

Update type: Mutable. AWS CloudFormation doesn't replace 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: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Policies.

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

Property RoleName.

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

Trait Implementations

impl Debug for RoleProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for RoleProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<RoleProperties> for Role
[src]

[src]

Performs the conversion.

Auto Trait Implementations