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

pub struct InstanceProfileProperties {
    pub instance_profile_name: Option<Value<String>>,
    pub path: Option<Value<String>>,
    pub roles: ValueList<String>,
}

Properties for the InstanceProfile resource.

Fields

Property InstanceProfileName.

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 Roles.

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

Trait Implementations

impl Debug for InstanceProfileProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for InstanceProfileProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<InstanceProfileProperties> for InstanceProfile
[src]

[src]

Performs the conversion.

Auto Trait Implementations