Struct cfn::aws::opsworks::UserProfileProperties [] [src]

pub struct UserProfileProperties {
    pub allow_self_management: Option<Value<bool>>,
    pub iam_user_arn: Value<String>,
    pub ssh_public_key: Option<Value<String>>,
    pub ssh_username: Option<Value<String>>,
}

Properties for the UserProfile resource.

Fields

Property AllowSelfManagement.

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

Property IamUserArn.

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

Property SshPublicKey.

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

Property SshUsername.

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

Trait Implementations

impl Debug for UserProfileProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for UserProfileProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<UserProfileProperties> for UserProfile
[src]

[src]

Performs the conversion.

Auto Trait Implementations