Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

@aws-cdk/aws-cognito

Package Overview
Dependencies
Maintainers
4
Versions
288
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-cdk/aws-cognito - npm Package Compare versions

Comparing version 0.8.2 to 0.9.0

key.snk

260

lib/cognito.generated.d.ts

@@ -11,3 +11,3 @@ import cdk = require('@aws-cdk/cdk');

*/
allowUnauthenticatedIdentities: boolean | cdk.Token;
allowUnauthenticatedIdentities: boolean | cdk.CloudFormationToken;
/**

@@ -17,3 +17,3 @@ * ``AWS::Cognito::IdentityPool.CognitoEvents``

*/
cognitoEvents?: object | cdk.Token;
cognitoEvents?: object | cdk.CloudFormationToken;
/**

@@ -23,3 +23,3 @@ * ``AWS::Cognito::IdentityPool.CognitoIdentityProviders``

*/
cognitoIdentityProviders?: Array<IdentityPoolResource.CognitoIdentityProviderProperty | cdk.Token> | cdk.Token;
cognitoIdentityProviders?: Array<IdentityPoolResource.CognitoIdentityProviderProperty | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -29,3 +29,3 @@ * ``AWS::Cognito::IdentityPool.CognitoStreams``

*/
cognitoStreams?: IdentityPoolResource.CognitoStreamsProperty | cdk.Token;
cognitoStreams?: IdentityPoolResource.CognitoStreamsProperty | cdk.CloudFormationToken;
/**

@@ -35,3 +35,3 @@ * ``AWS::Cognito::IdentityPool.DeveloperProviderName``

*/
developerProviderName?: string | cdk.Token;
developerProviderName?: string | cdk.CloudFormationToken;
/**

@@ -41,3 +41,3 @@ * ``AWS::Cognito::IdentityPool.IdentityPoolName``

*/
identityPoolName?: string | cdk.Token;
identityPoolName?: string | cdk.CloudFormationToken;
/**

@@ -47,3 +47,3 @@ * ``AWS::Cognito::IdentityPool.OpenIdConnectProviderARNs``

*/
openIdConnectProviderArns?: Array<string | cdk.Token> | cdk.Token;
openIdConnectProviderArns?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -53,3 +53,3 @@ * ``AWS::Cognito::IdentityPool.PushSync``

*/
pushSync?: IdentityPoolResource.PushSyncProperty | cdk.Token;
pushSync?: IdentityPoolResource.PushSyncProperty | cdk.CloudFormationToken;
/**

@@ -59,3 +59,3 @@ * ``AWS::Cognito::IdentityPool.SamlProviderARNs``

*/
samlProviderArns?: Array<string | cdk.Token> | cdk.Token;
samlProviderArns?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -65,3 +65,3 @@ * ``AWS::Cognito::IdentityPool.SupportedLoginProviders``

*/
supportedLoginProviders?: object | cdk.Token;
supportedLoginProviders?: object | cdk.CloudFormationToken;
}

@@ -80,2 +80,3 @@ /**

readonly identityPoolName: IdentityPoolName;
readonly ref: IdentityPoolId;
/**

@@ -102,3 +103,3 @@ * Creates a new ``AWS::Cognito::IdentityPool``.

*/
clientId?: string | cdk.Token;
clientId?: string | cdk.CloudFormationToken;
/**

@@ -108,3 +109,3 @@ * ``IdentityPoolResource.CognitoIdentityProviderProperty.ProviderName``

*/
providerName?: string | cdk.Token;
providerName?: string | cdk.CloudFormationToken;
/**

@@ -114,3 +115,3 @@ * ``IdentityPoolResource.CognitoIdentityProviderProperty.ServerSideTokenCheck``

*/
serverSideTokenCheck?: boolean | cdk.Token;
serverSideTokenCheck?: boolean | cdk.CloudFormationToken;
}

@@ -127,3 +128,3 @@ }

*/
roleArn?: string | cdk.Token;
roleArn?: string | cdk.CloudFormationToken;
/**

@@ -133,3 +134,3 @@ * ``IdentityPoolResource.CognitoStreamsProperty.StreamName``

*/
streamName?: string | cdk.Token;
streamName?: string | cdk.CloudFormationToken;
/**

@@ -139,3 +140,3 @@ * ``IdentityPoolResource.CognitoStreamsProperty.StreamingStatus``

*/
streamingStatus?: string | cdk.Token;
streamingStatus?: string | cdk.CloudFormationToken;
}

@@ -152,3 +153,3 @@ }

*/
applicationArns?: Array<string | cdk.Token> | cdk.Token;
applicationArns?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -158,8 +159,12 @@ * ``IdentityPoolResource.PushSyncProperty.RoleArn``

*/
roleArn?: string | cdk.Token;
roleArn?: string | cdk.CloudFormationToken;
}
}
}
export declare class IdentityPoolName extends cdk.Token {
export declare class IdentityPoolName extends cdk.CloudFormationToken {
private readonly thisIsAIdentityPoolName;
}
export declare class IdentityPoolId extends cdk.CloudFormationToken {
private readonly thisIsAIdentityPoolId;
}
export declare namespace cloudformation {

@@ -174,3 +179,3 @@ /**

*/
identityPoolId: string | cdk.Token;
identityPoolId: string | cdk.CloudFormationToken;
/**

@@ -181,4 +186,4 @@ * ``AWS::Cognito::IdentityPoolRoleAttachment.RoleMappings``

roleMappings?: {
[key: string]: (IdentityPoolRoleAttachmentResource.RoleMappingProperty | cdk.Token);
} | cdk.Token;
[key: string]: (IdentityPoolRoleAttachmentResource.RoleMappingProperty | cdk.CloudFormationToken);
} | cdk.CloudFormationToken;
/**

@@ -188,3 +193,3 @@ * ``AWS::Cognito::IdentityPoolRoleAttachment.Roles``

*/
roles?: object | cdk.Token;
roles?: object | cdk.CloudFormationToken;
}

@@ -199,2 +204,3 @@ /**

static readonly resourceTypeName: string;
readonly ref: IdentityPoolRoleAttachmentId;
/**

@@ -221,3 +227,3 @@ * Creates a new ``AWS::Cognito::IdentityPoolRoleAttachment``.

*/
claim: string | cdk.Token;
claim: string | cdk.CloudFormationToken;
/**

@@ -227,3 +233,3 @@ * ``IdentityPoolRoleAttachmentResource.MappingRuleProperty.MatchType``

*/
matchType: string | cdk.Token;
matchType: string | cdk.CloudFormationToken;
/**

@@ -233,3 +239,3 @@ * ``IdentityPoolRoleAttachmentResource.MappingRuleProperty.RoleARN``

*/
roleArn: string | cdk.Token;
roleArn: string | cdk.CloudFormationToken;
/**

@@ -239,3 +245,3 @@ * ``IdentityPoolRoleAttachmentResource.MappingRuleProperty.Value``

*/
value: string | cdk.Token;
value: string | cdk.CloudFormationToken;
}

@@ -252,3 +258,3 @@ }

*/
ambiguousRoleResolution?: string | cdk.Token;
ambiguousRoleResolution?: string | cdk.CloudFormationToken;
/**

@@ -258,3 +264,3 @@ * ``IdentityPoolRoleAttachmentResource.RoleMappingProperty.RulesConfiguration``

*/
rulesConfiguration?: RulesConfigurationTypeProperty | cdk.Token;
rulesConfiguration?: RulesConfigurationTypeProperty | cdk.CloudFormationToken;
/**

@@ -264,3 +270,3 @@ * ``IdentityPoolRoleAttachmentResource.RoleMappingProperty.Type``

*/
type: string | cdk.Token;
type: string | cdk.CloudFormationToken;
}

@@ -277,6 +283,9 @@ }

*/
rules: Array<MappingRuleProperty | cdk.Token> | cdk.Token;
rules: Array<MappingRuleProperty | cdk.CloudFormationToken> | cdk.CloudFormationToken;
}
}
}
export declare class IdentityPoolRoleAttachmentId extends cdk.CloudFormationToken {
private readonly thisIsAIdentityPoolRoleAttachmentId;
}
export declare namespace cloudformation {

@@ -291,3 +300,3 @@ /**

*/
adminCreateUserConfig?: UserPoolResource.AdminCreateUserConfigProperty | cdk.Token;
adminCreateUserConfig?: UserPoolResource.AdminCreateUserConfigProperty | cdk.CloudFormationToken;
/**

@@ -297,3 +306,3 @@ * ``AWS::Cognito::UserPool.AliasAttributes``

*/
aliasAttributes?: Array<string | cdk.Token> | cdk.Token;
aliasAttributes?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -303,3 +312,3 @@ * ``AWS::Cognito::UserPool.AutoVerifiedAttributes``

*/
autoVerifiedAttributes?: Array<string | cdk.Token> | cdk.Token;
autoVerifiedAttributes?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -309,3 +318,3 @@ * ``AWS::Cognito::UserPool.DeviceConfiguration``

*/
deviceConfiguration?: UserPoolResource.DeviceConfigurationProperty | cdk.Token;
deviceConfiguration?: UserPoolResource.DeviceConfigurationProperty | cdk.CloudFormationToken;
/**

@@ -315,3 +324,3 @@ * ``AWS::Cognito::UserPool.EmailConfiguration``

*/
emailConfiguration?: UserPoolResource.EmailConfigurationProperty | cdk.Token;
emailConfiguration?: UserPoolResource.EmailConfigurationProperty | cdk.CloudFormationToken;
/**

@@ -321,3 +330,3 @@ * ``AWS::Cognito::UserPool.EmailVerificationMessage``

*/
emailVerificationMessage?: string | cdk.Token;
emailVerificationMessage?: string | cdk.CloudFormationToken;
/**

@@ -327,3 +336,3 @@ * ``AWS::Cognito::UserPool.EmailVerificationSubject``

*/
emailVerificationSubject?: string | cdk.Token;
emailVerificationSubject?: string | cdk.CloudFormationToken;
/**

@@ -333,3 +342,3 @@ * ``AWS::Cognito::UserPool.LambdaConfig``

*/
lambdaConfig?: UserPoolResource.LambdaConfigProperty | cdk.Token;
lambdaConfig?: UserPoolResource.LambdaConfigProperty | cdk.CloudFormationToken;
/**

@@ -339,3 +348,3 @@ * ``AWS::Cognito::UserPool.MfaConfiguration``

*/
mfaConfiguration?: string | cdk.Token;
mfaConfiguration?: string | cdk.CloudFormationToken;
/**

@@ -345,3 +354,3 @@ * ``AWS::Cognito::UserPool.Policies``

*/
policies?: UserPoolResource.PoliciesProperty | cdk.Token;
policies?: UserPoolResource.PoliciesProperty | cdk.CloudFormationToken;
/**

@@ -351,3 +360,3 @@ * ``AWS::Cognito::UserPool.Schema``

*/
schema?: Array<UserPoolResource.SchemaAttributeProperty | cdk.Token> | cdk.Token;
schema?: Array<UserPoolResource.SchemaAttributeProperty | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -357,3 +366,3 @@ * ``AWS::Cognito::UserPool.SmsAuthenticationMessage``

*/
smsAuthenticationMessage?: string | cdk.Token;
smsAuthenticationMessage?: string | cdk.CloudFormationToken;
/**

@@ -363,3 +372,3 @@ * ``AWS::Cognito::UserPool.SmsConfiguration``

*/
smsConfiguration?: UserPoolResource.SmsConfigurationProperty | cdk.Token;
smsConfiguration?: UserPoolResource.SmsConfigurationProperty | cdk.CloudFormationToken;
/**

@@ -369,3 +378,3 @@ * ``AWS::Cognito::UserPool.SmsVerificationMessage``

*/
smsVerificationMessage?: string | cdk.Token;
smsVerificationMessage?: string | cdk.CloudFormationToken;
/**

@@ -375,3 +384,3 @@ * ``AWS::Cognito::UserPool.UsernameAttributes``

*/
usernameAttributes?: Array<string | cdk.Token> | cdk.Token;
usernameAttributes?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -381,3 +390,3 @@ * ``AWS::Cognito::UserPool.UserPoolName``

*/
userPoolName?: string | cdk.Token;
userPoolName?: string | cdk.CloudFormationToken;
/**

@@ -387,3 +396,3 @@ * ``AWS::Cognito::UserPool.UserPoolTags``

*/
userPoolTags?: object | cdk.Token;
userPoolTags?: object | cdk.CloudFormationToken;
}

@@ -410,2 +419,3 @@ /**

readonly userPoolProviderUrl: UserPoolProviderUrl;
readonly ref: UserPoolId;
/**

@@ -432,3 +442,3 @@ * Creates a new ``AWS::Cognito::UserPool``.

*/
allowAdminCreateUserOnly?: boolean | cdk.Token;
allowAdminCreateUserOnly?: boolean | cdk.CloudFormationToken;
/**

@@ -438,3 +448,3 @@ * ``UserPoolResource.AdminCreateUserConfigProperty.InviteMessageTemplate``

*/
inviteMessageTemplate?: InviteMessageTemplateProperty | cdk.Token;
inviteMessageTemplate?: InviteMessageTemplateProperty | cdk.CloudFormationToken;
/**

@@ -444,3 +454,3 @@ * ``UserPoolResource.AdminCreateUserConfigProperty.UnusedAccountValidityDays``

*/
unusedAccountValidityDays?: number | cdk.Token;
unusedAccountValidityDays?: number | cdk.CloudFormationToken;
}

@@ -457,3 +467,3 @@ }

*/
challengeRequiredOnNewDevice?: boolean | cdk.Token;
challengeRequiredOnNewDevice?: boolean | cdk.CloudFormationToken;
/**

@@ -463,3 +473,3 @@ * ``UserPoolResource.DeviceConfigurationProperty.DeviceOnlyRememberedOnUserPrompt``

*/
deviceOnlyRememberedOnUserPrompt?: boolean | cdk.Token;
deviceOnlyRememberedOnUserPrompt?: boolean | cdk.CloudFormationToken;
}

@@ -476,3 +486,3 @@ }

*/
replyToEmailAddress?: string | cdk.Token;
replyToEmailAddress?: string | cdk.CloudFormationToken;
/**

@@ -482,3 +492,3 @@ * ``UserPoolResource.EmailConfigurationProperty.SourceArn``

*/
sourceArn?: string | cdk.Token;
sourceArn?: string | cdk.CloudFormationToken;
}

@@ -495,3 +505,3 @@ }

*/
emailMessage?: string | cdk.Token;
emailMessage?: string | cdk.CloudFormationToken;
/**

@@ -501,3 +511,3 @@ * ``UserPoolResource.InviteMessageTemplateProperty.EmailSubject``

*/
emailSubject?: string | cdk.Token;
emailSubject?: string | cdk.CloudFormationToken;
/**

@@ -507,3 +517,3 @@ * ``UserPoolResource.InviteMessageTemplateProperty.SMSMessage``

*/
smsMessage?: string | cdk.Token;
smsMessage?: string | cdk.CloudFormationToken;
}

@@ -520,3 +530,3 @@ }

*/
createAuthChallenge?: string | cdk.Token;
createAuthChallenge?: string | cdk.CloudFormationToken;
/**

@@ -526,3 +536,3 @@ * ``UserPoolResource.LambdaConfigProperty.CustomMessage``

*/
customMessage?: string | cdk.Token;
customMessage?: string | cdk.CloudFormationToken;
/**

@@ -532,3 +542,3 @@ * ``UserPoolResource.LambdaConfigProperty.DefineAuthChallenge``

*/
defineAuthChallenge?: string | cdk.Token;
defineAuthChallenge?: string | cdk.CloudFormationToken;
/**

@@ -538,3 +548,3 @@ * ``UserPoolResource.LambdaConfigProperty.PostAuthentication``

*/
postAuthentication?: string | cdk.Token;
postAuthentication?: string | cdk.CloudFormationToken;
/**

@@ -544,3 +554,3 @@ * ``UserPoolResource.LambdaConfigProperty.PostConfirmation``

*/
postConfirmation?: string | cdk.Token;
postConfirmation?: string | cdk.CloudFormationToken;
/**

@@ -550,3 +560,3 @@ * ``UserPoolResource.LambdaConfigProperty.PreAuthentication``

*/
preAuthentication?: string | cdk.Token;
preAuthentication?: string | cdk.CloudFormationToken;
/**

@@ -556,3 +566,3 @@ * ``UserPoolResource.LambdaConfigProperty.PreSignUp``

*/
preSignUp?: string | cdk.Token;
preSignUp?: string | cdk.CloudFormationToken;
/**

@@ -562,3 +572,3 @@ * ``UserPoolResource.LambdaConfigProperty.VerifyAuthChallengeResponse``

*/
verifyAuthChallengeResponse?: string | cdk.Token;
verifyAuthChallengeResponse?: string | cdk.CloudFormationToken;
}

@@ -575,3 +585,3 @@ }

*/
maxValue?: string | cdk.Token;
maxValue?: string | cdk.CloudFormationToken;
/**

@@ -581,3 +591,3 @@ * ``UserPoolResource.NumberAttributeConstraintsProperty.MinValue``

*/
minValue?: string | cdk.Token;
minValue?: string | cdk.CloudFormationToken;
}

@@ -594,3 +604,3 @@ }

*/
minimumLength?: number | cdk.Token;
minimumLength?: number | cdk.CloudFormationToken;
/**

@@ -600,3 +610,3 @@ * ``UserPoolResource.PasswordPolicyProperty.RequireLowercase``

*/
requireLowercase?: boolean | cdk.Token;
requireLowercase?: boolean | cdk.CloudFormationToken;
/**

@@ -606,3 +616,3 @@ * ``UserPoolResource.PasswordPolicyProperty.RequireNumbers``

*/
requireNumbers?: boolean | cdk.Token;
requireNumbers?: boolean | cdk.CloudFormationToken;
/**

@@ -612,3 +622,3 @@ * ``UserPoolResource.PasswordPolicyProperty.RequireSymbols``

*/
requireSymbols?: boolean | cdk.Token;
requireSymbols?: boolean | cdk.CloudFormationToken;
/**

@@ -618,3 +628,3 @@ * ``UserPoolResource.PasswordPolicyProperty.RequireUppercase``

*/
requireUppercase?: boolean | cdk.Token;
requireUppercase?: boolean | cdk.CloudFormationToken;
}

@@ -631,3 +641,3 @@ }

*/
passwordPolicy?: PasswordPolicyProperty | cdk.Token;
passwordPolicy?: PasswordPolicyProperty | cdk.CloudFormationToken;
}

@@ -644,3 +654,3 @@ }

*/
attributeDataType?: string | cdk.Token;
attributeDataType?: string | cdk.CloudFormationToken;
/**

@@ -650,3 +660,3 @@ * ``UserPoolResource.SchemaAttributeProperty.DeveloperOnlyAttribute``

*/
developerOnlyAttribute?: boolean | cdk.Token;
developerOnlyAttribute?: boolean | cdk.CloudFormationToken;
/**

@@ -656,3 +666,3 @@ * ``UserPoolResource.SchemaAttributeProperty.Mutable``

*/
mutable?: boolean | cdk.Token;
mutable?: boolean | cdk.CloudFormationToken;
/**

@@ -662,3 +672,3 @@ * ``UserPoolResource.SchemaAttributeProperty.Name``

*/
name?: string | cdk.Token;
name?: string | cdk.CloudFormationToken;
/**

@@ -668,3 +678,3 @@ * ``UserPoolResource.SchemaAttributeProperty.NumberAttributeConstraints``

*/
numberAttributeConstraints?: NumberAttributeConstraintsProperty | cdk.Token;
numberAttributeConstraints?: NumberAttributeConstraintsProperty | cdk.CloudFormationToken;
/**

@@ -674,3 +684,3 @@ * ``UserPoolResource.SchemaAttributeProperty.Required``

*/
required?: boolean | cdk.Token;
required?: boolean | cdk.CloudFormationToken;
/**

@@ -680,3 +690,3 @@ * ``UserPoolResource.SchemaAttributeProperty.StringAttributeConstraints``

*/
stringAttributeConstraints?: StringAttributeConstraintsProperty | cdk.Token;
stringAttributeConstraints?: StringAttributeConstraintsProperty | cdk.CloudFormationToken;
}

@@ -693,3 +703,3 @@ }

*/
externalId?: string | cdk.Token;
externalId?: string | cdk.CloudFormationToken;
/**

@@ -699,3 +709,3 @@ * ``UserPoolResource.SmsConfigurationProperty.SnsCallerArn``

*/
snsCallerArn?: string | cdk.Token;
snsCallerArn?: string | cdk.CloudFormationToken;
}

@@ -712,3 +722,3 @@ }

*/
maxLength?: string | cdk.Token;
maxLength?: string | cdk.CloudFormationToken;
/**

@@ -718,3 +728,3 @@ * ``UserPoolResource.StringAttributeConstraintsProperty.MinLength``

*/
minLength?: string | cdk.Token;
minLength?: string | cdk.CloudFormationToken;
}

@@ -724,7 +734,13 @@ }

export declare class UserPoolArn extends cdk.Arn {
private readonly thisIsAUserPoolArn;
}
export declare class UserPoolProviderName extends cdk.Token {
export declare class UserPoolProviderName extends cdk.CloudFormationToken {
private readonly thisIsAUserPoolProviderName;
}
export declare class UserPoolProviderUrl extends cdk.Token {
export declare class UserPoolProviderUrl extends cdk.CloudFormationToken {
private readonly thisIsAUserPoolProviderUrl;
}
export declare class UserPoolId extends cdk.CloudFormationToken {
private readonly thisIsAUserPoolId;
}
export declare namespace cloudformation {

@@ -739,3 +755,3 @@ /**

*/
userPoolId: string | cdk.Token;
userPoolId: string | cdk.CloudFormationToken;
/**

@@ -745,3 +761,3 @@ * ``AWS::Cognito::UserPoolClient.ClientName``

*/
clientName?: string | cdk.Token;
clientName?: string | cdk.CloudFormationToken;
/**

@@ -751,3 +767,3 @@ * ``AWS::Cognito::UserPoolClient.ExplicitAuthFlows``

*/
explicitAuthFlows?: Array<string | cdk.Token> | cdk.Token;
explicitAuthFlows?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -757,3 +773,3 @@ * ``AWS::Cognito::UserPoolClient.GenerateSecret``

*/
generateSecret?: boolean | cdk.Token;
generateSecret?: boolean | cdk.CloudFormationToken;
/**

@@ -763,3 +779,3 @@ * ``AWS::Cognito::UserPoolClient.ReadAttributes``

*/
readAttributes?: Array<string | cdk.Token> | cdk.Token;
readAttributes?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -769,3 +785,3 @@ * ``AWS::Cognito::UserPoolClient.RefreshTokenValidity``

*/
refreshTokenValidity?: number | cdk.Token;
refreshTokenValidity?: number | cdk.CloudFormationToken;
/**

@@ -775,3 +791,3 @@ * ``AWS::Cognito::UserPoolClient.WriteAttributes``

*/
writeAttributes?: Array<string | cdk.Token> | cdk.Token;
writeAttributes?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
}

@@ -794,2 +810,3 @@ /**

readonly userPoolClientName: UserPoolClientName;
readonly ref: UserPoolClientId;
/**

@@ -808,6 +825,11 @@ * Creates a new ``AWS::Cognito::UserPoolClient``.

}
export declare class UserPoolClientClientSecret extends cdk.Token {
export declare class UserPoolClientClientSecret extends cdk.CloudFormationToken {
private readonly thisIsAUserPoolClientClientSecret;
}
export declare class UserPoolClientName extends cdk.Token {
export declare class UserPoolClientName extends cdk.CloudFormationToken {
private readonly thisIsAUserPoolClientName;
}
export declare class UserPoolClientId extends cdk.CloudFormationToken {
private readonly thisIsAUserPoolClientId;
}
export declare namespace cloudformation {

@@ -822,3 +844,3 @@ /**

*/
userPoolId: string | cdk.Token;
userPoolId: string | cdk.CloudFormationToken;
/**

@@ -828,3 +850,3 @@ * ``AWS::Cognito::UserPoolGroup.Description``

*/
description?: string | cdk.Token;
description?: string | cdk.CloudFormationToken;
/**

@@ -834,3 +856,3 @@ * ``AWS::Cognito::UserPoolGroup.GroupName``

*/
groupName?: string | cdk.Token;
groupName?: string | cdk.CloudFormationToken;
/**

@@ -840,3 +862,3 @@ * ``AWS::Cognito::UserPoolGroup.Precedence``

*/
precedence?: number | cdk.Token;
precedence?: number | cdk.CloudFormationToken;
/**

@@ -846,3 +868,3 @@ * ``AWS::Cognito::UserPoolGroup.RoleArn``

*/
roleArn?: string | cdk.Token;
roleArn?: string | cdk.CloudFormationToken;
}

@@ -857,2 +879,3 @@ /**

static readonly resourceTypeName: string;
readonly ref: UserPoolGroupName;
/**

@@ -871,2 +894,5 @@ * Creates a new ``AWS::Cognito::UserPoolGroup``.

}
export declare class UserPoolGroupName extends cdk.CloudFormationToken {
private readonly thisIsAUserPoolGroupName;
}
export declare namespace cloudformation {

@@ -881,3 +907,3 @@ /**

*/
userPoolId: string | cdk.Token;
userPoolId: string | cdk.CloudFormationToken;
/**

@@ -887,3 +913,3 @@ * ``AWS::Cognito::UserPoolUser.DesiredDeliveryMediums``

*/
desiredDeliveryMediums?: Array<string | cdk.Token> | cdk.Token;
desiredDeliveryMediums?: Array<string | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -893,3 +919,3 @@ * ``AWS::Cognito::UserPoolUser.ForceAliasCreation``

*/
forceAliasCreation?: boolean | cdk.Token;
forceAliasCreation?: boolean | cdk.CloudFormationToken;
/**

@@ -899,3 +925,3 @@ * ``AWS::Cognito::UserPoolUser.MessageAction``

*/
messageAction?: string | cdk.Token;
messageAction?: string | cdk.CloudFormationToken;
/**

@@ -905,3 +931,3 @@ * ``AWS::Cognito::UserPoolUser.UserAttributes``

*/
userAttributes?: Array<UserPoolUserResource.AttributeTypeProperty | cdk.Token> | cdk.Token;
userAttributes?: Array<UserPoolUserResource.AttributeTypeProperty | cdk.CloudFormationToken> | cdk.CloudFormationToken;
/**

@@ -911,3 +937,3 @@ * ``AWS::Cognito::UserPoolUser.Username``

*/
username?: string | cdk.Token;
username?: string | cdk.CloudFormationToken;
/**

@@ -917,3 +943,3 @@ * ``AWS::Cognito::UserPoolUser.ValidationData``

*/
validationData?: Array<UserPoolUserResource.AttributeTypeProperty | cdk.Token> | cdk.Token;
validationData?: Array<UserPoolUserResource.AttributeTypeProperty | cdk.CloudFormationToken> | cdk.CloudFormationToken;
}

@@ -928,2 +954,3 @@ /**

static readonly resourceTypeName: string;
readonly ref: UserPoolUserName;
/**

@@ -950,3 +977,3 @@ * Creates a new ``AWS::Cognito::UserPoolUser``.

*/
name?: string | cdk.Token;
name?: string | cdk.CloudFormationToken;
/**

@@ -956,6 +983,9 @@ * ``UserPoolUserResource.AttributeTypeProperty.Value``

*/
value?: string | cdk.Token;
value?: string | cdk.CloudFormationToken;
}
}
}
export declare class UserPoolUserName extends cdk.CloudFormationToken {
private readonly thisIsAUserPoolUserName;
}
export declare namespace cloudformation {

@@ -970,3 +1000,3 @@ /**

*/
groupName: string | cdk.Token;
groupName: string | cdk.CloudFormationToken;
/**

@@ -976,3 +1006,3 @@ * ``AWS::Cognito::UserPoolUserToGroupAttachment.Username``

*/
username: string | cdk.Token;
username: string | cdk.CloudFormationToken;
/**

@@ -982,3 +1012,3 @@ * ``AWS::Cognito::UserPoolUserToGroupAttachment.UserPoolId``

*/
userPoolId: string | cdk.Token;
userPoolId: string | cdk.CloudFormationToken;
}

@@ -993,2 +1023,3 @@ /**

static readonly resourceTypeName: string;
readonly ref: UserPoolUserToGroupAttachmentId;
/**

@@ -1007,1 +1038,4 @@ * Creates a new ``AWS::Cognito::UserPoolUserToGroupAttachment``.

}
export declare class UserPoolUserToGroupAttachmentId extends cdk.CloudFormationToken {
private readonly thisIsAUserPoolUserToGroupAttachmentId;
}

@@ -8,2 +8,2 @@ "use strict";

__export(require("./cognito.generated"));
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHlDQUF5QztBQUN6Qyx5Q0FBb0MifQ==
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLHlDQUF5QztBQUN6Qyx5Q0FBb0MiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBBV1M6OkNvZ25pdG8gQ2xvdWRGb3JtYXRpb24gUmVzb3VyY2VzOlxuZXhwb3J0ICogZnJvbSAnLi9jb2duaXRvLmdlbmVyYXRlZCc7XG4iXX0=
{
"name": "@aws-cdk/aws-cognito",
"version": "0.8.2",
"version": "0.9.0",
"description": "The CDK Construct Library for AWS::Cognito",

@@ -17,2 +17,8 @@ "main": "lib/index.js",

},
"dotnet": {
"namespace": "Amazon.CDK.AWS.Cognito",
"packageId": "Amazon.CDK.AWS.Cognito",
"signAssembly": true,
"assemblyOriginatorKeyFile": "../../key.snk"
},
"sphinx": {}

@@ -50,11 +56,11 @@ }

"devDependencies": {
"@aws-cdk/assert": "^0.8.2",
"cdk-build-tools": "^0.8.2",
"cfn2ts": "^0.8.2",
"pkglint": "^0.8.2"
"@aws-cdk/assert": "^0.9.0",
"cdk-build-tools": "^0.9.0",
"cfn2ts": "^0.9.0",
"pkglint": "^0.9.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.8.2"
"@aws-cdk/cdk": "^0.9.0"
},
"homepage": "https://github.com/awslabs/aws-cdk"
}

@@ -10,2 +10,2 @@ "use strict";

});
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5jb2duaXRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsidGVzdC5jb2duaXRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsdUNBQTBDO0FBRTFDLE9BQU8sR0FBRyxtQkFBUSxDQUFDO0lBQ2YsU0FBUyxDQUFDLElBQVU7UUFDaEIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxJQUFJLEVBQUUsMENBQTBDLENBQUMsQ0FBQztRQUMxRCxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDaEIsQ0FBQztDQUNKLENBQUMsQ0FBQyJ9
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5jb2duaXRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsidGVzdC5jb2duaXRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsdUNBQTBDO0FBRTFDLE9BQU8sR0FBRyxtQkFBUSxDQUFDO0lBQ2YsU0FBUyxDQUFDLElBQVU7UUFDaEIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxJQUFJLEVBQUUsMENBQTBDLENBQUMsQ0FBQztRQUMxRCxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDaEIsQ0FBQztDQUNKLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFRlc3QsIHRlc3RDYXNlIH0gZnJvbSAnbm9kZXVuaXQnO1xuXG5leHBvcnRzID0gdGVzdENhc2Uoe1xuICAgIG5vdFRlc3RlZCh0ZXN0OiBUZXN0KSB7XG4gICAgICAgIHRlc3Qub2sodHJ1ZSwgJ05vIHRlc3RzIGFyZSBzcGVjaWZpZWQgZm9yIHRoaXMgcGFja2FnZS4nKTtcbiAgICAgICAgdGVzdC5kb25lKCk7XG4gICAgfVxufSk7XG4iXX0=
{
"compilerOptions": {
"target": "es2018",
"lib": [
"es2016",
"es2017.object",
"es2017.string"
],
"module": "commonjs",
"declaration": true,
"strict": true,
"strictPropertyInitialization": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"inlineSourceMap": true,
"experimentalDecorators": true,
"jsx": "react",
"jsxFactory": "jsx.create"
},
"_generated_by_jsii_": "generated by jsii - you can delete, and ideally add to your .gitignore"
"compilerOptions": {
"alwaysStrict": true,
"charset": "utf8",
"declaration": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"inlineSources": true,
"jsx": "react",
"jsxFactory": "jsx.create",
"lib": [
"es2016",
"es2017.object",
"es2017.string"
],
"module": "CommonJS",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"target": "ES2018"
},
"_generated_by_jsii_": "Generated by jsii - safe to delete, and ideally should be in .gitignore"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc