@aws-cdk_aws-cognito-identitypool-alpha.IdentityPoolGoogleLoginProvider

interface IdentityPoolGoogleLoginProvider 🔹

LanguageType name
.NETAmazon.CDK.AWS.Cognito.IdentityPool.Alpha.IdentityPoolGoogleLoginProvider
Gogithub.com/aws/aws-cdk-go/awscdkcognitoidentitypoolalpha/v2#IdentityPoolGoogleLoginProvider
Javasoftware.amazon.awscdk.services.cognito.identitypool.alpha.IdentityPoolGoogleLoginProvider
Pythonaws_cdk.aws_cognito_identitypool_alpha.IdentityPoolGoogleLoginProvider
TypeScript (source)@aws-cdk/aws-cognito-identitypool-alpha » IdentityPoolGoogleLoginProvider

Login Provider for Identity Federation using Google Credentials.

Example

new IdentityPool(this, 'myidentitypool', {
  identityPoolName: 'myidentitypool',
  authenticationProviders: {
    amazon: {
      appId: 'amzn1.application.12312k3j234j13rjiwuenf',
    },
    facebook: {
      appId: '1234567890123',
    },
    google: {
      clientId: '12345678012.apps.googleusercontent.com',
    },
    apple: {
      servicesId: 'com.myappleapp.auth',
    },
    twitter: {
      consumerKey: 'my-twitter-id',
      consumerSecret: 'my-twitter-secret',
    },
  },
});

Properties

NameTypeDescription
clientId🔹stringApp Id for Google Identity Federation.

clientId🔹

Type: string

App Id for Google Identity Federation.