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

pub struct UserPoolClientProperties {
    pub client_name: Option<Value<String>>,
    pub explicit_auth_flows: Option<ValueList<String>>,
    pub generate_secret: Option<Value<bool>>,
    pub read_attributes: Option<ValueList<String>>,
    pub refresh_token_validity: Option<Value<f64>>,
    pub user_pool_id: Value<String>,
    pub write_attributes: Option<ValueList<String>>,
}

Properties for the UserPoolClient resource.

Fields

Property ClientName.

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

Property ExplicitAuthFlows.

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

Property GenerateSecret.

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

Property ReadAttributes.

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

Property RefreshTokenValidity.

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.

Property WriteAttributes.

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

Trait Implementations

impl Debug for UserPoolClientProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for UserPoolClientProperties
[src]

[src]

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

impl Serialize for UserPoolClientProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<UserPoolClientProperties> for UserPoolClient
[src]

[src]

Performs the conversion.

Auto Trait Implementations