@aws-sdk/client-sso-admin 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.
@@ -44,7 +44,7 @@ export interface AccessControlAttribute {
44
44
  export declare class AccessDeniedException extends __BaseException {
45
45
  readonly name: "AccessDeniedException";
46
46
  readonly $fault: "client";
47
- Message?: string;
47
+ Message?: string | undefined;
48
48
  /**
49
49
  * @internal
50
50
  */
@@ -76,23 +76,23 @@ export interface AccountAssignment {
76
76
  * <p>The identifier of the Amazon Web Services account.</p>
77
77
  * @public
78
78
  */
79
- AccountId?: string;
79
+ AccountId?: string | undefined;
80
80
  /**
81
81
  * <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
82
82
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
83
83
  * @public
84
84
  */
85
- PermissionSetArn?: string;
85
+ PermissionSetArn?: string | undefined;
86
86
  /**
87
87
  * <p>The entity type for which the assignment will be created.</p>
88
88
  * @public
89
89
  */
90
- PrincipalType?: PrincipalType;
90
+ PrincipalType?: PrincipalType | undefined;
91
91
  /**
92
92
  * <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
93
93
  * @public
94
94
  */
95
- PrincipalId?: string;
95
+ PrincipalId?: string | undefined;
96
96
  }
97
97
  /**
98
98
  * <p>A structure that describes an assignment of an Amazon Web Services account to a principal and the
@@ -104,23 +104,23 @@ export interface AccountAssignmentForPrincipal {
104
104
  * <p>The account ID number of the Amazon Web Services account.</p>
105
105
  * @public
106
106
  */
107
- AccountId?: string;
107
+ AccountId?: string | undefined;
108
108
  /**
109
109
  * <p>The ARN of the IAM Identity Center permission set assigned to this principal for this
110
110
  * Amazon Web Services account.</p>
111
111
  * @public
112
112
  */
113
- PermissionSetArn?: string;
113
+ PermissionSetArn?: string | undefined;
114
114
  /**
115
115
  * <p>The ID of the principal.</p>
116
116
  * @public
117
117
  */
118
- PrincipalId?: string;
118
+ PrincipalId?: string | undefined;
119
119
  /**
120
120
  * <p>The type of the principal.</p>
121
121
  * @public
122
122
  */
123
- PrincipalType?: PrincipalType;
123
+ PrincipalType?: PrincipalType | undefined;
124
124
  }
125
125
  /**
126
126
  * @public
@@ -156,50 +156,50 @@ export interface AccountAssignmentOperationStatus {
156
156
  * <p>The status of the permission set provisioning process.</p>
157
157
  * @public
158
158
  */
159
- Status?: StatusValues;
159
+ Status?: StatusValues | undefined;
160
160
  /**
161
161
  * <p>The identifier for tracking the request operation that is generated by the universally
162
162
  * unique identifier (UUID) workflow.</p>
163
163
  * @public
164
164
  */
165
- RequestId?: string;
165
+ RequestId?: string | undefined;
166
166
  /**
167
167
  * <p>The message that contains an error or exception in case of an operation
168
168
  * failure.</p>
169
169
  * @public
170
170
  */
171
- FailureReason?: string;
171
+ FailureReason?: string | undefined;
172
172
  /**
173
173
  * <p>TargetID is an Amazon Web Services account identifier, (For example, 123456789012).</p>
174
174
  * @public
175
175
  */
176
- TargetId?: string;
176
+ TargetId?: string | undefined;
177
177
  /**
178
178
  * <p>The entity type for which the assignment will be created.</p>
179
179
  * @public
180
180
  */
181
- TargetType?: TargetType;
181
+ TargetType?: TargetType | undefined;
182
182
  /**
183
183
  * <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
184
184
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
185
185
  * @public
186
186
  */
187
- PermissionSetArn?: string;
187
+ PermissionSetArn?: string | undefined;
188
188
  /**
189
189
  * <p>The entity type for which the assignment will be created.</p>
190
190
  * @public
191
191
  */
192
- PrincipalType?: PrincipalType;
192
+ PrincipalType?: PrincipalType | undefined;
193
193
  /**
194
194
  * <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
195
195
  * @public
196
196
  */
197
- PrincipalId?: string;
197
+ PrincipalId?: string | undefined;
198
198
  /**
199
199
  * <p>The date that the permission set was created.</p>
200
200
  * @public
201
201
  */
202
- CreatedDate?: Date;
202
+ CreatedDate?: Date | undefined;
203
203
  }
204
204
  /**
205
205
  * <p>Provides information about the <a>AccountAssignment</a> creation
@@ -211,18 +211,18 @@ export interface AccountAssignmentOperationStatusMetadata {
211
211
  * <p>The status of the permission set provisioning process.</p>
212
212
  * @public
213
213
  */
214
- Status?: StatusValues;
214
+ Status?: StatusValues | undefined;
215
215
  /**
216
216
  * <p>The identifier for tracking the request operation that is generated by the universally
217
217
  * unique identifier (UUID) workflow.</p>
218
218
  * @public
219
219
  */
220
- RequestId?: string;
220
+ RequestId?: string | undefined;
221
221
  /**
222
222
  * <p>The date that the permission set was created.</p>
223
223
  * @public
224
224
  */
225
- CreatedDate?: Date;
225
+ CreatedDate?: Date | undefined;
226
226
  }
227
227
  /**
228
228
  * @public
@@ -265,7 +265,7 @@ export interface SignInOptions {
265
265
  * parameter if the <code>Origin</code> parameter is <code>APPLICATION</code>.</p>
266
266
  * @public
267
267
  */
268
- ApplicationUrl?: string;
268
+ ApplicationUrl?: string | undefined;
269
269
  }
270
270
  /**
271
271
  * @public
@@ -289,12 +289,12 @@ export interface PortalOptions {
289
289
  * <p>A structure that describes the sign-in options for the access portal.</p>
290
290
  * @public
291
291
  */
292
- SignInOptions?: SignInOptions;
292
+ SignInOptions?: SignInOptions | undefined;
293
293
  /**
294
294
  * <p>Indicates whether this application is visible in the access portal.</p>
295
295
  * @public
296
296
  */
297
- Visibility?: ApplicationVisibility;
297
+ Visibility?: ApplicationVisibility | undefined;
298
298
  }
299
299
  /**
300
300
  * @public
@@ -318,48 +318,48 @@ export interface Application {
318
318
  * <p>The ARN of the application.</p>
319
319
  * @public
320
320
  */
321
- ApplicationArn?: string;
321
+ ApplicationArn?: string | undefined;
322
322
  /**
323
323
  * <p>The ARN of the application provider for this application.</p>
324
324
  * @public
325
325
  */
326
- ApplicationProviderArn?: string;
326
+ ApplicationProviderArn?: string | undefined;
327
327
  /**
328
328
  * <p>The name of the application.</p>
329
329
  * @public
330
330
  */
331
- Name?: string;
331
+ Name?: string | undefined;
332
332
  /**
333
333
  * <p>The Amazon Web Services account ID number of the application.</p>
334
334
  * @public
335
335
  */
336
- ApplicationAccount?: string;
336
+ ApplicationAccount?: string | undefined;
337
337
  /**
338
338
  * <p>The ARN of the instance of IAM Identity Center that is configured with this application.</p>
339
339
  * @public
340
340
  */
341
- InstanceArn?: string;
341
+ InstanceArn?: string | undefined;
342
342
  /**
343
343
  * <p>The current status of the application in this instance of IAM Identity Center.</p>
344
344
  * @public
345
345
  */
346
- Status?: ApplicationStatus;
346
+ Status?: ApplicationStatus | undefined;
347
347
  /**
348
348
  * <p>A structure that describes the options for the access portal associated with this
349
349
  * application.</p>
350
350
  * @public
351
351
  */
352
- PortalOptions?: PortalOptions;
352
+ PortalOptions?: PortalOptions | undefined;
353
353
  /**
354
354
  * <p>The description of the application.</p>
355
355
  * @public
356
356
  */
357
- Description?: string;
357
+ Description?: string | undefined;
358
358
  /**
359
359
  * <p>The date and time when the application was originally created.</p>
360
360
  * @public
361
361
  */
362
- CreatedDate?: Date;
362
+ CreatedDate?: Date | undefined;
363
363
  }
364
364
  /**
365
365
  * <p>Occurs when a conflict with a previous successful write is detected. This generally
@@ -371,7 +371,7 @@ export interface Application {
371
371
  export declare class ConflictException extends __BaseException {
372
372
  readonly name: "ConflictException";
373
373
  readonly $fault: "client";
374
- Message?: string;
374
+ Message?: string | undefined;
375
375
  /**
376
376
  * @internal
377
377
  */
@@ -400,7 +400,7 @@ export interface DeleteApplicationAccessScopeRequest {
400
400
  export declare class InternalServerException extends __BaseException {
401
401
  readonly name: "InternalServerException";
402
402
  readonly $fault: "server";
403
- Message?: string;
403
+ Message?: string | undefined;
404
404
  /**
405
405
  * @internal
406
406
  */
@@ -413,7 +413,7 @@ export declare class InternalServerException extends __BaseException {
413
413
  export declare class ResourceNotFoundException extends __BaseException {
414
414
  readonly name: "ResourceNotFoundException";
415
415
  readonly $fault: "client";
416
- Message?: string;
416
+ Message?: string | undefined;
417
417
  /**
418
418
  * @internal
419
419
  */
@@ -427,7 +427,7 @@ export declare class ResourceNotFoundException extends __BaseException {
427
427
  export declare class ThrottlingException extends __BaseException {
428
428
  readonly name: "ThrottlingException";
429
429
  readonly $fault: "client";
430
- Message?: string;
430
+ Message?: string | undefined;
431
431
  /**
432
432
  * @internal
433
433
  */
@@ -440,7 +440,7 @@ export declare class ThrottlingException extends __BaseException {
440
440
  export declare class ValidationException extends __BaseException {
441
441
  readonly name: "ValidationException";
442
442
  readonly $fault: "client";
443
- Message?: string;
443
+ Message?: string | undefined;
444
444
  /**
445
445
  * @internal
446
446
  */
@@ -476,7 +476,7 @@ export interface GetApplicationAccessScopeResponse {
476
476
  * <p>An array of authorized targets associated with this access scope.</p>
477
477
  * @public
478
478
  */
479
- AuthorizedTargets?: string[];
479
+ AuthorizedTargets?: string[] | undefined;
480
480
  }
481
481
  /**
482
482
  * @public
@@ -498,7 +498,7 @@ export interface ListApplicationAccessScopesRequest {
498
498
  * results.</p>
499
499
  * @public
500
500
  */
501
- MaxResults?: number;
501
+ MaxResults?: number | undefined;
502
502
  /**
503
503
  * <p>Specifies that you want to receive the next page of results. Valid
504
504
  * only if you received a <code>NextToken</code> response in the previous request. If you
@@ -507,7 +507,7 @@ export interface ListApplicationAccessScopesRequest {
507
507
  * next page of results.</p>
508
508
  * @public
509
509
  */
510
- NextToken?: string;
510
+ NextToken?: string | undefined;
511
511
  }
512
512
  /**
513
513
  * <p>A structure that describes an IAM Identity Center access scope and its authorized targets.</p>
@@ -523,7 +523,7 @@ export interface ScopeDetails {
523
523
  * <p>An array list of ARNs of applications.</p>
524
524
  * @public
525
525
  */
526
- AuthorizedTargets?: string[];
526
+ AuthorizedTargets?: string[] | undefined;
527
527
  }
528
528
  /**
529
529
  * @public
@@ -543,7 +543,7 @@ export interface ListApplicationAccessScopesResponse {
543
543
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
544
544
  * @public
545
545
  */
546
- NextToken?: string;
546
+ NextToken?: string | undefined;
547
547
  }
548
548
  /**
549
549
  * @public
@@ -560,7 +560,7 @@ export interface PutApplicationAccessScopeRequest {
560
560
  * scope.</p>
561
561
  * @public
562
562
  */
563
- AuthorizedTargets?: string[];
563
+ AuthorizedTargets?: string[] | undefined;
564
564
  /**
565
565
  * <p>Specifies the ARN of the application with the access scope with the targets to add or
566
566
  * update.</p>
@@ -598,17 +598,17 @@ export interface ApplicationAssignmentForPrincipal {
598
598
  * <p>The ARN of the application to which the specified principal is assigned.</p>
599
599
  * @public
600
600
  */
601
- ApplicationArn?: string;
601
+ ApplicationArn?: string | undefined;
602
602
  /**
603
603
  * <p>The unique identifier of the principal assigned to the application.</p>
604
604
  * @public
605
605
  */
606
- PrincipalId?: string;
606
+ PrincipalId?: string | undefined;
607
607
  /**
608
608
  * <p>The type of the principal assigned to the application.</p>
609
609
  * @public
610
610
  */
611
- PrincipalType?: PrincipalType;
611
+ PrincipalType?: PrincipalType | undefined;
612
612
  }
613
613
  /**
614
614
  * @public
@@ -701,7 +701,7 @@ export interface GetApplicationAuthenticationMethodResponse {
701
701
  * <p>A structure that contains details about the requested authentication method.</p>
702
702
  * @public
703
703
  */
704
- AuthenticationMethod?: AuthenticationMethod;
704
+ AuthenticationMethod?: AuthenticationMethod | undefined;
705
705
  }
706
706
  /**
707
707
  * @public
@@ -721,7 +721,7 @@ export interface ListApplicationAuthenticationMethodsRequest {
721
721
  * next page of results.</p>
722
722
  * @public
723
723
  */
724
- NextToken?: string;
724
+ NextToken?: string | undefined;
725
725
  }
726
726
  /**
727
727
  * <p>A structure that describes an authentication method and its type.</p>
@@ -732,13 +732,13 @@ export interface AuthenticationMethodItem {
732
732
  * <p>The type of authentication that is used by this method.</p>
733
733
  * @public
734
734
  */
735
- AuthenticationMethodType?: AuthenticationMethodType;
735
+ AuthenticationMethodType?: AuthenticationMethodType | undefined;
736
736
  /**
737
737
  * <p>A structure that describes an authentication method. The contents of this structure is
738
738
  * determined by the <code>AuthenticationMethodType</code>.</p>
739
739
  * @public
740
740
  */
741
- AuthenticationMethod?: AuthenticationMethod;
741
+ AuthenticationMethod?: AuthenticationMethod | undefined;
742
742
  }
743
743
  /**
744
744
  * @public
@@ -748,7 +748,7 @@ export interface ListApplicationAuthenticationMethodsResponse {
748
748
  * <p>An array list of authentication methods for the specified application.</p>
749
749
  * @public
750
750
  */
751
- AuthenticationMethods?: AuthenticationMethodItem[];
751
+ AuthenticationMethods?: AuthenticationMethodItem[] | undefined;
752
752
  /**
753
753
  * <p>If present, this value indicates that more output is available than
754
754
  * is included in the current response. Use this value in the <code>NextToken</code>
@@ -757,7 +757,7 @@ export interface ListApplicationAuthenticationMethodsResponse {
757
757
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
758
758
  * @public
759
759
  */
760
- NextToken?: string;
760
+ NextToken?: string | undefined;
761
761
  }
762
762
  /**
763
763
  * @public
@@ -835,7 +835,7 @@ export interface AuthorizationCodeGrant {
835
835
  * <p>A list of URIs that are valid locations to redirect a user's browser after the user is authorized.</p>
836
836
  * @public
837
837
  */
838
- RedirectUris?: string[];
838
+ RedirectUris?: string[] | undefined;
839
839
  }
840
840
  /**
841
841
  * <p>A structure that describes a trusted token issuer and associates it with a set of authorized
@@ -847,13 +847,13 @@ export interface AuthorizedTokenIssuer {
847
847
  * <p>The ARN of the trusted token issuer.</p>
848
848
  * @public
849
849
  */
850
- TrustedTokenIssuerArn?: string;
850
+ TrustedTokenIssuerArn?: string | undefined;
851
851
  /**
852
852
  * <p>An array list of authorized audiences, or applications, that can consume the tokens
853
853
  * generated by the associated trusted token issuer.</p>
854
854
  * @public
855
855
  */
856
- AuthorizedAudiences?: string[];
856
+ AuthorizedAudiences?: string[] | undefined;
857
857
  }
858
858
  /**
859
859
  * <p>A structure that defines configuration settings for an application that supports the JWT Bearer Token Authorization Grant.</p>
@@ -864,7 +864,7 @@ export interface JwtBearerGrant {
864
864
  * <p>A list of allowed token issuers trusted by the Identity Center instances for this application.</p>
865
865
  * @public
866
866
  */
867
- AuthorizedTokenIssuers?: AuthorizedTokenIssuer[];
867
+ AuthorizedTokenIssuers?: AuthorizedTokenIssuer[] | undefined;
868
868
  }
869
869
  /**
870
870
  * <p>A structure that defines configuration settings for an application that supports the OAuth 2.0 Refresh Token Grant.</p>
@@ -977,7 +977,7 @@ export interface ListApplicationGrantsRequest {
977
977
  * next page of results.</p>
978
978
  * @public
979
979
  */
980
- NextToken?: string;
980
+ NextToken?: string | undefined;
981
981
  }
982
982
  /**
983
983
  * <p>A structure that defines a single grant and its configuration.</p>
@@ -1012,7 +1012,7 @@ export interface ListApplicationGrantsResponse {
1012
1012
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
1013
1013
  * @public
1014
1014
  */
1015
- NextToken?: string;
1015
+ NextToken?: string | undefined;
1016
1016
  }
1017
1017
  /**
1018
1018
  * @public
@@ -1043,17 +1043,17 @@ export interface DisplayData {
1043
1043
  * <p>The name of the application provider that appears in the portal.</p>
1044
1044
  * @public
1045
1045
  */
1046
- DisplayName?: string;
1046
+ DisplayName?: string | undefined;
1047
1047
  /**
1048
1048
  * <p>A URL that points to an icon that represents the application provider.</p>
1049
1049
  * @public
1050
1050
  */
1051
- IconUrl?: string;
1051
+ IconUrl?: string | undefined;
1052
1052
  /**
1053
1053
  * <p>The description of the application provider that appears in the portal.</p>
1054
1054
  * @public
1055
1055
  */
1056
- Description?: string;
1056
+ Description?: string | undefined;
1057
1057
  }
1058
1058
  /**
1059
1059
  * @public
@@ -1077,12 +1077,12 @@ export interface ResourceServerScopeDetails {
1077
1077
  * <p>The description of an access scope for a resource server.</p>
1078
1078
  * @public
1079
1079
  */
1080
- LongDescription?: string;
1080
+ LongDescription?: string | undefined;
1081
1081
  /**
1082
1082
  * <p>The title of an access scope for a resource server.</p>
1083
1083
  * @public
1084
1084
  */
1085
- DetailedTitle?: string;
1085
+ DetailedTitle?: string | undefined;
1086
1086
  }
1087
1087
  /**
1088
1088
  * <p>A structure that describes the configuration of a resource server.</p>
@@ -1094,7 +1094,7 @@ export interface ResourceServerConfig {
1094
1094
  * server.</p>
1095
1095
  * @public
1096
1096
  */
1097
- Scopes?: Record<string, ResourceServerScopeDetails>;
1097
+ Scopes?: Record<string, ResourceServerScopeDetails> | undefined;
1098
1098
  }
1099
1099
  /**
1100
1100
  * <p>A structure that describes a provider that can be used to connect an Amazon Web Services managed application or customer managed application to IAM Identity Center.</p>
@@ -1110,18 +1110,18 @@ export interface ApplicationProvider {
1110
1110
  * <p>The protocol that the application provider uses to perform federation.</p>
1111
1111
  * @public
1112
1112
  */
1113
- FederationProtocol?: FederationProtocol;
1113
+ FederationProtocol?: FederationProtocol | undefined;
1114
1114
  /**
1115
1115
  * <p>A structure that describes how IAM Identity Center represents the application provider in the
1116
1116
  * portal.</p>
1117
1117
  * @public
1118
1118
  */
1119
- DisplayData?: DisplayData;
1119
+ DisplayData?: DisplayData | undefined;
1120
1120
  /**
1121
1121
  * <p>A structure that describes the application provider's resource server.</p>
1122
1122
  * @public
1123
1123
  */
1124
- ResourceServerConfig?: ResourceServerConfig;
1124
+ ResourceServerConfig?: ResourceServerConfig | undefined;
1125
1125
  }
1126
1126
  /**
1127
1127
  * <p>Specifies the name and path of a customer managed policy. You must have an IAM policy that matches the name and path in each Amazon Web Services account where you want to deploy your permission set.</p>
@@ -1141,7 +1141,7 @@ export interface CustomerManagedPolicyReference {
1141
1141
  * Guide</i>.</p>
1142
1142
  * @public
1143
1143
  */
1144
- Path?: string;
1144
+ Path?: string | undefined;
1145
1145
  }
1146
1146
  /**
1147
1147
  * @public
@@ -1176,7 +1176,7 @@ export interface AttachCustomerManagedPolicyReferenceToPermissionSetResponse {
1176
1176
  export declare class ServiceQuotaExceededException extends __BaseException {
1177
1177
  readonly name: "ServiceQuotaExceededException";
1178
1178
  readonly $fault: "client";
1179
- Message?: string;
1179
+ Message?: string | undefined;
1180
1180
  /**
1181
1181
  * @internal
1182
1182
  */
@@ -1191,13 +1191,13 @@ export interface AttachedManagedPolicy {
1191
1191
  * <p>The name of the Amazon Web Services managed policy.</p>
1192
1192
  * @public
1193
1193
  */
1194
- Name?: string;
1194
+ Name?: string | undefined;
1195
1195
  /**
1196
1196
  * <p>The ARN of the Amazon Web Services managed policy. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
1197
1197
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
1198
1198
  * @public
1199
1199
  */
1200
- Arn?: string;
1200
+ Arn?: string | undefined;
1201
1201
  }
1202
1202
  /**
1203
1203
  * @public
@@ -1273,7 +1273,7 @@ export interface CreateAccountAssignmentResponse {
1273
1273
  * <p>The status object for the account assignment creation operation.</p>
1274
1274
  * @public
1275
1275
  */
1276
- AccountAssignmentCreationStatus?: AccountAssignmentOperationStatus;
1276
+ AccountAssignmentCreationStatus?: AccountAssignmentOperationStatus | undefined;
1277
1277
  }
1278
1278
  /**
1279
1279
  * <p>A set of key-value pairs that are used to manage the resource. Tags can only be
@@ -1318,23 +1318,23 @@ export interface CreateApplicationRequest {
1318
1318
  * <p>The description of the .</p>
1319
1319
  * @public
1320
1320
  */
1321
- Description?: string;
1321
+ Description?: string | undefined;
1322
1322
  /**
1323
1323
  * <p>A structure that describes the options for the portal associated with an
1324
1324
  * application.</p>
1325
1325
  * @public
1326
1326
  */
1327
- PortalOptions?: PortalOptions;
1327
+ PortalOptions?: PortalOptions | undefined;
1328
1328
  /**
1329
1329
  * <p>Specifies tags to be attached to the application.</p>
1330
1330
  * @public
1331
1331
  */
1332
- Tags?: Tag[];
1332
+ Tags?: Tag[] | undefined;
1333
1333
  /**
1334
1334
  * <p>Specifies whether the application is enabled or disabled.</p>
1335
1335
  * @public
1336
1336
  */
1337
- Status?: ApplicationStatus;
1337
+ Status?: ApplicationStatus | undefined;
1338
1338
  /**
1339
1339
  * <p>Specifies a unique, case-sensitive ID that you provide to
1340
1340
  * ensure the idempotency of the request. This lets you safely retry the request without
@@ -1349,7 +1349,7 @@ export interface CreateApplicationRequest {
1349
1349
  * error.</p>
1350
1350
  * @public
1351
1351
  */
1352
- ClientToken?: string;
1352
+ ClientToken?: string | undefined;
1353
1353
  }
1354
1354
  /**
1355
1355
  * @public
@@ -1359,7 +1359,7 @@ export interface CreateApplicationResponse {
1359
1359
  * <p>Specifies the ARN of the application.</p>
1360
1360
  * @public
1361
1361
  */
1362
- ApplicationArn?: string;
1362
+ ApplicationArn?: string | undefined;
1363
1363
  }
1364
1364
  /**
1365
1365
  * @public
@@ -1394,7 +1394,7 @@ export interface CreateInstanceRequest {
1394
1394
  * <p>The name of the instance of IAM Identity Center.</p>
1395
1395
  * @public
1396
1396
  */
1397
- Name?: string;
1397
+ Name?: string | undefined;
1398
1398
  /**
1399
1399
  * <p>Specifies a unique, case-sensitive ID that you provide to
1400
1400
  * ensure the idempotency of the request. This lets you safely retry the request without
@@ -1409,12 +1409,12 @@ export interface CreateInstanceRequest {
1409
1409
  * error.</p>
1410
1410
  * @public
1411
1411
  */
1412
- ClientToken?: string;
1412
+ ClientToken?: string | undefined;
1413
1413
  /**
1414
1414
  * <p>Specifies tags to be attached to the instance of IAM Identity Center.</p>
1415
1415
  * @public
1416
1416
  */
1417
- Tags?: Tag[];
1417
+ Tags?: Tag[] | undefined;
1418
1418
  }
1419
1419
  /**
1420
1420
  * @public
@@ -1426,7 +1426,7 @@ export interface CreateInstanceResponse {
1426
1426
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
1427
1427
  * @public
1428
1428
  */
1429
- InstanceArn?: string;
1429
+ InstanceArn?: string | undefined;
1430
1430
  }
1431
1431
  /**
1432
1432
  * <p>Specifies the attributes to add to your attribute-based access control (ABAC)
@@ -1478,7 +1478,7 @@ export interface CreatePermissionSetRequest {
1478
1478
  * <p>The description of the <a>PermissionSet</a>.</p>
1479
1479
  * @public
1480
1480
  */
1481
- Description?: string;
1481
+ Description?: string | undefined;
1482
1482
  /**
1483
1483
  * <p>The ARN of the IAM Identity Center instance under which the operation will be executed.
1484
1484
  * For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
@@ -1491,18 +1491,18 @@ export interface CreatePermissionSetRequest {
1491
1491
  * standard.</p>
1492
1492
  * @public
1493
1493
  */
1494
- SessionDuration?: string;
1494
+ SessionDuration?: string | undefined;
1495
1495
  /**
1496
1496
  * <p>Used to redirect users within the application during the federation authentication
1497
1497
  * process.</p>
1498
1498
  * @public
1499
1499
  */
1500
- RelayState?: string;
1500
+ RelayState?: string | undefined;
1501
1501
  /**
1502
1502
  * <p>The tags to attach to the new <a>PermissionSet</a>.</p>
1503
1503
  * @public
1504
1504
  */
1505
- Tags?: Tag[];
1505
+ Tags?: Tag[] | undefined;
1506
1506
  }
1507
1507
  /**
1508
1508
  * <p>An entity that contains IAM policies.</p>
@@ -1513,35 +1513,35 @@ export interface PermissionSet {
1513
1513
  * <p>The name of the permission set.</p>
1514
1514
  * @public
1515
1515
  */
1516
- Name?: string;
1516
+ Name?: string | undefined;
1517
1517
  /**
1518
1518
  * <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
1519
1519
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
1520
1520
  * @public
1521
1521
  */
1522
- PermissionSetArn?: string;
1522
+ PermissionSetArn?: string | undefined;
1523
1523
  /**
1524
1524
  * <p>The description of the <a>PermissionSet</a>.</p>
1525
1525
  * @public
1526
1526
  */
1527
- Description?: string;
1527
+ Description?: string | undefined;
1528
1528
  /**
1529
1529
  * <p>The date that the permission set was created.</p>
1530
1530
  * @public
1531
1531
  */
1532
- CreatedDate?: Date;
1532
+ CreatedDate?: Date | undefined;
1533
1533
  /**
1534
1534
  * <p>The length of time that the application user sessions are valid for in the ISO-8601
1535
1535
  * standard.</p>
1536
1536
  * @public
1537
1537
  */
1538
- SessionDuration?: string;
1538
+ SessionDuration?: string | undefined;
1539
1539
  /**
1540
1540
  * <p>Used to redirect users within the application during the federation authentication
1541
1541
  * process.</p>
1542
1542
  * @public
1543
1543
  */
1544
- RelayState?: string;
1544
+ RelayState?: string | undefined;
1545
1545
  }
1546
1546
  /**
1547
1547
  * @public
@@ -1551,7 +1551,7 @@ export interface CreatePermissionSetResponse {
1551
1551
  * <p>Defines the level of access on an Amazon Web Services account.</p>
1552
1552
  * @public
1553
1553
  */
1554
- PermissionSet?: PermissionSet;
1554
+ PermissionSet?: PermissionSet | undefined;
1555
1555
  }
1556
1556
  /**
1557
1557
  * @public
@@ -1677,12 +1677,12 @@ export interface CreateTrustedTokenIssuerRequest {
1677
1677
  * error.</p>
1678
1678
  * @public
1679
1679
  */
1680
- ClientToken?: string;
1680
+ ClientToken?: string | undefined;
1681
1681
  /**
1682
1682
  * <p>Specifies tags to be attached to the new trusted token issuer configuration.</p>
1683
1683
  * @public
1684
1684
  */
1685
- Tags?: Tag[];
1685
+ Tags?: Tag[] | undefined;
1686
1686
  }
1687
1687
  /**
1688
1688
  * @public
@@ -1692,7 +1692,7 @@ export interface CreateTrustedTokenIssuerResponse {
1692
1692
  * <p>The ARN of the new trusted token issuer configuration.</p>
1693
1693
  * @public
1694
1694
  */
1695
- TrustedTokenIssuerArn?: string;
1695
+ TrustedTokenIssuerArn?: string | undefined;
1696
1696
  }
1697
1697
  /**
1698
1698
  * @public
@@ -1739,7 +1739,7 @@ export interface DeleteAccountAssignmentResponse {
1739
1739
  * <p>The status object for the account assignment deletion operation.</p>
1740
1740
  * @public
1741
1741
  */
1742
- AccountAssignmentDeletionStatus?: AccountAssignmentOperationStatus;
1742
+ AccountAssignmentDeletionStatus?: AccountAssignmentOperationStatus | undefined;
1743
1743
  }
1744
1744
  /**
1745
1745
  * @public
@@ -1916,7 +1916,7 @@ export interface DescribeAccountAssignmentCreationStatusResponse {
1916
1916
  * <p>The status object for the account assignment creation operation.</p>
1917
1917
  * @public
1918
1918
  */
1919
- AccountAssignmentCreationStatus?: AccountAssignmentOperationStatus;
1919
+ AccountAssignmentCreationStatus?: AccountAssignmentOperationStatus | undefined;
1920
1920
  }
1921
1921
  /**
1922
1922
  * @public
@@ -1943,7 +1943,7 @@ export interface DescribeAccountAssignmentDeletionStatusResponse {
1943
1943
  * <p>The status object for the account assignment deletion operation.</p>
1944
1944
  * @public
1945
1945
  */
1946
- AccountAssignmentDeletionStatus?: AccountAssignmentOperationStatus;
1946
+ AccountAssignmentDeletionStatus?: AccountAssignmentOperationStatus | undefined;
1947
1947
  }
1948
1948
  /**
1949
1949
  * @public
@@ -1964,49 +1964,49 @@ export interface DescribeApplicationResponse {
1964
1964
  * <p>Specifies the ARN of the application.</p>
1965
1965
  * @public
1966
1966
  */
1967
- ApplicationArn?: string;
1967
+ ApplicationArn?: string | undefined;
1968
1968
  /**
1969
1969
  * <p>The ARN of the application provider under which the operation will run.</p>
1970
1970
  * @public
1971
1971
  */
1972
- ApplicationProviderArn?: string;
1972
+ ApplicationProviderArn?: string | undefined;
1973
1973
  /**
1974
1974
  * <p>The application name.</p>
1975
1975
  * @public
1976
1976
  */
1977
- Name?: string;
1977
+ Name?: string | undefined;
1978
1978
  /**
1979
1979
  * <p>The account ID.</p>
1980
1980
  * @public
1981
1981
  */
1982
- ApplicationAccount?: string;
1982
+ ApplicationAccount?: string | undefined;
1983
1983
  /**
1984
1984
  * <p>The ARN of the IAM Identity Center application under which the operation will run. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
1985
1985
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
1986
1986
  * @public
1987
1987
  */
1988
- InstanceArn?: string;
1988
+ InstanceArn?: string | undefined;
1989
1989
  /**
1990
1990
  * <p>Specifies whether the application is enabled or disabled.</p>
1991
1991
  * @public
1992
1992
  */
1993
- Status?: ApplicationStatus;
1993
+ Status?: ApplicationStatus | undefined;
1994
1994
  /**
1995
1995
  * <p>A structure that describes the options for the portal associated with an
1996
1996
  * application.</p>
1997
1997
  * @public
1998
1998
  */
1999
- PortalOptions?: PortalOptions;
1999
+ PortalOptions?: PortalOptions | undefined;
2000
2000
  /**
2001
2001
  * <p>The description of the .</p>
2002
2002
  * @public
2003
2003
  */
2004
- Description?: string;
2004
+ Description?: string | undefined;
2005
2005
  /**
2006
2006
  * <p>The date the application was created.</p>
2007
2007
  * @public
2008
2008
  */
2009
- CreatedDate?: Date;
2009
+ CreatedDate?: Date | undefined;
2010
2010
  }
2011
2011
  /**
2012
2012
  * @public
@@ -2038,18 +2038,18 @@ export interface DescribeApplicationAssignmentResponse {
2038
2038
  * <p>The entity type for which the assignment will be created.</p>
2039
2039
  * @public
2040
2040
  */
2041
- PrincipalType?: PrincipalType;
2041
+ PrincipalType?: PrincipalType | undefined;
2042
2042
  /**
2043
2043
  * <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
2044
2044
  * @public
2045
2045
  */
2046
- PrincipalId?: string;
2046
+ PrincipalId?: string | undefined;
2047
2047
  /**
2048
2048
  * <p>Specifies the ARN of the application. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
2049
2049
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
2050
2050
  * @public
2051
2051
  */
2052
- ApplicationArn?: string;
2052
+ ApplicationArn?: string | undefined;
2053
2053
  }
2054
2054
  /**
2055
2055
  * @public
@@ -2074,17 +2074,17 @@ export interface DescribeApplicationProviderResponse {
2074
2074
  * <p>The protocol used to federate to the application provider.</p>
2075
2075
  * @public
2076
2076
  */
2077
- FederationProtocol?: FederationProtocol;
2077
+ FederationProtocol?: FederationProtocol | undefined;
2078
2078
  /**
2079
2079
  * <p>A structure with details about the display data for the application provider.</p>
2080
2080
  * @public
2081
2081
  */
2082
- DisplayData?: DisplayData;
2082
+ DisplayData?: DisplayData | undefined;
2083
2083
  /**
2084
2084
  * <p>A structure with details about the receiving application.</p>
2085
2085
  * @public
2086
2086
  */
2087
- ResourceServerConfig?: ResourceServerConfig;
2087
+ ResourceServerConfig?: ResourceServerConfig | undefined;
2088
2088
  }
2089
2089
  /**
2090
2090
  * @public
@@ -2118,33 +2118,33 @@ export interface DescribeInstanceResponse {
2118
2118
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
2119
2119
  * @public
2120
2120
  */
2121
- InstanceArn?: string;
2121
+ InstanceArn?: string | undefined;
2122
2122
  /**
2123
2123
  * <p>The identifier of the identity store that is connected to the instance of
2124
2124
  * IAM Identity Center.</p>
2125
2125
  * @public
2126
2126
  */
2127
- IdentityStoreId?: string;
2127
+ IdentityStoreId?: string | undefined;
2128
2128
  /**
2129
2129
  * <p>The identifier of the Amazon Web Services account for which the instance was created.</p>
2130
2130
  * @public
2131
2131
  */
2132
- OwnerAccountId?: string;
2132
+ OwnerAccountId?: string | undefined;
2133
2133
  /**
2134
2134
  * <p>Specifies the instance name.</p>
2135
2135
  * @public
2136
2136
  */
2137
- Name?: string;
2137
+ Name?: string | undefined;
2138
2138
  /**
2139
2139
  * <p>The date the instance was created.</p>
2140
2140
  * @public
2141
2141
  */
2142
- CreatedDate?: Date;
2142
+ CreatedDate?: Date | undefined;
2143
2143
  /**
2144
2144
  * <p>The status of the instance. </p>
2145
2145
  * @public
2146
2146
  */
2147
- Status?: InstanceStatus;
2147
+ Status?: InstanceStatus | undefined;
2148
2148
  }
2149
2149
  /**
2150
2150
  * @public
@@ -2177,18 +2177,18 @@ export interface DescribeInstanceAccessControlAttributeConfigurationResponse {
2177
2177
  * <p>The status of the attribute configuration process.</p>
2178
2178
  * @public
2179
2179
  */
2180
- Status?: InstanceAccessControlAttributeConfigurationStatus;
2180
+ Status?: InstanceAccessControlAttributeConfigurationStatus | undefined;
2181
2181
  /**
2182
2182
  * <p>Provides more details about the current status of the specified attribute.</p>
2183
2183
  * @public
2184
2184
  */
2185
- StatusReason?: string;
2185
+ StatusReason?: string | undefined;
2186
2186
  /**
2187
2187
  * <p>Gets the list of IAM Identity Center identity store attributes that have been added to your ABAC
2188
2188
  * configuration.</p>
2189
2189
  * @public
2190
2190
  */
2191
- InstanceAccessControlAttributeConfiguration?: InstanceAccessControlAttributeConfiguration;
2191
+ InstanceAccessControlAttributeConfiguration?: InstanceAccessControlAttributeConfiguration | undefined;
2192
2192
  }
2193
2193
  /**
2194
2194
  * @public
@@ -2215,7 +2215,7 @@ export interface DescribePermissionSetResponse {
2215
2215
  * <p>Describes the level of access on an Amazon Web Services account.</p>
2216
2216
  * @public
2217
2217
  */
2218
- PermissionSet?: PermissionSet;
2218
+ PermissionSet?: PermissionSet | undefined;
2219
2219
  }
2220
2220
  /**
2221
2221
  * @public
@@ -2245,35 +2245,35 @@ export interface PermissionSetProvisioningStatus {
2245
2245
  * <p>The status of the permission set provisioning process.</p>
2246
2246
  * @public
2247
2247
  */
2248
- Status?: StatusValues;
2248
+ Status?: StatusValues | undefined;
2249
2249
  /**
2250
2250
  * <p>The identifier for tracking the request operation that is generated by the universally
2251
2251
  * unique identifier (UUID) workflow.</p>
2252
2252
  * @public
2253
2253
  */
2254
- RequestId?: string;
2254
+ RequestId?: string | undefined;
2255
2255
  /**
2256
2256
  * <p>The identifier of the Amazon Web Services account from which to list the assignments.</p>
2257
2257
  * @public
2258
2258
  */
2259
- AccountId?: string;
2259
+ AccountId?: string | undefined;
2260
2260
  /**
2261
2261
  * <p>The ARN of the permission set that is being provisioned. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
2262
2262
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
2263
2263
  * @public
2264
2264
  */
2265
- PermissionSetArn?: string;
2265
+ PermissionSetArn?: string | undefined;
2266
2266
  /**
2267
2267
  * <p>The message that contains an error or exception in case of an operation
2268
2268
  * failure.</p>
2269
2269
  * @public
2270
2270
  */
2271
- FailureReason?: string;
2271
+ FailureReason?: string | undefined;
2272
2272
  /**
2273
2273
  * <p>The date that the permission set was created.</p>
2274
2274
  * @public
2275
2275
  */
2276
- CreatedDate?: Date;
2276
+ CreatedDate?: Date | undefined;
2277
2277
  }
2278
2278
  /**
2279
2279
  * @public
@@ -2283,7 +2283,7 @@ export interface DescribePermissionSetProvisioningStatusResponse {
2283
2283
  * <p>The status object for the permission set provisioning operation.</p>
2284
2284
  * @public
2285
2285
  */
2286
- PermissionSetProvisioningStatus?: PermissionSetProvisioningStatus;
2286
+ PermissionSetProvisioningStatus?: PermissionSetProvisioningStatus | undefined;
2287
2287
  }
2288
2288
  /**
2289
2289
  * @public
@@ -2303,22 +2303,22 @@ export interface DescribeTrustedTokenIssuerResponse {
2303
2303
  * <p>The ARN of the trusted token issuer configuration.</p>
2304
2304
  * @public
2305
2305
  */
2306
- TrustedTokenIssuerArn?: string;
2306
+ TrustedTokenIssuerArn?: string | undefined;
2307
2307
  /**
2308
2308
  * <p>The name of the trusted token issuer configuration.</p>
2309
2309
  * @public
2310
2310
  */
2311
- Name?: string;
2311
+ Name?: string | undefined;
2312
2312
  /**
2313
2313
  * <p>The type of the trusted token issuer.</p>
2314
2314
  * @public
2315
2315
  */
2316
- TrustedTokenIssuerType?: TrustedTokenIssuerType;
2316
+ TrustedTokenIssuerType?: TrustedTokenIssuerType | undefined;
2317
2317
  /**
2318
2318
  * <p>A structure the describes the settings that apply of this trusted token issuer.</p>
2319
2319
  * @public
2320
2320
  */
2321
- TrustedTokenIssuerConfiguration?: TrustedTokenIssuerConfiguration;
2321
+ TrustedTokenIssuerConfiguration?: TrustedTokenIssuerConfiguration | undefined;
2322
2322
  }
2323
2323
  /**
2324
2324
  * @public
@@ -2424,7 +2424,7 @@ export interface GetInlinePolicyForPermissionSetResponse {
2424
2424
  * </note>
2425
2425
  * @public
2426
2426
  */
2427
- InlinePolicy?: string;
2427
+ InlinePolicy?: string | undefined;
2428
2428
  }
2429
2429
  /**
2430
2430
  * @public
@@ -2463,13 +2463,13 @@ export interface PermissionsBoundary {
2463
2463
  * <p>Specifies the name and path of a customer managed policy. You must have an IAM policy that matches the name and path in each Amazon Web Services account where you want to deploy your permission set.</p>
2464
2464
  * @public
2465
2465
  */
2466
- CustomerManagedPolicyReference?: CustomerManagedPolicyReference;
2466
+ CustomerManagedPolicyReference?: CustomerManagedPolicyReference | undefined;
2467
2467
  /**
2468
2468
  * <p>The Amazon Web Services managed policy ARN that you want to attach to a permission set as a
2469
2469
  * permissions boundary.</p>
2470
2470
  * @public
2471
2471
  */
2472
- ManagedPolicyArn?: string;
2472
+ ManagedPolicyArn?: string | undefined;
2473
2473
  }
2474
2474
  /**
2475
2475
  * @public
@@ -2479,7 +2479,7 @@ export interface GetPermissionsBoundaryForPermissionSetResponse {
2479
2479
  * <p>The permissions boundary attached to the specified permission set.</p>
2480
2480
  * @public
2481
2481
  */
2482
- PermissionsBoundary?: PermissionsBoundary;
2482
+ PermissionsBoundary?: PermissionsBoundary | undefined;
2483
2483
  }
2484
2484
  /**
2485
2485
  * <p>Provides information about the IAM Identity Center instance.</p>
@@ -2492,33 +2492,33 @@ export interface InstanceMetadata {
2492
2492
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
2493
2493
  * @public
2494
2494
  */
2495
- InstanceArn?: string;
2495
+ InstanceArn?: string | undefined;
2496
2496
  /**
2497
2497
  * <p>The identifier of the identity store that is connected to the Identity Center
2498
2498
  * instance.</p>
2499
2499
  * @public
2500
2500
  */
2501
- IdentityStoreId?: string;
2501
+ IdentityStoreId?: string | undefined;
2502
2502
  /**
2503
2503
  * <p>The Amazon Web Services account ID number of the owner of the Identity Center instance.</p>
2504
2504
  * @public
2505
2505
  */
2506
- OwnerAccountId?: string;
2506
+ OwnerAccountId?: string | undefined;
2507
2507
  /**
2508
2508
  * <p>The name of the Identity Center instance.</p>
2509
2509
  * @public
2510
2510
  */
2511
- Name?: string;
2511
+ Name?: string | undefined;
2512
2512
  /**
2513
2513
  * <p>The date and time that the Identity Center instance was created.</p>
2514
2514
  * @public
2515
2515
  */
2516
- CreatedDate?: Date;
2516
+ CreatedDate?: Date | undefined;
2517
2517
  /**
2518
2518
  * <p>The current status of this Identity Center instance.</p>
2519
2519
  * @public
2520
2520
  */
2521
- Status?: InstanceStatus;
2521
+ Status?: InstanceStatus | undefined;
2522
2522
  }
2523
2523
  /**
2524
2524
  * <p>Filters the operation status list based on the passed attribute value.</p>
@@ -2529,7 +2529,7 @@ export interface OperationStatusFilter {
2529
2529
  * <p>Filters the list operations result based on the status attribute.</p>
2530
2530
  * @public
2531
2531
  */
2532
- Status?: StatusValues;
2532
+ Status?: StatusValues | undefined;
2533
2533
  }
2534
2534
  /**
2535
2535
  * @public
@@ -2546,17 +2546,17 @@ export interface ListAccountAssignmentCreationStatusRequest {
2546
2546
  * <p>The maximum number of results to display for the assignment.</p>
2547
2547
  * @public
2548
2548
  */
2549
- MaxResults?: number;
2549
+ MaxResults?: number | undefined;
2550
2550
  /**
2551
2551
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
2552
2552
  * @public
2553
2553
  */
2554
- NextToken?: string;
2554
+ NextToken?: string | undefined;
2555
2555
  /**
2556
2556
  * <p>Filters results based on the passed attribute value.</p>
2557
2557
  * @public
2558
2558
  */
2559
- Filter?: OperationStatusFilter;
2559
+ Filter?: OperationStatusFilter | undefined;
2560
2560
  }
2561
2561
  /**
2562
2562
  * @public
@@ -2566,12 +2566,12 @@ export interface ListAccountAssignmentCreationStatusResponse {
2566
2566
  * <p>The status object for the account assignment creation operation.</p>
2567
2567
  * @public
2568
2568
  */
2569
- AccountAssignmentsCreationStatus?: AccountAssignmentOperationStatusMetadata[];
2569
+ AccountAssignmentsCreationStatus?: AccountAssignmentOperationStatusMetadata[] | undefined;
2570
2570
  /**
2571
2571
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
2572
2572
  * @public
2573
2573
  */
2574
- NextToken?: string;
2574
+ NextToken?: string | undefined;
2575
2575
  }
2576
2576
  /**
2577
2577
  * @public
@@ -2588,17 +2588,17 @@ export interface ListAccountAssignmentDeletionStatusRequest {
2588
2588
  * <p>The maximum number of results to display for the assignment.</p>
2589
2589
  * @public
2590
2590
  */
2591
- MaxResults?: number;
2591
+ MaxResults?: number | undefined;
2592
2592
  /**
2593
2593
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
2594
2594
  * @public
2595
2595
  */
2596
- NextToken?: string;
2596
+ NextToken?: string | undefined;
2597
2597
  /**
2598
2598
  * <p>Filters results based on the passed attribute value.</p>
2599
2599
  * @public
2600
2600
  */
2601
- Filter?: OperationStatusFilter;
2601
+ Filter?: OperationStatusFilter | undefined;
2602
2602
  }
2603
2603
  /**
2604
2604
  * @public
@@ -2608,12 +2608,12 @@ export interface ListAccountAssignmentDeletionStatusResponse {
2608
2608
  * <p>The status object for the account assignment deletion operation.</p>
2609
2609
  * @public
2610
2610
  */
2611
- AccountAssignmentsDeletionStatus?: AccountAssignmentOperationStatusMetadata[];
2611
+ AccountAssignmentsDeletionStatus?: AccountAssignmentOperationStatusMetadata[] | undefined;
2612
2612
  /**
2613
2613
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
2614
2614
  * @public
2615
2615
  */
2616
- NextToken?: string;
2616
+ NextToken?: string | undefined;
2617
2617
  }
2618
2618
  /**
2619
2619
  * @public
@@ -2640,12 +2640,12 @@ export interface ListAccountAssignmentsRequest {
2640
2640
  * <p>The maximum number of results to display for the assignment.</p>
2641
2641
  * @public
2642
2642
  */
2643
- MaxResults?: number;
2643
+ MaxResults?: number | undefined;
2644
2644
  /**
2645
2645
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
2646
2646
  * @public
2647
2647
  */
2648
- NextToken?: string;
2648
+ NextToken?: string | undefined;
2649
2649
  }
2650
2650
  /**
2651
2651
  * @public
@@ -2655,12 +2655,12 @@ export interface ListAccountAssignmentsResponse {
2655
2655
  * <p>The list of assignments that match the input Amazon Web Services account and permission set.</p>
2656
2656
  * @public
2657
2657
  */
2658
- AccountAssignments?: AccountAssignment[];
2658
+ AccountAssignments?: AccountAssignment[] | undefined;
2659
2659
  /**
2660
2660
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
2661
2661
  * @public
2662
2662
  */
2663
- NextToken?: string;
2663
+ NextToken?: string | undefined;
2664
2664
  }
2665
2665
  /**
2666
2666
  * <p>A structure that describes a filter for account assignments.</p>
@@ -2671,7 +2671,7 @@ export interface ListAccountAssignmentsFilter {
2671
2671
  * <p>The ID number of an Amazon Web Services account that filters the results in the response.</p>
2672
2672
  * @public
2673
2673
  */
2674
- AccountId?: string;
2674
+ AccountId?: string | undefined;
2675
2675
  }
2676
2676
  /**
2677
2677
  * @public
@@ -2698,7 +2698,7 @@ export interface ListAccountAssignmentsForPrincipalRequest {
2698
2698
  * this ID number.</p>
2699
2699
  * @public
2700
2700
  */
2701
- Filter?: ListAccountAssignmentsFilter;
2701
+ Filter?: ListAccountAssignmentsFilter | undefined;
2702
2702
  /**
2703
2703
  * <p>Specifies that you want to receive the next page of results. Valid
2704
2704
  * only if you received a <code>NextToken</code> response in the previous request. If you
@@ -2707,7 +2707,7 @@ export interface ListAccountAssignmentsForPrincipalRequest {
2707
2707
  * next page of results.</p>
2708
2708
  * @public
2709
2709
  */
2710
- NextToken?: string;
2710
+ NextToken?: string | undefined;
2711
2711
  /**
2712
2712
  * <p>Specifies the total number of results that you want included in each
2713
2713
  * response. If additional items exist beyond the number you specify, the
@@ -2719,7 +2719,7 @@ export interface ListAccountAssignmentsForPrincipalRequest {
2719
2719
  * results.</p>
2720
2720
  * @public
2721
2721
  */
2722
- MaxResults?: number;
2722
+ MaxResults?: number | undefined;
2723
2723
  }
2724
2724
  /**
2725
2725
  * @public
@@ -2729,7 +2729,7 @@ export interface ListAccountAssignmentsForPrincipalResponse {
2729
2729
  * <p>An array list of the account assignments for the principal.</p>
2730
2730
  * @public
2731
2731
  */
2732
- AccountAssignments?: AccountAssignmentForPrincipal[];
2732
+ AccountAssignments?: AccountAssignmentForPrincipal[] | undefined;
2733
2733
  /**
2734
2734
  * <p>If present, this value indicates that more output is available than
2735
2735
  * is included in the current response. Use this value in the <code>NextToken</code>
@@ -2738,7 +2738,7 @@ export interface ListAccountAssignmentsForPrincipalResponse {
2738
2738
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
2739
2739
  * @public
2740
2740
  */
2741
- NextToken?: string;
2741
+ NextToken?: string | undefined;
2742
2742
  }
2743
2743
  /**
2744
2744
  * @public
@@ -2773,17 +2773,17 @@ export interface ListAccountsForProvisionedPermissionSetRequest {
2773
2773
  * <p>The permission set provisioning status for an Amazon Web Services account.</p>
2774
2774
  * @public
2775
2775
  */
2776
- ProvisioningStatus?: ProvisioningStatus;
2776
+ ProvisioningStatus?: ProvisioningStatus | undefined;
2777
2777
  /**
2778
2778
  * <p>The maximum number of results to display for the <a>PermissionSet</a>.</p>
2779
2779
  * @public
2780
2780
  */
2781
- MaxResults?: number;
2781
+ MaxResults?: number | undefined;
2782
2782
  /**
2783
2783
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
2784
2784
  * @public
2785
2785
  */
2786
- NextToken?: string;
2786
+ NextToken?: string | undefined;
2787
2787
  }
2788
2788
  /**
2789
2789
  * @public
@@ -2793,12 +2793,12 @@ export interface ListAccountsForProvisionedPermissionSetResponse {
2793
2793
  * <p>The list of Amazon Web Services <code>AccountIds</code>.</p>
2794
2794
  * @public
2795
2795
  */
2796
- AccountIds?: string[];
2796
+ AccountIds?: string[] | undefined;
2797
2797
  /**
2798
2798
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
2799
2799
  * @public
2800
2800
  */
2801
- NextToken?: string;
2801
+ NextToken?: string | undefined;
2802
2802
  }
2803
2803
  /**
2804
2804
  * @public
@@ -2820,7 +2820,7 @@ export interface ListApplicationAssignmentsRequest {
2820
2820
  * results.</p>
2821
2821
  * @public
2822
2822
  */
2823
- MaxResults?: number;
2823
+ MaxResults?: number | undefined;
2824
2824
  /**
2825
2825
  * <p>Specifies that you want to receive the next page of results. Valid
2826
2826
  * only if you received a <code>NextToken</code> response in the previous request. If you
@@ -2829,7 +2829,7 @@ export interface ListApplicationAssignmentsRequest {
2829
2829
  * next page of results.</p>
2830
2830
  * @public
2831
2831
  */
2832
- NextToken?: string;
2832
+ NextToken?: string | undefined;
2833
2833
  }
2834
2834
  /**
2835
2835
  * @public
@@ -2839,7 +2839,7 @@ export interface ListApplicationAssignmentsResponse {
2839
2839
  * <p>The list of users assigned to an application.</p>
2840
2840
  * @public
2841
2841
  */
2842
- ApplicationAssignments?: ApplicationAssignment[];
2842
+ ApplicationAssignments?: ApplicationAssignment[] | undefined;
2843
2843
  /**
2844
2844
  * <p>If present, this value indicates that more output is available than
2845
2845
  * is included in the current response. Use this value in the <code>NextToken</code>
@@ -2848,7 +2848,7 @@ export interface ListApplicationAssignmentsResponse {
2848
2848
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
2849
2849
  * @public
2850
2850
  */
2851
- NextToken?: string;
2851
+ NextToken?: string | undefined;
2852
2852
  }
2853
2853
  /**
2854
2854
  * <p>A structure that describes a filter for application assignments.</p>
@@ -2859,7 +2859,7 @@ export interface ListApplicationAssignmentsFilter {
2859
2859
  * <p>The ARN of an application.</p>
2860
2860
  * @public
2861
2861
  */
2862
- ApplicationArn?: string;
2862
+ ApplicationArn?: string | undefined;
2863
2863
  }
2864
2864
  /**
2865
2865
  * @public
@@ -2887,7 +2887,7 @@ export interface ListApplicationAssignmentsForPrincipalRequest {
2887
2887
  * has the specified ARN.</p>
2888
2888
  * @public
2889
2889
  */
2890
- Filter?: ListApplicationAssignmentsFilter;
2890
+ Filter?: ListApplicationAssignmentsFilter | undefined;
2891
2891
  /**
2892
2892
  * <p>Specifies that you want to receive the next page of results. Valid
2893
2893
  * only if you received a <code>NextToken</code> response in the previous request. If you
@@ -2896,7 +2896,7 @@ export interface ListApplicationAssignmentsForPrincipalRequest {
2896
2896
  * next page of results.</p>
2897
2897
  * @public
2898
2898
  */
2899
- NextToken?: string;
2899
+ NextToken?: string | undefined;
2900
2900
  /**
2901
2901
  * <p>Specifies the total number of results that you want included in each
2902
2902
  * response. If additional items exist beyond the number you specify, the
@@ -2908,7 +2908,7 @@ export interface ListApplicationAssignmentsForPrincipalRequest {
2908
2908
  * results.</p>
2909
2909
  * @public
2910
2910
  */
2911
- MaxResults?: number;
2911
+ MaxResults?: number | undefined;
2912
2912
  }
2913
2913
  /**
2914
2914
  * @public
@@ -2918,7 +2918,7 @@ export interface ListApplicationAssignmentsForPrincipalResponse {
2918
2918
  * <p>An array list of the application assignments for the specified principal.</p>
2919
2919
  * @public
2920
2920
  */
2921
- ApplicationAssignments?: ApplicationAssignmentForPrincipal[];
2921
+ ApplicationAssignments?: ApplicationAssignmentForPrincipal[] | undefined;
2922
2922
  /**
2923
2923
  * <p>If present, this value indicates that more output is available than
2924
2924
  * is included in the current response. Use this value in the <code>NextToken</code>
@@ -2927,7 +2927,7 @@ export interface ListApplicationAssignmentsForPrincipalResponse {
2927
2927
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
2928
2928
  * @public
2929
2929
  */
2930
- NextToken?: string;
2930
+ NextToken?: string | undefined;
2931
2931
  }
2932
2932
  /**
2933
2933
  * @public
@@ -2944,7 +2944,7 @@ export interface ListApplicationProvidersRequest {
2944
2944
  * results.</p>
2945
2945
  * @public
2946
2946
  */
2947
- MaxResults?: number;
2947
+ MaxResults?: number | undefined;
2948
2948
  /**
2949
2949
  * <p>Specifies that you want to receive the next page of results. Valid
2950
2950
  * only if you received a <code>NextToken</code> response in the previous request. If you
@@ -2953,7 +2953,7 @@ export interface ListApplicationProvidersRequest {
2953
2953
  * next page of results.</p>
2954
2954
  * @public
2955
2955
  */
2956
- NextToken?: string;
2956
+ NextToken?: string | undefined;
2957
2957
  }
2958
2958
  /**
2959
2959
  * @public
@@ -2963,7 +2963,7 @@ export interface ListApplicationProvidersResponse {
2963
2963
  * <p>An array list of structures that describe application providers.</p>
2964
2964
  * @public
2965
2965
  */
2966
- ApplicationProviders?: ApplicationProvider[];
2966
+ ApplicationProviders?: ApplicationProvider[] | undefined;
2967
2967
  /**
2968
2968
  * <p>If present, this value indicates that more output is available than
2969
2969
  * is included in the current response. Use this value in the <code>NextToken</code>
@@ -2972,7 +2972,7 @@ export interface ListApplicationProvidersResponse {
2972
2972
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
2973
2973
  * @public
2974
2974
  */
2975
- NextToken?: string;
2975
+ NextToken?: string | undefined;
2976
2976
  }
2977
2977
  /**
2978
2978
  * <p>A structure that describes a filter for applications.</p>
@@ -2983,12 +2983,12 @@ export interface ListApplicationsFilter {
2983
2983
  * <p>An Amazon Web Services account ID number that filters the results in the response.</p>
2984
2984
  * @public
2985
2985
  */
2986
- ApplicationAccount?: string;
2986
+ ApplicationAccount?: string | undefined;
2987
2987
  /**
2988
2988
  * <p>The ARN of an application provider that can filter the results in the response.</p>
2989
2989
  * @public
2990
2990
  */
2991
- ApplicationProvider?: string;
2991
+ ApplicationProvider?: string | undefined;
2992
2992
  }
2993
2993
  /**
2994
2994
  * @public
@@ -3012,7 +3012,7 @@ export interface ListApplicationsRequest {
3012
3012
  * results.</p>
3013
3013
  * @public
3014
3014
  */
3015
- MaxResults?: number;
3015
+ MaxResults?: number | undefined;
3016
3016
  /**
3017
3017
  * <p>Specifies that you want to receive the next page of results. Valid
3018
3018
  * only if you received a <code>NextToken</code> response in the previous request. If you
@@ -3021,12 +3021,12 @@ export interface ListApplicationsRequest {
3021
3021
  * next page of results.</p>
3022
3022
  * @public
3023
3023
  */
3024
- NextToken?: string;
3024
+ NextToken?: string | undefined;
3025
3025
  /**
3026
3026
  * <p>Filters response results. </p>
3027
3027
  * @public
3028
3028
  */
3029
- Filter?: ListApplicationsFilter;
3029
+ Filter?: ListApplicationsFilter | undefined;
3030
3030
  }
3031
3031
  /**
3032
3032
  * @public
@@ -3036,7 +3036,7 @@ export interface ListApplicationsResponse {
3036
3036
  * <p>Retrieves all applications associated with the instance.</p>
3037
3037
  * @public
3038
3038
  */
3039
- Applications?: Application[];
3039
+ Applications?: Application[] | undefined;
3040
3040
  /**
3041
3041
  * <p>If present, this value indicates that more output is available than
3042
3042
  * is included in the current response. Use this value in the <code>NextToken</code>
@@ -3045,7 +3045,7 @@ export interface ListApplicationsResponse {
3045
3045
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
3046
3046
  * @public
3047
3047
  */
3048
- NextToken?: string;
3048
+ NextToken?: string | undefined;
3049
3049
  }
3050
3050
  /**
3051
3051
  * @public
@@ -3065,13 +3065,13 @@ export interface ListCustomerManagedPolicyReferencesInPermissionSetRequest {
3065
3065
  * <p>The maximum number of results to display for the list call.</p>
3066
3066
  * @public
3067
3067
  */
3068
- MaxResults?: number;
3068
+ MaxResults?: number | undefined;
3069
3069
  /**
3070
3070
  * <p>The pagination token for the list API. Initially the value is null. Use the output of
3071
3071
  * previous API calls to make subsequent calls.</p>
3072
3072
  * @public
3073
3073
  */
3074
- NextToken?: string;
3074
+ NextToken?: string | undefined;
3075
3075
  }
3076
3076
  /**
3077
3077
  * @public
@@ -3082,13 +3082,13 @@ export interface ListCustomerManagedPolicyReferencesInPermissionSetResponse {
3082
3082
  * to your permission set.</p>
3083
3083
  * @public
3084
3084
  */
3085
- CustomerManagedPolicyReferences?: CustomerManagedPolicyReference[];
3085
+ CustomerManagedPolicyReferences?: CustomerManagedPolicyReference[] | undefined;
3086
3086
  /**
3087
3087
  * <p>The pagination token for the list API. Initially the value is null. Use the output of
3088
3088
  * previous API calls to make subsequent calls.</p>
3089
3089
  * @public
3090
3090
  */
3091
- NextToken?: string;
3091
+ NextToken?: string | undefined;
3092
3092
  }
3093
3093
  /**
3094
3094
  * @public
@@ -3098,12 +3098,12 @@ export interface ListInstancesRequest {
3098
3098
  * <p>The maximum number of results to display for the instance.</p>
3099
3099
  * @public
3100
3100
  */
3101
- MaxResults?: number;
3101
+ MaxResults?: number | undefined;
3102
3102
  /**
3103
3103
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3104
3104
  * @public
3105
3105
  */
3106
- NextToken?: string;
3106
+ NextToken?: string | undefined;
3107
3107
  }
3108
3108
  /**
3109
3109
  * @public
@@ -3113,12 +3113,12 @@ export interface ListInstancesResponse {
3113
3113
  * <p>Lists the IAM Identity Center instances that the caller has access to.</p>
3114
3114
  * @public
3115
3115
  */
3116
- Instances?: InstanceMetadata[];
3116
+ Instances?: InstanceMetadata[] | undefined;
3117
3117
  /**
3118
3118
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3119
3119
  * @public
3120
3120
  */
3121
- NextToken?: string;
3121
+ NextToken?: string | undefined;
3122
3122
  }
3123
3123
  /**
3124
3124
  * @public
@@ -3141,12 +3141,12 @@ export interface ListManagedPoliciesInPermissionSetRequest {
3141
3141
  * <p>The maximum number of results to display for the <a>PermissionSet</a>.</p>
3142
3142
  * @public
3143
3143
  */
3144
- MaxResults?: number;
3144
+ MaxResults?: number | undefined;
3145
3145
  /**
3146
3146
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3147
3147
  * @public
3148
3148
  */
3149
- NextToken?: string;
3149
+ NextToken?: string | undefined;
3150
3150
  }
3151
3151
  /**
3152
3152
  * @public
@@ -3156,12 +3156,12 @@ export interface ListManagedPoliciesInPermissionSetResponse {
3156
3156
  * <p>An array of the <a>AttachedManagedPolicy</a> data type object.</p>
3157
3157
  * @public
3158
3158
  */
3159
- AttachedManagedPolicies?: AttachedManagedPolicy[];
3159
+ AttachedManagedPolicies?: AttachedManagedPolicy[] | undefined;
3160
3160
  /**
3161
3161
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3162
3162
  * @public
3163
3163
  */
3164
- NextToken?: string;
3164
+ NextToken?: string | undefined;
3165
3165
  }
3166
3166
  /**
3167
3167
  * @public
@@ -3178,17 +3178,17 @@ export interface ListPermissionSetProvisioningStatusRequest {
3178
3178
  * <p>The maximum number of results to display for the assignment.</p>
3179
3179
  * @public
3180
3180
  */
3181
- MaxResults?: number;
3181
+ MaxResults?: number | undefined;
3182
3182
  /**
3183
3183
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3184
3184
  * @public
3185
3185
  */
3186
- NextToken?: string;
3186
+ NextToken?: string | undefined;
3187
3187
  /**
3188
3188
  * <p>Filters results based on the passed attribute value.</p>
3189
3189
  * @public
3190
3190
  */
3191
- Filter?: OperationStatusFilter;
3191
+ Filter?: OperationStatusFilter | undefined;
3192
3192
  }
3193
3193
  /**
3194
3194
  * <p>Provides information about the permission set provisioning status.</p>
@@ -3199,18 +3199,18 @@ export interface PermissionSetProvisioningStatusMetadata {
3199
3199
  * <p>The status of the permission set provisioning process.</p>
3200
3200
  * @public
3201
3201
  */
3202
- Status?: StatusValues;
3202
+ Status?: StatusValues | undefined;
3203
3203
  /**
3204
3204
  * <p>The identifier for tracking the request operation that is generated by the universally
3205
3205
  * unique identifier (UUID) workflow.</p>
3206
3206
  * @public
3207
3207
  */
3208
- RequestId?: string;
3208
+ RequestId?: string | undefined;
3209
3209
  /**
3210
3210
  * <p>The date that the permission set was created.</p>
3211
3211
  * @public
3212
3212
  */
3213
- CreatedDate?: Date;
3213
+ CreatedDate?: Date | undefined;
3214
3214
  }
3215
3215
  /**
3216
3216
  * @public
@@ -3220,12 +3220,12 @@ export interface ListPermissionSetProvisioningStatusResponse {
3220
3220
  * <p>The status object for the permission set provisioning operation.</p>
3221
3221
  * @public
3222
3222
  */
3223
- PermissionSetsProvisioningStatus?: PermissionSetProvisioningStatusMetadata[];
3223
+ PermissionSetsProvisioningStatus?: PermissionSetProvisioningStatusMetadata[] | undefined;
3224
3224
  /**
3225
3225
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3226
3226
  * @public
3227
3227
  */
3228
- NextToken?: string;
3228
+ NextToken?: string | undefined;
3229
3229
  }
3230
3230
  /**
3231
3231
  * @public
@@ -3242,12 +3242,12 @@ export interface ListPermissionSetsRequest {
3242
3242
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3243
3243
  * @public
3244
3244
  */
3245
- NextToken?: string;
3245
+ NextToken?: string | undefined;
3246
3246
  /**
3247
3247
  * <p>The maximum number of results to display for the assignment.</p>
3248
3248
  * @public
3249
3249
  */
3250
- MaxResults?: number;
3250
+ MaxResults?: number | undefined;
3251
3251
  }
3252
3252
  /**
3253
3253
  * @public
@@ -3257,12 +3257,12 @@ export interface ListPermissionSetsResponse {
3257
3257
  * <p>Defines the level of access on an Amazon Web Services account.</p>
3258
3258
  * @public
3259
3259
  */
3260
- PermissionSets?: string[];
3260
+ PermissionSets?: string[] | undefined;
3261
3261
  /**
3262
3262
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3263
3263
  * @public
3264
3264
  */
3265
- NextToken?: string;
3265
+ NextToken?: string | undefined;
3266
3266
  }
3267
3267
  /**
3268
3268
  * @public
@@ -3284,17 +3284,17 @@ export interface ListPermissionSetsProvisionedToAccountRequest {
3284
3284
  * <p>The status object for the permission set provisioning operation.</p>
3285
3285
  * @public
3286
3286
  */
3287
- ProvisioningStatus?: ProvisioningStatus;
3287
+ ProvisioningStatus?: ProvisioningStatus | undefined;
3288
3288
  /**
3289
3289
  * <p>The maximum number of results to display for the assignment.</p>
3290
3290
  * @public
3291
3291
  */
3292
- MaxResults?: number;
3292
+ MaxResults?: number | undefined;
3293
3293
  /**
3294
3294
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3295
3295
  * @public
3296
3296
  */
3297
- NextToken?: string;
3297
+ NextToken?: string | undefined;
3298
3298
  }
3299
3299
  /**
3300
3300
  * @public
@@ -3304,12 +3304,12 @@ export interface ListPermissionSetsProvisionedToAccountResponse {
3304
3304
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3305
3305
  * @public
3306
3306
  */
3307
- NextToken?: string;
3307
+ NextToken?: string | undefined;
3308
3308
  /**
3309
3309
  * <p>Defines the level of access that an Amazon Web Services account has.</p>
3310
3310
  * @public
3311
3311
  */
3312
- PermissionSets?: string[];
3312
+ PermissionSets?: string[] | undefined;
3313
3313
  }
3314
3314
  /**
3315
3315
  * @public
@@ -3321,7 +3321,7 @@ export interface ListTagsForResourceRequest {
3321
3321
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
3322
3322
  * @public
3323
3323
  */
3324
- InstanceArn?: string;
3324
+ InstanceArn?: string | undefined;
3325
3325
  /**
3326
3326
  * <p>The ARN of the resource with the tags to be listed.</p>
3327
3327
  * @public
@@ -3331,7 +3331,7 @@ export interface ListTagsForResourceRequest {
3331
3331
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3332
3332
  * @public
3333
3333
  */
3334
- NextToken?: string;
3334
+ NextToken?: string | undefined;
3335
3335
  }
3336
3336
  /**
3337
3337
  * @public
@@ -3341,12 +3341,12 @@ export interface ListTagsForResourceResponse {
3341
3341
  * <p>A set of key-value pairs that are used to manage the resource.</p>
3342
3342
  * @public
3343
3343
  */
3344
- Tags?: Tag[];
3344
+ Tags?: Tag[] | undefined;
3345
3345
  /**
3346
3346
  * <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
3347
3347
  * @public
3348
3348
  */
3349
- NextToken?: string;
3349
+ NextToken?: string | undefined;
3350
3350
  }
3351
3351
  /**
3352
3352
  * @public
@@ -3369,7 +3369,7 @@ export interface ListTrustedTokenIssuersRequest {
3369
3369
  * results.</p>
3370
3370
  * @public
3371
3371
  */
3372
- MaxResults?: number;
3372
+ MaxResults?: number | undefined;
3373
3373
  /**
3374
3374
  * <p>Specifies that you want to receive the next page of results. Valid
3375
3375
  * only if you received a <code>NextToken</code> response in the previous request. If you
@@ -3378,7 +3378,7 @@ export interface ListTrustedTokenIssuersRequest {
3378
3378
  * next page of results.</p>
3379
3379
  * @public
3380
3380
  */
3381
- NextToken?: string;
3381
+ NextToken?: string | undefined;
3382
3382
  }
3383
3383
  /**
3384
3384
  * <p>A structure that describes a trusted token issuer.</p>
@@ -3389,17 +3389,17 @@ export interface TrustedTokenIssuerMetadata {
3389
3389
  * <p>The ARN of the trusted token issuer configuration in the instance of IAM Identity Center.</p>
3390
3390
  * @public
3391
3391
  */
3392
- TrustedTokenIssuerArn?: string;
3392
+ TrustedTokenIssuerArn?: string | undefined;
3393
3393
  /**
3394
3394
  * <p>The name of the trusted token issuer configuration in the instance of IAM Identity Center.</p>
3395
3395
  * @public
3396
3396
  */
3397
- Name?: string;
3397
+ Name?: string | undefined;
3398
3398
  /**
3399
3399
  * <p>The type of trusted token issuer.</p>
3400
3400
  * @public
3401
3401
  */
3402
- TrustedTokenIssuerType?: TrustedTokenIssuerType;
3402
+ TrustedTokenIssuerType?: TrustedTokenIssuerType | undefined;
3403
3403
  }
3404
3404
  /**
3405
3405
  * @public
@@ -3409,7 +3409,7 @@ export interface ListTrustedTokenIssuersResponse {
3409
3409
  * <p>An array list of the trusted token issuer configurations.</p>
3410
3410
  * @public
3411
3411
  */
3412
- TrustedTokenIssuers?: TrustedTokenIssuerMetadata[];
3412
+ TrustedTokenIssuers?: TrustedTokenIssuerMetadata[] | undefined;
3413
3413
  /**
3414
3414
  * <p>If present, this value indicates that more output is available than
3415
3415
  * is included in the current response. Use this value in the <code>NextToken</code>
@@ -3418,7 +3418,7 @@ export interface ListTrustedTokenIssuersResponse {
3418
3418
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
3419
3419
  * @public
3420
3420
  */
3421
- NextToken?: string;
3421
+ NextToken?: string | undefined;
3422
3422
  }
3423
3423
  /**
3424
3424
  * <p>A structure that describes updated configuration settings for a trusted token issuer that supports
@@ -3431,19 +3431,19 @@ export interface OidcJwtUpdateConfiguration {
3431
3431
  * an IAM Identity Center token.</p>
3432
3432
  * @public
3433
3433
  */
3434
- ClaimAttributePath?: string;
3434
+ ClaimAttributePath?: string | undefined;
3435
3435
  /**
3436
3436
  * <p>The path of the destination attribute in a JWT from IAM Identity Center. The attribute mapped by this JMESPath expression is compared against the attribute mapped by <code>ClaimAttributePath</code> when a trusted token issuer token is exchanged for
3437
3437
  * an IAM Identity Center token.</p>
3438
3438
  * @public
3439
3439
  */
3440
- IdentityStoreAttributePath?: string;
3440
+ IdentityStoreAttributePath?: string | undefined;
3441
3441
  /**
3442
3442
  * <p>The method that the trusted token issuer can use to retrieve the JSON Web Key Set used to verify a
3443
3443
  * JWT.</p>
3444
3444
  * @public
3445
3445
  */
3446
- JwksRetrievalOption?: JwksRetrievalOption;
3446
+ JwksRetrievalOption?: JwksRetrievalOption | undefined;
3447
3447
  }
3448
3448
  /**
3449
3449
  * @public
@@ -3477,7 +3477,7 @@ export interface ProvisionPermissionSetRequest {
3477
3477
  * <p>TargetID is an Amazon Web Services account identifier, (For example, 123456789012).</p>
3478
3478
  * @public
3479
3479
  */
3480
- TargetId?: string;
3480
+ TargetId?: string | undefined;
3481
3481
  /**
3482
3482
  * <p>The entity type for which the assignment will be created.</p>
3483
3483
  * @public
@@ -3492,7 +3492,7 @@ export interface ProvisionPermissionSetResponse {
3492
3492
  * <p>The status object for the permission set provisioning operation.</p>
3493
3493
  * @public
3494
3494
  */
3495
- PermissionSetProvisioningStatus?: PermissionSetProvisioningStatus;
3495
+ PermissionSetProvisioningStatus?: PermissionSetProvisioningStatus | undefined;
3496
3496
  }
3497
3497
  /**
3498
3498
  * @public
@@ -3579,7 +3579,7 @@ export interface TagResourceRequest {
3579
3579
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
3580
3580
  * @public
3581
3581
  */
3582
- InstanceArn?: string;
3582
+ InstanceArn?: string | undefined;
3583
3583
  /**
3584
3584
  * <p>The ARN of the resource with the tags to be listed.</p>
3585
3585
  * @public
@@ -3606,7 +3606,7 @@ export interface UntagResourceRequest {
3606
3606
  * Names (ARNs) and Amazon Web Services Service Namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
3607
3607
  * @public
3608
3608
  */
3609
- InstanceArn?: string;
3609
+ InstanceArn?: string | undefined;
3610
3610
  /**
3611
3611
  * <p>The ARN of the resource with the tags to be listed.</p>
3612
3612
  * @public
@@ -3632,7 +3632,7 @@ export interface UpdateApplicationPortalOptions {
3632
3632
  * <p>A structure that describes the sign-in options for an application portal.</p>
3633
3633
  * @public
3634
3634
  */
3635
- SignInOptions?: SignInOptions;
3635
+ SignInOptions?: SignInOptions | undefined;
3636
3636
  }
3637
3637
  /**
3638
3638
  * @public
@@ -3648,23 +3648,23 @@ export interface UpdateApplicationRequest {
3648
3648
  * <p>Specifies the updated name for the application.</p>
3649
3649
  * @public
3650
3650
  */
3651
- Name?: string;
3651
+ Name?: string | undefined;
3652
3652
  /**
3653
3653
  * <p>The description of the .</p>
3654
3654
  * @public
3655
3655
  */
3656
- Description?: string;
3656
+ Description?: string | undefined;
3657
3657
  /**
3658
3658
  * <p>Specifies whether the application is enabled or disabled.</p>
3659
3659
  * @public
3660
3660
  */
3661
- Status?: ApplicationStatus;
3661
+ Status?: ApplicationStatus | undefined;
3662
3662
  /**
3663
3663
  * <p>A structure that describes the options for the portal associated with an
3664
3664
  * application.</p>
3665
3665
  * @public
3666
3666
  */
3667
- PortalOptions?: UpdateApplicationPortalOptions;
3667
+ PortalOptions?: UpdateApplicationPortalOptions | undefined;
3668
3668
  }
3669
3669
  /**
3670
3670
  * @public
@@ -3732,19 +3732,19 @@ export interface UpdatePermissionSetRequest {
3732
3732
  * <p>The description of the <a>PermissionSet</a>.</p>
3733
3733
  * @public
3734
3734
  */
3735
- Description?: string;
3735
+ Description?: string | undefined;
3736
3736
  /**
3737
3737
  * <p>The length of time that the application user sessions are valid for in the ISO-8601
3738
3738
  * standard.</p>
3739
3739
  * @public
3740
3740
  */
3741
- SessionDuration?: string;
3741
+ SessionDuration?: string | undefined;
3742
3742
  /**
3743
3743
  * <p>Used to redirect users within the application during the federation authentication
3744
3744
  * process.</p>
3745
3745
  * @public
3746
3746
  */
3747
- RelayState?: string;
3747
+ RelayState?: string | undefined;
3748
3748
  }
3749
3749
  /**
3750
3750
  * @public
@@ -3797,13 +3797,13 @@ export interface UpdateTrustedTokenIssuerRequest {
3797
3797
  * <p>Specifies the updated name to be applied to the trusted token issuer configuration.</p>
3798
3798
  * @public
3799
3799
  */
3800
- Name?: string;
3800
+ Name?: string | undefined;
3801
3801
  /**
3802
3802
  * <p>Specifies a structure with settings to apply to the specified trusted token issuer. The settings that
3803
3803
  * you can provide are determined by the type of the trusted token issuer that you are updating.</p>
3804
3804
  * @public
3805
3805
  */
3806
- TrustedTokenIssuerConfiguration?: TrustedTokenIssuerUpdateConfiguration;
3806
+ TrustedTokenIssuerConfiguration?: TrustedTokenIssuerUpdateConfiguration | undefined;
3807
3807
  }
3808
3808
  /**
3809
3809
  * @public