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

pub struct IdentityPoolProperties {
    pub allow_unauthenticated_identities: Value<bool>,
    pub cognito_events: Option<Value<Value>>,
    pub cognito_identity_providers: Option<ValueList<CognitoIdentityProvider>>,
    pub cognito_streams: Option<Value<CognitoStreams>>,
    pub developer_provider_name: Option<Value<String>>,
    pub identity_pool_name: Option<Value<String>>,
    pub open_id_connect_provider_ar_ns: Option<ValueList<String>>,
    pub push_sync: Option<Value<PushSync>>,
    pub saml_provider_ar_ns: Option<ValueList<String>>,
    pub supported_login_providers: Option<Value<Value>>,
}

Properties for the IdentityPool resource.

Fields

Property AllowUnauthenticatedIdentities.

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

Property CognitoEvents.

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

Property CognitoIdentityProviders.

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

Property CognitoStreams.

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

Property DeveloperProviderName.

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

Property IdentityPoolName.

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

Property OpenIdConnectProviderARNs.

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

Property PushSync.

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

Property SamlProviderARNs.

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

Property SupportedLoginProviders.

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

Trait Implementations

impl Debug for IdentityPoolProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for IdentityPoolProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<IdentityPoolProperties> for IdentityPool
[src]

[src]

Performs the conversion.

Auto Trait Implementations