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

pub struct AccessKeyProperties {
    pub serial: Option<Value<u32>>,
    pub status: Option<Value<String>>,
    pub user_name: Value<String>,
}

Properties for the AccessKey resource.

Fields

Property Serial.

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

Property Status.

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

Property UserName.

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

Trait Implementations

impl Debug for AccessKeyProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for AccessKeyProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<AccessKeyProperties> for AccessKey
[src]

[src]

Performs the conversion.

Auto Trait Implementations