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

interface IdentityPoolTwitterLoginProvider ๐Ÿ”น

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

Login Provider for Identity Federation using Twitter 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
consumerKey๐Ÿ”นstringApp Id for Twitter Identity Federation.
consumerSecret๐Ÿ”นstringApp Secret for Twitter Identity Federation.

consumerKey๐Ÿ”น

Type: string

App Id for Twitter Identity Federation.


consumerSecret๐Ÿ”น

Type: string

App Secret for Twitter Identity Federation.