Struct cfn::aws::cognito::UserPoolGroupProperties [] [src]

pub struct UserPoolGroupProperties {
    pub description: Option<Value<String>>,
    pub group_name: Option<Value<String>>,
    pub precedence: Option<Value<f64>>,
    pub role_arn: Option<Value<String>>,
    pub user_pool_id: Value<String>,
}

Properties for the UserPoolGroup resource.

Fields

Property Description.

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

Property GroupName.

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

Property Precedence.

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

Property RoleArn.

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

Property UserPoolId.

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

Trait Implementations

impl Debug for UserPoolGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for UserPoolGroupProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for UserPoolGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<UserPoolGroupProperties> for UserPoolGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations