@aws-sdk/client-cognito-identity 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -22,12 +22,12 @@ export interface CognitoIdentityProvider {
|
|
|
22
22
|
* <code>cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789</code>.</p>
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
ProviderName?: string;
|
|
25
|
+
ProviderName?: string | undefined;
|
|
26
26
|
/**
|
|
27
27
|
* <p>The client ID for the Amazon Cognito user pool.</p>
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
ClientId?: string;
|
|
30
|
+
ClientId?: string | undefined;
|
|
31
31
|
/**
|
|
32
32
|
* <p>TRUE if server-side token validation is enabled for the identity provider’s
|
|
33
33
|
* token.</p>
|
|
@@ -39,7 +39,7 @@ export interface CognitoIdentityProvider {
|
|
|
39
39
|
* Authorized error.</p>
|
|
40
40
|
* @public
|
|
41
41
|
*/
|
|
42
|
-
ServerSideTokenCheck?: boolean;
|
|
42
|
+
ServerSideTokenCheck?: boolean | undefined;
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
* <p>Input to the CreateIdentityPool action.</p>
|
|
@@ -61,12 +61,12 @@ export interface CreateIdentityPoolInput {
|
|
|
61
61
|
* <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/authentication-flow.html">Identity Pools (Federated Identities) Authentication Flow</a> in the <i>Amazon Cognito Developer Guide</i>.</p>
|
|
62
62
|
* @public
|
|
63
63
|
*/
|
|
64
|
-
AllowClassicFlow?: boolean;
|
|
64
|
+
AllowClassicFlow?: boolean | undefined;
|
|
65
65
|
/**
|
|
66
66
|
* <p>Optional key:value pairs mapping provider names to provider app IDs.</p>
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
|
-
SupportedLoginProviders?: Record<string, string
|
|
69
|
+
SupportedLoginProviders?: Record<string, string> | undefined;
|
|
70
70
|
/**
|
|
71
71
|
* <p>The "domain" by which Cognito will refer to your users. This name acts as a
|
|
72
72
|
* placeholder that allows your backend and the Cognito service to communicate about the
|
|
@@ -77,30 +77,30 @@ export interface CreateIdentityPoolInput {
|
|
|
77
77
|
* in setting this parameter.</p>
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
|
-
DeveloperProviderName?: string;
|
|
80
|
+
DeveloperProviderName?: string | undefined;
|
|
81
81
|
/**
|
|
82
82
|
* <p>The Amazon Resource Names (ARN) of the OpenID Connect providers.</p>
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
|
-
OpenIdConnectProviderARNs?: string[];
|
|
85
|
+
OpenIdConnectProviderARNs?: string[] | undefined;
|
|
86
86
|
/**
|
|
87
87
|
* <p>An array of Amazon Cognito user pools and their client IDs.</p>
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
|
-
CognitoIdentityProviders?: CognitoIdentityProvider[];
|
|
90
|
+
CognitoIdentityProviders?: CognitoIdentityProvider[] | undefined;
|
|
91
91
|
/**
|
|
92
92
|
* <p>An array of Amazon Resource Names (ARNs) of the SAML provider for your identity
|
|
93
93
|
* pool.</p>
|
|
94
94
|
* @public
|
|
95
95
|
*/
|
|
96
|
-
SamlProviderARNs?: string[];
|
|
96
|
+
SamlProviderARNs?: string[] | undefined;
|
|
97
97
|
/**
|
|
98
98
|
* <p>Tags to assign to the identity pool. A tag is a label that you can apply to identity
|
|
99
99
|
* pools to categorize and manage them in different ways, such as by purpose, owner,
|
|
100
100
|
* environment, or other criteria.</p>
|
|
101
101
|
* @public
|
|
102
102
|
*/
|
|
103
|
-
IdentityPoolTags?: Record<string, string
|
|
103
|
+
IdentityPoolTags?: Record<string, string> | undefined;
|
|
104
104
|
}
|
|
105
105
|
/**
|
|
106
106
|
* <p>An object representing an Amazon Cognito identity pool.</p>
|
|
@@ -127,40 +127,40 @@ export interface IdentityPool {
|
|
|
127
127
|
* <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/authentication-flow.html">Identity Pools (Federated Identities) Authentication Flow</a> in the <i>Amazon Cognito Developer Guide</i>.</p>
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
AllowClassicFlow?: boolean;
|
|
130
|
+
AllowClassicFlow?: boolean | undefined;
|
|
131
131
|
/**
|
|
132
132
|
* <p>Optional key:value pairs mapping provider names to provider app IDs.</p>
|
|
133
133
|
* @public
|
|
134
134
|
*/
|
|
135
|
-
SupportedLoginProviders?: Record<string, string
|
|
135
|
+
SupportedLoginProviders?: Record<string, string> | undefined;
|
|
136
136
|
/**
|
|
137
137
|
* <p>The "domain" by which Cognito will refer to your users.</p>
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
DeveloperProviderName?: string;
|
|
140
|
+
DeveloperProviderName?: string | undefined;
|
|
141
141
|
/**
|
|
142
142
|
* <p>The ARNs of the OpenID Connect providers.</p>
|
|
143
143
|
* @public
|
|
144
144
|
*/
|
|
145
|
-
OpenIdConnectProviderARNs?: string[];
|
|
145
|
+
OpenIdConnectProviderARNs?: string[] | undefined;
|
|
146
146
|
/**
|
|
147
147
|
* <p>A list representing an Amazon Cognito user pool and its client ID.</p>
|
|
148
148
|
* @public
|
|
149
149
|
*/
|
|
150
|
-
CognitoIdentityProviders?: CognitoIdentityProvider[];
|
|
150
|
+
CognitoIdentityProviders?: CognitoIdentityProvider[] | undefined;
|
|
151
151
|
/**
|
|
152
152
|
* <p>An array of Amazon Resource Names (ARNs) of the SAML provider for your identity
|
|
153
153
|
* pool.</p>
|
|
154
154
|
* @public
|
|
155
155
|
*/
|
|
156
|
-
SamlProviderARNs?: string[];
|
|
156
|
+
SamlProviderARNs?: string[] | undefined;
|
|
157
157
|
/**
|
|
158
158
|
* <p>The tags that are assigned to the identity pool. A tag is a label that you can apply to
|
|
159
159
|
* identity pools to categorize and manage them in different ways, such as by purpose, owner,
|
|
160
160
|
* environment, or other criteria.</p>
|
|
161
161
|
* @public
|
|
162
162
|
*/
|
|
163
|
-
IdentityPoolTags?: Record<string, string
|
|
163
|
+
IdentityPoolTags?: Record<string, string> | undefined;
|
|
164
164
|
}
|
|
165
165
|
/**
|
|
166
166
|
* <p>Thrown when the service encounters an error during processing the request.</p>
|
|
@@ -268,12 +268,12 @@ export interface UnprocessedIdentityId {
|
|
|
268
268
|
* <p>A unique identifier in the format REGION:GUID.</p>
|
|
269
269
|
* @public
|
|
270
270
|
*/
|
|
271
|
-
IdentityId?: string;
|
|
271
|
+
IdentityId?: string | undefined;
|
|
272
272
|
/**
|
|
273
273
|
* <p>The error code indicating the type of error that occurred.</p>
|
|
274
274
|
* @public
|
|
275
275
|
*/
|
|
276
|
-
ErrorCode?: ErrorCode;
|
|
276
|
+
ErrorCode?: ErrorCode | undefined;
|
|
277
277
|
}
|
|
278
278
|
/**
|
|
279
279
|
* <p>Returned in response to a successful <code>DeleteIdentities</code>
|
|
@@ -286,7 +286,7 @@ export interface DeleteIdentitiesResponse {
|
|
|
286
286
|
* IdentityId.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
UnprocessedIdentityIds?: UnprocessedIdentityId[];
|
|
289
|
+
UnprocessedIdentityIds?: UnprocessedIdentityId[] | undefined;
|
|
290
290
|
}
|
|
291
291
|
/**
|
|
292
292
|
* <p>Input to the DeleteIdentityPool action.</p>
|
|
@@ -332,22 +332,22 @@ export interface IdentityDescription {
|
|
|
332
332
|
* <p>A unique identifier in the format REGION:GUID.</p>
|
|
333
333
|
* @public
|
|
334
334
|
*/
|
|
335
|
-
IdentityId?: string;
|
|
335
|
+
IdentityId?: string | undefined;
|
|
336
336
|
/**
|
|
337
337
|
* <p>The provider names.</p>
|
|
338
338
|
* @public
|
|
339
339
|
*/
|
|
340
|
-
Logins?: string[];
|
|
340
|
+
Logins?: string[] | undefined;
|
|
341
341
|
/**
|
|
342
342
|
* <p>Date on which the identity was created.</p>
|
|
343
343
|
* @public
|
|
344
344
|
*/
|
|
345
|
-
CreationDate?: Date;
|
|
345
|
+
CreationDate?: Date | undefined;
|
|
346
346
|
/**
|
|
347
347
|
* <p>Date on which the identity was last modified.</p>
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
|
-
LastModifiedDate?: Date;
|
|
350
|
+
LastModifiedDate?: Date | undefined;
|
|
351
351
|
}
|
|
352
352
|
/**
|
|
353
353
|
* <p>Input to the DescribeIdentityPool action.</p>
|
|
@@ -395,7 +395,7 @@ export interface GetCredentialsForIdentityInput {
|
|
|
395
395
|
* Guide.</p>
|
|
396
396
|
* @public
|
|
397
397
|
*/
|
|
398
|
-
Logins?: Record<string, string
|
|
398
|
+
Logins?: Record<string, string> | undefined;
|
|
399
399
|
/**
|
|
400
400
|
* <p>The Amazon Resource Name (ARN) of the role to be assumed when multiple roles were
|
|
401
401
|
* received in the token from the identity provider. For example, a SAML-based identity
|
|
@@ -403,7 +403,7 @@ export interface GetCredentialsForIdentityInput {
|
|
|
403
403
|
* customization.</p>
|
|
404
404
|
* @public
|
|
405
405
|
*/
|
|
406
|
-
CustomRoleArn?: string;
|
|
406
|
+
CustomRoleArn?: string | undefined;
|
|
407
407
|
}
|
|
408
408
|
/**
|
|
409
409
|
* <p>Credentials for the provided identity ID.</p>
|
|
@@ -414,22 +414,22 @@ export interface Credentials {
|
|
|
414
414
|
* <p>The Access Key portion of the credentials.</p>
|
|
415
415
|
* @public
|
|
416
416
|
*/
|
|
417
|
-
AccessKeyId?: string;
|
|
417
|
+
AccessKeyId?: string | undefined;
|
|
418
418
|
/**
|
|
419
419
|
* <p>The Secret Access Key portion of the credentials</p>
|
|
420
420
|
* @public
|
|
421
421
|
*/
|
|
422
|
-
SecretKey?: string;
|
|
422
|
+
SecretKey?: string | undefined;
|
|
423
423
|
/**
|
|
424
424
|
* <p>The Session Token portion of the credentials</p>
|
|
425
425
|
* @public
|
|
426
426
|
*/
|
|
427
|
-
SessionToken?: string;
|
|
427
|
+
SessionToken?: string | undefined;
|
|
428
428
|
/**
|
|
429
429
|
* <p>The date at which these credentials will expire.</p>
|
|
430
430
|
* @public
|
|
431
431
|
*/
|
|
432
|
-
Expiration?: Date;
|
|
432
|
+
Expiration?: Date | undefined;
|
|
433
433
|
}
|
|
434
434
|
/**
|
|
435
435
|
* <p>Returned in response to a successful <code>GetCredentialsForIdentity</code>
|
|
@@ -441,12 +441,12 @@ export interface GetCredentialsForIdentityResponse {
|
|
|
441
441
|
* <p>A unique identifier in the format REGION:GUID.</p>
|
|
442
442
|
* @public
|
|
443
443
|
*/
|
|
444
|
-
IdentityId?: string;
|
|
444
|
+
IdentityId?: string | undefined;
|
|
445
445
|
/**
|
|
446
446
|
* <p>Credentials for the provided identity ID.</p>
|
|
447
447
|
* @public
|
|
448
448
|
*/
|
|
449
|
-
Credentials?: Credentials;
|
|
449
|
+
Credentials?: Credentials | undefined;
|
|
450
450
|
}
|
|
451
451
|
/**
|
|
452
452
|
* <p>Thrown if the identity pool has no role associated for the given auth type
|
|
@@ -470,7 +470,7 @@ export interface GetIdInput {
|
|
|
470
470
|
* <p>A standard AWS account ID (9+ digits).</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
AccountId?: string;
|
|
473
|
+
AccountId?: string | undefined;
|
|
474
474
|
/**
|
|
475
475
|
* <p>An identity pool ID in the format REGION:GUID.</p>
|
|
476
476
|
* @public
|
|
@@ -509,7 +509,7 @@ export interface GetIdInput {
|
|
|
509
509
|
* </ul>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
Logins?: Record<string, string
|
|
512
|
+
Logins?: Record<string, string> | undefined;
|
|
513
513
|
}
|
|
514
514
|
/**
|
|
515
515
|
* <p>Returned in response to a GetId request.</p>
|
|
@@ -520,7 +520,7 @@ export interface GetIdResponse {
|
|
|
520
520
|
* <p>A unique identifier in the format REGION:GUID.</p>
|
|
521
521
|
* @public
|
|
522
522
|
*/
|
|
523
|
-
IdentityId?: string;
|
|
523
|
+
IdentityId?: string | undefined;
|
|
524
524
|
}
|
|
525
525
|
/**
|
|
526
526
|
* <p>Input to the <code>GetIdentityPoolRoles</code> action.</p>
|
|
@@ -622,14 +622,14 @@ export interface RoleMapping {
|
|
|
622
622
|
* type.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
AmbiguousRoleResolution?: AmbiguousRoleResolutionType;
|
|
625
|
+
AmbiguousRoleResolution?: AmbiguousRoleResolutionType | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* <p>The rules to be used for mapping users to roles.</p>
|
|
628
628
|
* <p>If you specify Rules as the role mapping type, <code>RulesConfiguration</code> is
|
|
629
629
|
* required.</p>
|
|
630
630
|
* @public
|
|
631
631
|
*/
|
|
632
|
-
RulesConfiguration?: RulesConfigurationType;
|
|
632
|
+
RulesConfiguration?: RulesConfigurationType | undefined;
|
|
633
633
|
}
|
|
634
634
|
/**
|
|
635
635
|
* <p>Returned in response to a successful <code>GetIdentityPoolRoles</code>
|
|
@@ -641,13 +641,13 @@ export interface GetIdentityPoolRolesResponse {
|
|
|
641
641
|
* <p>An identity pool ID in the format REGION:GUID.</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
IdentityPoolId?: string;
|
|
644
|
+
IdentityPoolId?: string | undefined;
|
|
645
645
|
/**
|
|
646
646
|
* <p>The map of roles associated with this pool. Currently only authenticated and
|
|
647
647
|
* unauthenticated roles are supported.</p>
|
|
648
648
|
* @public
|
|
649
649
|
*/
|
|
650
|
-
Roles?: Record<string, string
|
|
650
|
+
Roles?: Record<string, string> | undefined;
|
|
651
651
|
/**
|
|
652
652
|
* <p>How users for a specific identity provider are to mapped to roles. This is a
|
|
653
653
|
* String-to-<a>RoleMapping</a> object map. The string identifies the identity
|
|
@@ -655,7 +655,7 @@ export interface GetIdentityPoolRolesResponse {
|
|
|
655
655
|
* "cognito-idp.us-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id".</p>
|
|
656
656
|
* @public
|
|
657
657
|
*/
|
|
658
|
-
RoleMappings?: Record<string, RoleMapping
|
|
658
|
+
RoleMappings?: Record<string, RoleMapping> | undefined;
|
|
659
659
|
}
|
|
660
660
|
/**
|
|
661
661
|
* <p>Input to the GetOpenIdToken action.</p>
|
|
@@ -674,7 +674,7 @@ export interface GetOpenIdTokenInput {
|
|
|
674
674
|
* other OpenID Connect provider, always include the <code>id_token</code>.</p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
Logins?: Record<string, string
|
|
677
|
+
Logins?: Record<string, string> | undefined;
|
|
678
678
|
}
|
|
679
679
|
/**
|
|
680
680
|
* <p>Returned in response to a successful GetOpenIdToken request.</p>
|
|
@@ -686,12 +686,12 @@ export interface GetOpenIdTokenResponse {
|
|
|
686
686
|
* not match the one passed on input.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
IdentityId?: string;
|
|
689
|
+
IdentityId?: string | undefined;
|
|
690
690
|
/**
|
|
691
691
|
* <p>An OpenID token, valid for 10 minutes.</p>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
Token?: string;
|
|
694
|
+
Token?: string | undefined;
|
|
695
695
|
}
|
|
696
696
|
/**
|
|
697
697
|
* <p>The provided developer user identifier is already registered with Cognito under a
|
|
@@ -720,7 +720,7 @@ export interface GetOpenIdTokenForDeveloperIdentityInput {
|
|
|
720
720
|
* <p>A unique identifier in the format REGION:GUID.</p>
|
|
721
721
|
* @public
|
|
722
722
|
*/
|
|
723
|
-
IdentityId?: string;
|
|
723
|
+
IdentityId?: string | undefined;
|
|
724
724
|
/**
|
|
725
725
|
* <p>A set of optional name-value pairs that map provider names to provider tokens. Each
|
|
726
726
|
* name-value pair represents a user from a public provider or developer provider. If the user
|
|
@@ -737,7 +737,7 @@ export interface GetOpenIdTokenForDeveloperIdentityInput {
|
|
|
737
737
|
* <p>Use this operation to configure attribute mappings for custom providers. </p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
PrincipalTags?: Record<string, string
|
|
740
|
+
PrincipalTags?: Record<string, string> | undefined;
|
|
741
741
|
/**
|
|
742
742
|
* <p>The expiration time of the token, in seconds. You can specify a custom expiration
|
|
743
743
|
* time for the token so that you can cache it. If you don't provide an expiration time, the
|
|
@@ -751,7 +751,7 @@ export interface GetOpenIdTokenForDeveloperIdentityInput {
|
|
|
751
751
|
* </note>
|
|
752
752
|
* @public
|
|
753
753
|
*/
|
|
754
|
-
TokenDuration?: number;
|
|
754
|
+
TokenDuration?: number | undefined;
|
|
755
755
|
}
|
|
756
756
|
/**
|
|
757
757
|
* <p>Returned in response to a successful <code>GetOpenIdTokenForDeveloperIdentity</code>
|
|
@@ -763,12 +763,12 @@ export interface GetOpenIdTokenForDeveloperIdentityResponse {
|
|
|
763
763
|
* <p>A unique identifier in the format REGION:GUID.</p>
|
|
764
764
|
* @public
|
|
765
765
|
*/
|
|
766
|
-
IdentityId?: string;
|
|
766
|
+
IdentityId?: string | undefined;
|
|
767
767
|
/**
|
|
768
768
|
* <p>An OpenID token.</p>
|
|
769
769
|
* @public
|
|
770
770
|
*/
|
|
771
|
-
Token?: string;
|
|
771
|
+
Token?: string | undefined;
|
|
772
772
|
}
|
|
773
773
|
/**
|
|
774
774
|
* @public
|
|
@@ -793,22 +793,22 @@ export interface GetPrincipalTagAttributeMapResponse {
|
|
|
793
793
|
* <p>You can use this operation to get the ID of the Identity Pool you setup attribute mappings for.</p>
|
|
794
794
|
* @public
|
|
795
795
|
*/
|
|
796
|
-
IdentityPoolId?: string;
|
|
796
|
+
IdentityPoolId?: string | undefined;
|
|
797
797
|
/**
|
|
798
798
|
* <p>You can use this operation to get the provider name.</p>
|
|
799
799
|
* @public
|
|
800
800
|
*/
|
|
801
|
-
IdentityProviderName?: string;
|
|
801
|
+
IdentityProviderName?: string | undefined;
|
|
802
802
|
/**
|
|
803
803
|
* <p>You can use this operation to list </p>
|
|
804
804
|
* @public
|
|
805
805
|
*/
|
|
806
|
-
UseDefaults?: boolean;
|
|
806
|
+
UseDefaults?: boolean | undefined;
|
|
807
807
|
/**
|
|
808
808
|
* <p>You can use this operation to add principal tags. The <code>PrincipalTags</code>operation enables you to reference user attributes in your IAM permissions policy.</p>
|
|
809
809
|
* @public
|
|
810
810
|
*/
|
|
811
|
-
PrincipalTags?: Record<string, string
|
|
811
|
+
PrincipalTags?: Record<string, string> | undefined;
|
|
812
812
|
}
|
|
813
813
|
/**
|
|
814
814
|
* <p>Input to the ListIdentities action.</p>
|
|
@@ -829,13 +829,13 @@ export interface ListIdentitiesInput {
|
|
|
829
829
|
* <p>A pagination token.</p>
|
|
830
830
|
* @public
|
|
831
831
|
*/
|
|
832
|
-
NextToken?: string;
|
|
832
|
+
NextToken?: string | undefined;
|
|
833
833
|
/**
|
|
834
834
|
* <p>An optional boolean parameter that allows you to hide disabled identities. If
|
|
835
835
|
* omitted, the ListIdentities API will include disabled identities in the response.</p>
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
HideDisabled?: boolean;
|
|
838
|
+
HideDisabled?: boolean | undefined;
|
|
839
839
|
}
|
|
840
840
|
/**
|
|
841
841
|
* <p>The response to a ListIdentities request.</p>
|
|
@@ -846,17 +846,17 @@ export interface ListIdentitiesResponse {
|
|
|
846
846
|
* <p>An identity pool ID in the format REGION:GUID.</p>
|
|
847
847
|
* @public
|
|
848
848
|
*/
|
|
849
|
-
IdentityPoolId?: string;
|
|
849
|
+
IdentityPoolId?: string | undefined;
|
|
850
850
|
/**
|
|
851
851
|
* <p>An object containing a set of identities and associated mappings.</p>
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
Identities?: IdentityDescription[];
|
|
854
|
+
Identities?: IdentityDescription[] | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* <p>A pagination token.</p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
NextToken?: string;
|
|
859
|
+
NextToken?: string | undefined;
|
|
860
860
|
}
|
|
861
861
|
/**
|
|
862
862
|
* <p>Input to the ListIdentityPools action.</p>
|
|
@@ -872,7 +872,7 @@ export interface ListIdentityPoolsInput {
|
|
|
872
872
|
* <p>A pagination token.</p>
|
|
873
873
|
* @public
|
|
874
874
|
*/
|
|
875
|
-
NextToken?: string;
|
|
875
|
+
NextToken?: string | undefined;
|
|
876
876
|
}
|
|
877
877
|
/**
|
|
878
878
|
* <p>A description of the identity pool.</p>
|
|
@@ -883,12 +883,12 @@ export interface IdentityPoolShortDescription {
|
|
|
883
883
|
* <p>An identity pool ID in the format REGION:GUID.</p>
|
|
884
884
|
* @public
|
|
885
885
|
*/
|
|
886
|
-
IdentityPoolId?: string;
|
|
886
|
+
IdentityPoolId?: string | undefined;
|
|
887
887
|
/**
|
|
888
888
|
* <p>A string that you provide.</p>
|
|
889
889
|
* @public
|
|
890
890
|
*/
|
|
891
|
-
IdentityPoolName?: string;
|
|
891
|
+
IdentityPoolName?: string | undefined;
|
|
892
892
|
}
|
|
893
893
|
/**
|
|
894
894
|
* <p>The result of a successful ListIdentityPools action.</p>
|
|
@@ -899,12 +899,12 @@ export interface ListIdentityPoolsResponse {
|
|
|
899
899
|
* <p>The identity pools returned by the ListIdentityPools action.</p>
|
|
900
900
|
* @public
|
|
901
901
|
*/
|
|
902
|
-
IdentityPools?: IdentityPoolShortDescription[];
|
|
902
|
+
IdentityPools?: IdentityPoolShortDescription[] | undefined;
|
|
903
903
|
/**
|
|
904
904
|
* <p>A pagination token.</p>
|
|
905
905
|
* @public
|
|
906
906
|
*/
|
|
907
|
-
NextToken?: string;
|
|
907
|
+
NextToken?: string | undefined;
|
|
908
908
|
}
|
|
909
909
|
/**
|
|
910
910
|
* @public
|
|
@@ -925,7 +925,7 @@ export interface ListTagsForResourceResponse {
|
|
|
925
925
|
* <p>The tags that are assigned to the identity pool.</p>
|
|
926
926
|
* @public
|
|
927
927
|
*/
|
|
928
|
-
Tags?: Record<string, string
|
|
928
|
+
Tags?: Record<string, string> | undefined;
|
|
929
929
|
}
|
|
930
930
|
/**
|
|
931
931
|
* <p>Input to the <code>LookupDeveloperIdentityInput</code> action.</p>
|
|
@@ -941,19 +941,19 @@ export interface LookupDeveloperIdentityInput {
|
|
|
941
941
|
* <p>A unique identifier in the format REGION:GUID.</p>
|
|
942
942
|
* @public
|
|
943
943
|
*/
|
|
944
|
-
IdentityId?: string;
|
|
944
|
+
IdentityId?: string | undefined;
|
|
945
945
|
/**
|
|
946
946
|
* <p>A unique ID used by your backend authentication process to identify a user.
|
|
947
947
|
* Typically, a developer identity provider would issue many developer user identifiers, in
|
|
948
948
|
* keeping with the number of users.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
DeveloperUserIdentifier?: string;
|
|
951
|
+
DeveloperUserIdentifier?: string | undefined;
|
|
952
952
|
/**
|
|
953
953
|
* <p>The maximum number of identities to return.</p>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
MaxResults?: number;
|
|
956
|
+
MaxResults?: number | undefined;
|
|
957
957
|
/**
|
|
958
958
|
* <p>A pagination token. The first call you make will have <code>NextToken</code> set to
|
|
959
959
|
* null. After that the service will return <code>NextToken</code> values as needed. For
|
|
@@ -963,7 +963,7 @@ export interface LookupDeveloperIdentityInput {
|
|
|
963
963
|
* 11th match.</p>
|
|
964
964
|
* @public
|
|
965
965
|
*/
|
|
966
|
-
NextToken?: string;
|
|
966
|
+
NextToken?: string | undefined;
|
|
967
967
|
}
|
|
968
968
|
/**
|
|
969
969
|
* <p>Returned in response to a successful <code>LookupDeveloperIdentity</code>
|
|
@@ -975,14 +975,14 @@ export interface LookupDeveloperIdentityResponse {
|
|
|
975
975
|
* <p>A unique identifier in the format REGION:GUID.</p>
|
|
976
976
|
* @public
|
|
977
977
|
*/
|
|
978
|
-
IdentityId?: string;
|
|
978
|
+
IdentityId?: string | undefined;
|
|
979
979
|
/**
|
|
980
980
|
* <p>This is the list of developer user identifiers associated with an identity ID.
|
|
981
981
|
* Cognito supports the association of multiple developer user identifiers with an identity
|
|
982
982
|
* ID.</p>
|
|
983
983
|
* @public
|
|
984
984
|
*/
|
|
985
|
-
DeveloperUserIdentifierList?: string[];
|
|
985
|
+
DeveloperUserIdentifierList?: string[] | undefined;
|
|
986
986
|
/**
|
|
987
987
|
* <p>A pagination token. The first call you make will have <code>NextToken</code> set to
|
|
988
988
|
* null. After that the service will return <code>NextToken</code> values as needed. For
|
|
@@ -992,7 +992,7 @@ export interface LookupDeveloperIdentityResponse {
|
|
|
992
992
|
* 11th match.</p>
|
|
993
993
|
* @public
|
|
994
994
|
*/
|
|
995
|
-
NextToken?: string;
|
|
995
|
+
NextToken?: string | undefined;
|
|
996
996
|
}
|
|
997
997
|
/**
|
|
998
998
|
* <p>Input to the <code>MergeDeveloperIdentities</code> action.</p>
|
|
@@ -1036,7 +1036,7 @@ export interface MergeDeveloperIdentitiesResponse {
|
|
|
1036
1036
|
* <p>A unique identifier in the format REGION:GUID.</p>
|
|
1037
1037
|
* @public
|
|
1038
1038
|
*/
|
|
1039
|
-
IdentityId?: string;
|
|
1039
|
+
IdentityId?: string | undefined;
|
|
1040
1040
|
}
|
|
1041
1041
|
/**
|
|
1042
1042
|
* <p>Thrown if there are parallel requests to modify a resource.</p>
|
|
@@ -1074,7 +1074,7 @@ export interface SetIdentityPoolRolesInput {
|
|
|
1074
1074
|
* <p>Up to 25 rules can be specified per identity provider.</p>
|
|
1075
1075
|
* @public
|
|
1076
1076
|
*/
|
|
1077
|
-
RoleMappings?: Record<string, RoleMapping
|
|
1077
|
+
RoleMappings?: Record<string, RoleMapping> | undefined;
|
|
1078
1078
|
}
|
|
1079
1079
|
/**
|
|
1080
1080
|
* @public
|
|
@@ -1094,12 +1094,12 @@ export interface SetPrincipalTagAttributeMapInput {
|
|
|
1094
1094
|
* <p>You can use this operation to use default (username and clientID) attribute mappings.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
UseDefaults?: boolean;
|
|
1097
|
+
UseDefaults?: boolean | undefined;
|
|
1098
1098
|
/**
|
|
1099
1099
|
* <p>You can use this operation to add principal tags.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
PrincipalTags?: Record<string, string
|
|
1102
|
+
PrincipalTags?: Record<string, string> | undefined;
|
|
1103
1103
|
}
|
|
1104
1104
|
/**
|
|
1105
1105
|
* @public
|
|
@@ -1109,22 +1109,22 @@ export interface SetPrincipalTagAttributeMapResponse {
|
|
|
1109
1109
|
* <p>The ID of the Identity Pool you want to set attribute mappings for.</p>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
IdentityPoolId?: string;
|
|
1112
|
+
IdentityPoolId?: string | undefined;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* <p>The provider name you want to use for attribute mappings.</p>
|
|
1115
1115
|
* @public
|
|
1116
1116
|
*/
|
|
1117
|
-
IdentityProviderName?: string;
|
|
1117
|
+
IdentityProviderName?: string | undefined;
|
|
1118
1118
|
/**
|
|
1119
1119
|
* <p>You can use this operation to select default (username and clientID) attribute mappings.</p>
|
|
1120
1120
|
* @public
|
|
1121
1121
|
*/
|
|
1122
|
-
UseDefaults?: boolean;
|
|
1122
|
+
UseDefaults?: boolean | undefined;
|
|
1123
1123
|
/**
|
|
1124
1124
|
* <p>You can use this operation to add principal tags. The <code>PrincipalTags</code>operation enables you to reference user attributes in your IAM permissions policy.</p>
|
|
1125
1125
|
* @public
|
|
1126
1126
|
*/
|
|
1127
|
-
PrincipalTags?: Record<string, string
|
|
1127
|
+
PrincipalTags?: Record<string, string> | undefined;
|
|
1128
1128
|
}
|
|
1129
1129
|
/**
|
|
1130
1130
|
* @public
|
|
@@ -7,32 +7,32 @@ export declare const AmbiguousRoleResolutionType: {
|
|
|
7
7
|
export type AmbiguousRoleResolutionType =
|
|
8
8
|
(typeof AmbiguousRoleResolutionType)[keyof typeof AmbiguousRoleResolutionType];
|
|
9
9
|
export interface CognitoIdentityProvider {
|
|
10
|
-
ProviderName?: string;
|
|
11
|
-
ClientId?: string;
|
|
12
|
-
ServerSideTokenCheck?: boolean;
|
|
10
|
+
ProviderName?: string | undefined;
|
|
11
|
+
ClientId?: string | undefined;
|
|
12
|
+
ServerSideTokenCheck?: boolean | undefined;
|
|
13
13
|
}
|
|
14
14
|
export interface CreateIdentityPoolInput {
|
|
15
15
|
IdentityPoolName: string | undefined;
|
|
16
16
|
AllowUnauthenticatedIdentities: boolean | undefined;
|
|
17
|
-
AllowClassicFlow?: boolean;
|
|
18
|
-
SupportedLoginProviders?: Record<string, string
|
|
19
|
-
DeveloperProviderName?: string;
|
|
20
|
-
OpenIdConnectProviderARNs?: string[];
|
|
21
|
-
CognitoIdentityProviders?: CognitoIdentityProvider[];
|
|
22
|
-
SamlProviderARNs?: string[];
|
|
23
|
-
IdentityPoolTags?: Record<string, string
|
|
17
|
+
AllowClassicFlow?: boolean | undefined;
|
|
18
|
+
SupportedLoginProviders?: Record<string, string> | undefined;
|
|
19
|
+
DeveloperProviderName?: string | undefined;
|
|
20
|
+
OpenIdConnectProviderARNs?: string[] | undefined;
|
|
21
|
+
CognitoIdentityProviders?: CognitoIdentityProvider[] | undefined;
|
|
22
|
+
SamlProviderARNs?: string[] | undefined;
|
|
23
|
+
IdentityPoolTags?: Record<string, string> | undefined;
|
|
24
24
|
}
|
|
25
25
|
export interface IdentityPool {
|
|
26
26
|
IdentityPoolId: string | undefined;
|
|
27
27
|
IdentityPoolName: string | undefined;
|
|
28
28
|
AllowUnauthenticatedIdentities: boolean | undefined;
|
|
29
|
-
AllowClassicFlow?: boolean;
|
|
30
|
-
SupportedLoginProviders?: Record<string, string
|
|
31
|
-
DeveloperProviderName?: string;
|
|
32
|
-
OpenIdConnectProviderARNs?: string[];
|
|
33
|
-
CognitoIdentityProviders?: CognitoIdentityProvider[];
|
|
34
|
-
SamlProviderARNs?: string[];
|
|
35
|
-
IdentityPoolTags?: Record<string, string
|
|
29
|
+
AllowClassicFlow?: boolean | undefined;
|
|
30
|
+
SupportedLoginProviders?: Record<string, string> | undefined;
|
|
31
|
+
DeveloperProviderName?: string | undefined;
|
|
32
|
+
OpenIdConnectProviderARNs?: string[] | undefined;
|
|
33
|
+
CognitoIdentityProviders?: CognitoIdentityProvider[] | undefined;
|
|
34
|
+
SamlProviderARNs?: string[] | undefined;
|
|
35
|
+
IdentityPoolTags?: Record<string, string> | undefined;
|
|
36
36
|
}
|
|
37
37
|
export declare class InternalErrorException extends __BaseException {
|
|
38
38
|
readonly name: "InternalErrorException";
|
|
@@ -85,11 +85,11 @@ export declare const ErrorCode: {
|
|
|
85
85
|
};
|
|
86
86
|
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
87
87
|
export interface UnprocessedIdentityId {
|
|
88
|
-
IdentityId?: string;
|
|
89
|
-
ErrorCode?: ErrorCode;
|
|
88
|
+
IdentityId?: string | undefined;
|
|
89
|
+
ErrorCode?: ErrorCode | undefined;
|
|
90
90
|
}
|
|
91
91
|
export interface DeleteIdentitiesResponse {
|
|
92
|
-
UnprocessedIdentityIds?: UnprocessedIdentityId[];
|
|
92
|
+
UnprocessedIdentityIds?: UnprocessedIdentityId[] | undefined;
|
|
93
93
|
}
|
|
94
94
|
export interface DeleteIdentityPoolInput {
|
|
95
95
|
IdentityPoolId: string | undefined;
|
|
@@ -105,10 +105,10 @@ export interface DescribeIdentityInput {
|
|
|
105
105
|
IdentityId: string | undefined;
|
|
106
106
|
}
|
|
107
107
|
export interface IdentityDescription {
|
|
108
|
-
IdentityId?: string;
|
|
109
|
-
Logins?: string[];
|
|
110
|
-
CreationDate?: Date;
|
|
111
|
-
LastModifiedDate?: Date;
|
|
108
|
+
IdentityId?: string | undefined;
|
|
109
|
+
Logins?: string[] | undefined;
|
|
110
|
+
CreationDate?: Date | undefined;
|
|
111
|
+
LastModifiedDate?: Date | undefined;
|
|
112
112
|
}
|
|
113
113
|
export interface DescribeIdentityPoolInput {
|
|
114
114
|
IdentityPoolId: string | undefined;
|
|
@@ -122,18 +122,18 @@ export declare class ExternalServiceException extends __BaseException {
|
|
|
122
122
|
}
|
|
123
123
|
export interface GetCredentialsForIdentityInput {
|
|
124
124
|
IdentityId: string | undefined;
|
|
125
|
-
Logins?: Record<string, string
|
|
126
|
-
CustomRoleArn?: string;
|
|
125
|
+
Logins?: Record<string, string> | undefined;
|
|
126
|
+
CustomRoleArn?: string | undefined;
|
|
127
127
|
}
|
|
128
128
|
export interface Credentials {
|
|
129
|
-
AccessKeyId?: string;
|
|
130
|
-
SecretKey?: string;
|
|
131
|
-
SessionToken?: string;
|
|
132
|
-
Expiration?: Date;
|
|
129
|
+
AccessKeyId?: string | undefined;
|
|
130
|
+
SecretKey?: string | undefined;
|
|
131
|
+
SessionToken?: string | undefined;
|
|
132
|
+
Expiration?: Date | undefined;
|
|
133
133
|
}
|
|
134
134
|
export interface GetCredentialsForIdentityResponse {
|
|
135
|
-
IdentityId?: string;
|
|
136
|
-
Credentials?: Credentials;
|
|
135
|
+
IdentityId?: string | undefined;
|
|
136
|
+
Credentials?: Credentials | undefined;
|
|
137
137
|
}
|
|
138
138
|
export declare class InvalidIdentityPoolConfigurationException extends __BaseException {
|
|
139
139
|
readonly name: "InvalidIdentityPoolConfigurationException";
|
|
@@ -146,12 +146,12 @@ export declare class InvalidIdentityPoolConfigurationException extends __BaseExc
|
|
|
146
146
|
);
|
|
147
147
|
}
|
|
148
148
|
export interface GetIdInput {
|
|
149
|
-
AccountId?: string;
|
|
149
|
+
AccountId?: string | undefined;
|
|
150
150
|
IdentityPoolId: string | undefined;
|
|
151
|
-
Logins?: Record<string, string
|
|
151
|
+
Logins?: Record<string, string> | undefined;
|
|
152
152
|
}
|
|
153
153
|
export interface GetIdResponse {
|
|
154
|
-
IdentityId?: string;
|
|
154
|
+
IdentityId?: string | undefined;
|
|
155
155
|
}
|
|
156
156
|
export interface GetIdentityPoolRolesInput {
|
|
157
157
|
IdentityPoolId: string | undefined;
|
|
@@ -181,21 +181,21 @@ export type RoleMappingType =
|
|
|
181
181
|
(typeof RoleMappingType)[keyof typeof RoleMappingType];
|
|
182
182
|
export interface RoleMapping {
|
|
183
183
|
Type: RoleMappingType | undefined;
|
|
184
|
-
AmbiguousRoleResolution?: AmbiguousRoleResolutionType;
|
|
185
|
-
RulesConfiguration?: RulesConfigurationType;
|
|
184
|
+
AmbiguousRoleResolution?: AmbiguousRoleResolutionType | undefined;
|
|
185
|
+
RulesConfiguration?: RulesConfigurationType | undefined;
|
|
186
186
|
}
|
|
187
187
|
export interface GetIdentityPoolRolesResponse {
|
|
188
|
-
IdentityPoolId?: string;
|
|
189
|
-
Roles?: Record<string, string
|
|
190
|
-
RoleMappings?: Record<string, RoleMapping
|
|
188
|
+
IdentityPoolId?: string | undefined;
|
|
189
|
+
Roles?: Record<string, string> | undefined;
|
|
190
|
+
RoleMappings?: Record<string, RoleMapping> | undefined;
|
|
191
191
|
}
|
|
192
192
|
export interface GetOpenIdTokenInput {
|
|
193
193
|
IdentityId: string | undefined;
|
|
194
|
-
Logins?: Record<string, string
|
|
194
|
+
Logins?: Record<string, string> | undefined;
|
|
195
195
|
}
|
|
196
196
|
export interface GetOpenIdTokenResponse {
|
|
197
|
-
IdentityId?: string;
|
|
198
|
-
Token?: string;
|
|
197
|
+
IdentityId?: string | undefined;
|
|
198
|
+
Token?: string | undefined;
|
|
199
199
|
}
|
|
200
200
|
export declare class DeveloperUserAlreadyRegisteredException extends __BaseException {
|
|
201
201
|
readonly name: "DeveloperUserAlreadyRegisteredException";
|
|
@@ -209,65 +209,65 @@ export declare class DeveloperUserAlreadyRegisteredException extends __BaseExcep
|
|
|
209
209
|
}
|
|
210
210
|
export interface GetOpenIdTokenForDeveloperIdentityInput {
|
|
211
211
|
IdentityPoolId: string | undefined;
|
|
212
|
-
IdentityId?: string;
|
|
212
|
+
IdentityId?: string | undefined;
|
|
213
213
|
Logins: Record<string, string> | undefined;
|
|
214
|
-
PrincipalTags?: Record<string, string
|
|
215
|
-
TokenDuration?: number;
|
|
214
|
+
PrincipalTags?: Record<string, string> | undefined;
|
|
215
|
+
TokenDuration?: number | undefined;
|
|
216
216
|
}
|
|
217
217
|
export interface GetOpenIdTokenForDeveloperIdentityResponse {
|
|
218
|
-
IdentityId?: string;
|
|
219
|
-
Token?: string;
|
|
218
|
+
IdentityId?: string | undefined;
|
|
219
|
+
Token?: string | undefined;
|
|
220
220
|
}
|
|
221
221
|
export interface GetPrincipalTagAttributeMapInput {
|
|
222
222
|
IdentityPoolId: string | undefined;
|
|
223
223
|
IdentityProviderName: string | undefined;
|
|
224
224
|
}
|
|
225
225
|
export interface GetPrincipalTagAttributeMapResponse {
|
|
226
|
-
IdentityPoolId?: string;
|
|
227
|
-
IdentityProviderName?: string;
|
|
228
|
-
UseDefaults?: boolean;
|
|
229
|
-
PrincipalTags?: Record<string, string
|
|
226
|
+
IdentityPoolId?: string | undefined;
|
|
227
|
+
IdentityProviderName?: string | undefined;
|
|
228
|
+
UseDefaults?: boolean | undefined;
|
|
229
|
+
PrincipalTags?: Record<string, string> | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface ListIdentitiesInput {
|
|
232
232
|
IdentityPoolId: string | undefined;
|
|
233
233
|
MaxResults: number | undefined;
|
|
234
|
-
NextToken?: string;
|
|
235
|
-
HideDisabled?: boolean;
|
|
234
|
+
NextToken?: string | undefined;
|
|
235
|
+
HideDisabled?: boolean | undefined;
|
|
236
236
|
}
|
|
237
237
|
export interface ListIdentitiesResponse {
|
|
238
|
-
IdentityPoolId?: string;
|
|
239
|
-
Identities?: IdentityDescription[];
|
|
240
|
-
NextToken?: string;
|
|
238
|
+
IdentityPoolId?: string | undefined;
|
|
239
|
+
Identities?: IdentityDescription[] | undefined;
|
|
240
|
+
NextToken?: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
export interface ListIdentityPoolsInput {
|
|
243
243
|
MaxResults: number | undefined;
|
|
244
|
-
NextToken?: string;
|
|
244
|
+
NextToken?: string | undefined;
|
|
245
245
|
}
|
|
246
246
|
export interface IdentityPoolShortDescription {
|
|
247
|
-
IdentityPoolId?: string;
|
|
248
|
-
IdentityPoolName?: string;
|
|
247
|
+
IdentityPoolId?: string | undefined;
|
|
248
|
+
IdentityPoolName?: string | undefined;
|
|
249
249
|
}
|
|
250
250
|
export interface ListIdentityPoolsResponse {
|
|
251
|
-
IdentityPools?: IdentityPoolShortDescription[];
|
|
252
|
-
NextToken?: string;
|
|
251
|
+
IdentityPools?: IdentityPoolShortDescription[] | undefined;
|
|
252
|
+
NextToken?: string | undefined;
|
|
253
253
|
}
|
|
254
254
|
export interface ListTagsForResourceInput {
|
|
255
255
|
ResourceArn: string | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface ListTagsForResourceResponse {
|
|
258
|
-
Tags?: Record<string, string
|
|
258
|
+
Tags?: Record<string, string> | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface LookupDeveloperIdentityInput {
|
|
261
261
|
IdentityPoolId: string | undefined;
|
|
262
|
-
IdentityId?: string;
|
|
263
|
-
DeveloperUserIdentifier?: string;
|
|
264
|
-
MaxResults?: number;
|
|
265
|
-
NextToken?: string;
|
|
262
|
+
IdentityId?: string | undefined;
|
|
263
|
+
DeveloperUserIdentifier?: string | undefined;
|
|
264
|
+
MaxResults?: number | undefined;
|
|
265
|
+
NextToken?: string | undefined;
|
|
266
266
|
}
|
|
267
267
|
export interface LookupDeveloperIdentityResponse {
|
|
268
|
-
IdentityId?: string;
|
|
269
|
-
DeveloperUserIdentifierList?: string[];
|
|
270
|
-
NextToken?: string;
|
|
268
|
+
IdentityId?: string | undefined;
|
|
269
|
+
DeveloperUserIdentifierList?: string[] | undefined;
|
|
270
|
+
NextToken?: string | undefined;
|
|
271
271
|
}
|
|
272
272
|
export interface MergeDeveloperIdentitiesInput {
|
|
273
273
|
SourceUserIdentifier: string | undefined;
|
|
@@ -276,7 +276,7 @@ export interface MergeDeveloperIdentitiesInput {
|
|
|
276
276
|
IdentityPoolId: string | undefined;
|
|
277
277
|
}
|
|
278
278
|
export interface MergeDeveloperIdentitiesResponse {
|
|
279
|
-
IdentityId?: string;
|
|
279
|
+
IdentityId?: string | undefined;
|
|
280
280
|
}
|
|
281
281
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
282
282
|
readonly name: "ConcurrentModificationException";
|
|
@@ -291,19 +291,19 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
291
291
|
export interface SetIdentityPoolRolesInput {
|
|
292
292
|
IdentityPoolId: string | undefined;
|
|
293
293
|
Roles: Record<string, string> | undefined;
|
|
294
|
-
RoleMappings?: Record<string, RoleMapping
|
|
294
|
+
RoleMappings?: Record<string, RoleMapping> | undefined;
|
|
295
295
|
}
|
|
296
296
|
export interface SetPrincipalTagAttributeMapInput {
|
|
297
297
|
IdentityPoolId: string | undefined;
|
|
298
298
|
IdentityProviderName: string | undefined;
|
|
299
|
-
UseDefaults?: boolean;
|
|
300
|
-
PrincipalTags?: Record<string, string
|
|
299
|
+
UseDefaults?: boolean | undefined;
|
|
300
|
+
PrincipalTags?: Record<string, string> | undefined;
|
|
301
301
|
}
|
|
302
302
|
export interface SetPrincipalTagAttributeMapResponse {
|
|
303
|
-
IdentityPoolId?: string;
|
|
304
|
-
IdentityProviderName?: string;
|
|
305
|
-
UseDefaults?: boolean;
|
|
306
|
-
PrincipalTags?: Record<string, string
|
|
303
|
+
IdentityPoolId?: string | undefined;
|
|
304
|
+
IdentityProviderName?: string | undefined;
|
|
305
|
+
UseDefaults?: boolean | undefined;
|
|
306
|
+
PrincipalTags?: Record<string, string> | undefined;
|
|
307
307
|
}
|
|
308
308
|
export interface TagResourceInput {
|
|
309
309
|
ResourceArn: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cognito-identity",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cognito Identity Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cognito-identity",
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
27
|
-
"@aws-sdk/core": "3.
|
|
28
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
26
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
27
|
+
"@aws-sdk/core": "3.691.0",
|
|
28
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
29
29
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
30
30
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
31
31
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
32
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
33
33
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
34
34
|
"@aws-sdk/types": "3.686.0",
|
|
35
35
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
36
36
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
37
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
38
38
|
"@smithy/config-resolver": "^3.0.10",
|
|
39
39
|
"@smithy/core": "^2.5.1",
|
|
40
40
|
"@smithy/fetch-http-handler": "^4.0.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"tslib": "^2.6.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@aws-sdk/client-iam": "3.
|
|
66
|
+
"@aws-sdk/client-iam": "3.691.0",
|
|
67
67
|
"@tsconfig/node16": "16.1.3",
|
|
68
68
|
"@types/chai": "^4.2.11",
|
|
69
69
|
"@types/node": "^16.18.96",
|