Skip to content

Commit

Permalink
feat(client-cognito-identity-provider): Add EXTERNAL_PROVIDER enum va…
Browse files Browse the repository at this point in the history
…lue to UserStatusType.
  • Loading branch information
awstools committed May 8, 2024
1 parent a05338f commit 0189ee3
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export interface AdminCreateUserCommandOutput extends AdminCreateUserResponse, _
* // UserCreateDate: new Date("TIMESTAMP"),
* // UserLastModifiedDate: new Date("TIMESTAMP"),
* // Enabled: true || false,
* // UserStatus: "UNCONFIRMED" || "CONFIRMED" || "ARCHIVED" || "COMPROMISED" || "UNKNOWN" || "RESET_REQUIRED" || "FORCE_CHANGE_PASSWORD",
* // UserStatus: "UNCONFIRMED" || "CONFIRMED" || "ARCHIVED" || "COMPROMISED" || "UNKNOWN" || "RESET_REQUIRED" || "FORCE_CHANGE_PASSWORD" || "EXTERNAL_PROVIDER",
* // MFAOptions: [ // MFAOptionListType
* // { // MFAOptionType
* // DeliveryMedium: "SMS" || "EMAIL",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export interface AdminGetUserCommandOutput extends AdminGetUserResponse, __Metad
* // UserCreateDate: new Date("TIMESTAMP"),
* // UserLastModifiedDate: new Date("TIMESTAMP"),
* // Enabled: true || false,
* // UserStatus: "UNCONFIRMED" || "CONFIRMED" || "ARCHIVED" || "COMPROMISED" || "UNKNOWN" || "RESET_REQUIRED" || "FORCE_CHANGE_PASSWORD",
* // UserStatus: "UNCONFIRMED" || "CONFIRMED" || "ARCHIVED" || "COMPROMISED" || "UNKNOWN" || "RESET_REQUIRED" || "FORCE_CHANGE_PASSWORD" || "EXTERNAL_PROVIDER",
* // MFAOptions: [ // MFAOptionListType
* // { // MFAOptionType
* // DeliveryMedium: "SMS" || "EMAIL",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
* // UserCreateDate: new Date("TIMESTAMP"),
* // UserLastModifiedDate: new Date("TIMESTAMP"),
* // Enabled: true || false,
* // UserStatus: "UNCONFIRMED" || "CONFIRMED" || "ARCHIVED" || "COMPROMISED" || "UNKNOWN" || "RESET_REQUIRED" || "FORCE_CHANGE_PASSWORD",
* // UserStatus: "UNCONFIRMED" || "CONFIRMED" || "ARCHIVED" || "COMPROMISED" || "UNKNOWN" || "RESET_REQUIRED" || "FORCE_CHANGE_PASSWORD" || "EXTERNAL_PROVIDER",
* // MFAOptions: [ // MFAOptionListType
* // { // MFAOptionType
* // DeliveryMedium: "SMS" || "EMAIL",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export interface ListUsersInGroupCommandOutput extends ListUsersInGroupResponse,
* // UserCreateDate: new Date("TIMESTAMP"),
* // UserLastModifiedDate: new Date("TIMESTAMP"),
* // Enabled: true || false,
* // UserStatus: "UNCONFIRMED" || "CONFIRMED" || "ARCHIVED" || "COMPROMISED" || "UNKNOWN" || "RESET_REQUIRED" || "FORCE_CHANGE_PASSWORD",
* // UserStatus: "UNCONFIRMED" || "CONFIRMED" || "ARCHIVED" || "COMPROMISED" || "UNKNOWN" || "RESET_REQUIRED" || "FORCE_CHANGE_PASSWORD" || "EXTERNAL_PROVIDER",
* // MFAOptions: [ // MFAOptionListType
* // { // MFAOptionType
* // DeliveryMedium: "SMS" || "EMAIL",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -967,6 +967,7 @@ export const UserStatusType = {
ARCHIVED: "ARCHIVED",
COMPROMISED: "COMPROMISED",
CONFIRMED: "CONFIRMED",
EXTERNAL_PROVIDER: "EXTERNAL_PROVIDER",
FORCE_CHANGE_PASSWORD: "FORCE_CHANGE_PASSWORD",
RESET_REQUIRED: "RESET_REQUIRED",
UNCONFIRMED: "UNCONFIRMED",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
"sdkId": "Cognito Identity Provider",
"arnNamespace": "cognito-idp",
"cloudFormationName": "Cognito",
"cloudTrailEventSource": "cognitoidentityprovider.amazonaws.com",
"cloudTrailEventSource": "cognito-idp.amazonaws.com",
"docId": "cognito-idp-2016-04-18",
"endpointPrefix": "cognito-idp"
},
Expand Down Expand Up @@ -15641,6 +15641,12 @@
"traits": {
"smithy.api#enumValue": "FORCE_CHANGE_PASSWORD"
}
},
"EXTERNAL_PROVIDER": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "EXTERNAL_PROVIDER"
}
}
}
},
Expand Down

0 comments on commit 0189ee3

Please sign in to comment.