@aws-sdk/client-rolesanywhere 3.687.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.
- package/dist-types/models/models_0.d.ts +101 -101
- package/dist-types/ts3.4/models/models_0.d.ts +101 -101
- package/package.json +7 -7
|
@@ -45,12 +45,12 @@ export interface AttributeMapping {
|
|
|
45
45
|
* <p>Fields (x509Subject, x509Issuer and x509SAN) within X.509 certificates.</p>
|
|
46
46
|
* @public
|
|
47
47
|
*/
|
|
48
|
-
certificateField?: CertificateField;
|
|
48
|
+
certificateField?: CertificateField | undefined;
|
|
49
49
|
/**
|
|
50
50
|
* <p>A list of mapping entries for every supported specifier or sub-field.</p>
|
|
51
51
|
* @public
|
|
52
52
|
*/
|
|
53
|
-
mappingRules?: MappingRule[];
|
|
53
|
+
mappingRules?: MappingRule[] | undefined;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
56
|
* <p>A label that consists of a key and value you define. </p>
|
|
@@ -81,12 +81,12 @@ export interface CreateProfileRequest {
|
|
|
81
81
|
* <p>Specifies whether instance properties are required in temporary credential requests with this profile. </p>
|
|
82
82
|
* @public
|
|
83
83
|
*/
|
|
84
|
-
requireInstanceProperties?: boolean;
|
|
84
|
+
requireInstanceProperties?: boolean | undefined;
|
|
85
85
|
/**
|
|
86
86
|
* <p>A session policy that applies to the trust boundary of the vended session credentials. </p>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
sessionPolicy?: string;
|
|
89
|
+
sessionPolicy?: string | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* <p>A list of IAM roles that this profile can assume in a temporary credential request.</p>
|
|
92
92
|
* @public
|
|
@@ -96,29 +96,29 @@ export interface CreateProfileRequest {
|
|
|
96
96
|
* <p>A list of managed policy ARNs that apply to the vended session credentials. </p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
managedPolicyArns?: string[];
|
|
99
|
+
managedPolicyArns?: string[] | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* <p> Used to determine how long sessions vended using this profile are valid for. See the <code>Expiration</code> section of the
|
|
102
102
|
* <a href="https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object">CreateSession API documentation</a>
|
|
103
103
|
* page for more details. In requests, if this value is not provided, the default value will be 3600. </p>
|
|
104
104
|
* @public
|
|
105
105
|
*/
|
|
106
|
-
durationSeconds?: number;
|
|
106
|
+
durationSeconds?: number | undefined;
|
|
107
107
|
/**
|
|
108
108
|
* <p>Specifies whether the profile is enabled.</p>
|
|
109
109
|
* @public
|
|
110
110
|
*/
|
|
111
|
-
enabled?: boolean;
|
|
111
|
+
enabled?: boolean | undefined;
|
|
112
112
|
/**
|
|
113
113
|
* <p>The tags to attach to the profile.</p>
|
|
114
114
|
* @public
|
|
115
115
|
*/
|
|
116
|
-
tags?: Tag[];
|
|
116
|
+
tags?: Tag[] | undefined;
|
|
117
117
|
/**
|
|
118
118
|
* <p>Used to determine if a custom role session name will be accepted in a temporary credential request.</p>
|
|
119
119
|
* @public
|
|
120
120
|
*/
|
|
121
|
-
acceptRoleSessionName?: boolean;
|
|
121
|
+
acceptRoleSessionName?: boolean | undefined;
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* <p>The state of the profile after a read or write operation.</p>
|
|
@@ -129,74 +129,74 @@ export interface ProfileDetail {
|
|
|
129
129
|
* <p>The unique identifier of the profile.</p>
|
|
130
130
|
* @public
|
|
131
131
|
*/
|
|
132
|
-
profileId?: string;
|
|
132
|
+
profileId?: string | undefined;
|
|
133
133
|
/**
|
|
134
134
|
* <p>The ARN of the profile.</p>
|
|
135
135
|
* @public
|
|
136
136
|
*/
|
|
137
|
-
profileArn?: string;
|
|
137
|
+
profileArn?: string | undefined;
|
|
138
138
|
/**
|
|
139
139
|
* <p>The name of the profile.</p>
|
|
140
140
|
* @public
|
|
141
141
|
*/
|
|
142
|
-
name?: string;
|
|
142
|
+
name?: string | undefined;
|
|
143
143
|
/**
|
|
144
144
|
* <p>Specifies whether instance properties are required in temporary credential requests with this profile. </p>
|
|
145
145
|
* @public
|
|
146
146
|
*/
|
|
147
|
-
requireInstanceProperties?: boolean;
|
|
147
|
+
requireInstanceProperties?: boolean | undefined;
|
|
148
148
|
/**
|
|
149
149
|
* <p>Indicates whether the profile is enabled.</p>
|
|
150
150
|
* @public
|
|
151
151
|
*/
|
|
152
|
-
enabled?: boolean;
|
|
152
|
+
enabled?: boolean | undefined;
|
|
153
153
|
/**
|
|
154
154
|
* <p>The Amazon Web Services account that created the profile.</p>
|
|
155
155
|
* @public
|
|
156
156
|
*/
|
|
157
|
-
createdBy?: string;
|
|
157
|
+
createdBy?: string | undefined;
|
|
158
158
|
/**
|
|
159
159
|
* <p>A session policy that applies to the trust boundary of the vended session credentials. </p>
|
|
160
160
|
* @public
|
|
161
161
|
*/
|
|
162
|
-
sessionPolicy?: string;
|
|
162
|
+
sessionPolicy?: string | undefined;
|
|
163
163
|
/**
|
|
164
164
|
* <p>A list of IAM roles that this profile can assume in a temporary credential request.</p>
|
|
165
165
|
* @public
|
|
166
166
|
*/
|
|
167
|
-
roleArns?: string[];
|
|
167
|
+
roleArns?: string[] | undefined;
|
|
168
168
|
/**
|
|
169
169
|
* <p>A list of managed policy ARNs that apply to the vended session credentials. </p>
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
|
-
managedPolicyArns?: string[];
|
|
172
|
+
managedPolicyArns?: string[] | undefined;
|
|
173
173
|
/**
|
|
174
174
|
* <p>The ISO-8601 timestamp when the profile was created. </p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
createdAt?: Date;
|
|
177
|
+
createdAt?: Date | undefined;
|
|
178
178
|
/**
|
|
179
179
|
* <p>The ISO-8601 timestamp when the profile was last updated. </p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
updatedAt?: Date;
|
|
182
|
+
updatedAt?: Date | undefined;
|
|
183
183
|
/**
|
|
184
184
|
* <p> Used to determine how long sessions vended using this profile are valid for. See the <code>Expiration</code> section of the
|
|
185
185
|
* <a href="https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object">CreateSession API documentation</a>
|
|
186
186
|
* page for more details. In requests, if this value is not provided, the default value will be 3600. </p>
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
|
-
durationSeconds?: number;
|
|
189
|
+
durationSeconds?: number | undefined;
|
|
190
190
|
/**
|
|
191
191
|
* <p>Used to determine if a custom role session name will be accepted in a temporary credential request.</p>
|
|
192
192
|
* @public
|
|
193
193
|
*/
|
|
194
|
-
acceptRoleSessionName?: boolean;
|
|
194
|
+
acceptRoleSessionName?: boolean | undefined;
|
|
195
195
|
/**
|
|
196
196
|
* <p>A mapping applied to the authenticating end-entity certificate.</p>
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
attributeMappings?: AttributeMapping[];
|
|
199
|
+
attributeMappings?: AttributeMapping[] | undefined;
|
|
200
200
|
}
|
|
201
201
|
/**
|
|
202
202
|
* @public
|
|
@@ -206,7 +206,7 @@ export interface ProfileDetailResponse {
|
|
|
206
206
|
* <p>The state of the profile after a read or write operation.</p>
|
|
207
207
|
* @public
|
|
208
208
|
*/
|
|
209
|
-
profile?: ProfileDetail;
|
|
209
|
+
profile?: ProfileDetail | undefined;
|
|
210
210
|
}
|
|
211
211
|
/**
|
|
212
212
|
* <p>Validation exception error.</p>
|
|
@@ -265,7 +265,7 @@ export interface NotificationSetting {
|
|
|
265
265
|
* <p>The number of days before a notification event. This value is required for a notification setting that is enabled.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
threshold?: number;
|
|
268
|
+
threshold?: number | undefined;
|
|
269
269
|
/**
|
|
270
270
|
* <p>The specified channel of notification.
|
|
271
271
|
* IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health Dashboard to notify for an event.</p>
|
|
@@ -274,7 +274,7 @@ export interface NotificationSetting {
|
|
|
274
274
|
* </note>
|
|
275
275
|
* @public
|
|
276
276
|
*/
|
|
277
|
-
channel?: NotificationChannel;
|
|
277
|
+
channel?: NotificationChannel | undefined;
|
|
278
278
|
}
|
|
279
279
|
/**
|
|
280
280
|
* <p>The data field of the trust anchor depending on its type. </p>
|
|
@@ -343,12 +343,12 @@ export interface Source {
|
|
|
343
343
|
* <p>The type of the trust anchor. </p>
|
|
344
344
|
* @public
|
|
345
345
|
*/
|
|
346
|
-
sourceType?: TrustAnchorType;
|
|
346
|
+
sourceType?: TrustAnchorType | undefined;
|
|
347
347
|
/**
|
|
348
348
|
* <p>The data field of the trust anchor depending on its type. </p>
|
|
349
349
|
* @public
|
|
350
350
|
*/
|
|
351
|
-
sourceData?: SourceData;
|
|
351
|
+
sourceData?: SourceData | undefined;
|
|
352
352
|
}
|
|
353
353
|
/**
|
|
354
354
|
* @public
|
|
@@ -368,17 +368,17 @@ export interface CreateTrustAnchorRequest {
|
|
|
368
368
|
* <p>Specifies whether the trust anchor is enabled.</p>
|
|
369
369
|
* @public
|
|
370
370
|
*/
|
|
371
|
-
enabled?: boolean;
|
|
371
|
+
enabled?: boolean | undefined;
|
|
372
372
|
/**
|
|
373
373
|
* <p>The tags to attach to the trust anchor.</p>
|
|
374
374
|
* @public
|
|
375
375
|
*/
|
|
376
|
-
tags?: Tag[];
|
|
376
|
+
tags?: Tag[] | undefined;
|
|
377
377
|
/**
|
|
378
378
|
* <p>A list of notification settings to be associated to the trust anchor.</p>
|
|
379
379
|
* @public
|
|
380
380
|
*/
|
|
381
|
-
notificationSettings?: NotificationSetting[];
|
|
381
|
+
notificationSettings?: NotificationSetting[] | undefined;
|
|
382
382
|
}
|
|
383
383
|
/**
|
|
384
384
|
* <p>The state of a notification setting.</p>
|
|
@@ -401,7 +401,7 @@ export interface NotificationSettingDetail {
|
|
|
401
401
|
* <p>The number of days before a notification event.</p>
|
|
402
402
|
* @public
|
|
403
403
|
*/
|
|
404
|
-
threshold?: number;
|
|
404
|
+
threshold?: number | undefined;
|
|
405
405
|
/**
|
|
406
406
|
* <p>The specified channel of notification.
|
|
407
407
|
* IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health Dashboard to notify for an event.</p>
|
|
@@ -410,7 +410,7 @@ export interface NotificationSettingDetail {
|
|
|
410
410
|
* </note>
|
|
411
411
|
* @public
|
|
412
412
|
*/
|
|
413
|
-
channel?: NotificationChannel;
|
|
413
|
+
channel?: NotificationChannel | undefined;
|
|
414
414
|
/**
|
|
415
415
|
* <p>The principal that configured the notification setting.
|
|
416
416
|
* For default settings configured by IAM Roles Anywhere,
|
|
@@ -419,7 +419,7 @@ export interface NotificationSettingDetail {
|
|
|
419
419
|
* </p>
|
|
420
420
|
* @public
|
|
421
421
|
*/
|
|
422
|
-
configuredBy?: string;
|
|
422
|
+
configuredBy?: string | undefined;
|
|
423
423
|
}
|
|
424
424
|
/**
|
|
425
425
|
* <p>The state of the trust anchor after a read or write operation. </p>
|
|
@@ -430,42 +430,42 @@ export interface TrustAnchorDetail {
|
|
|
430
430
|
* <p>The unique identifier of the trust anchor.</p>
|
|
431
431
|
* @public
|
|
432
432
|
*/
|
|
433
|
-
trustAnchorId?: string;
|
|
433
|
+
trustAnchorId?: string | undefined;
|
|
434
434
|
/**
|
|
435
435
|
* <p>The ARN of the trust anchor.</p>
|
|
436
436
|
* @public
|
|
437
437
|
*/
|
|
438
|
-
trustAnchorArn?: string;
|
|
438
|
+
trustAnchorArn?: string | undefined;
|
|
439
439
|
/**
|
|
440
440
|
* <p>The name of the trust anchor.</p>
|
|
441
441
|
* @public
|
|
442
442
|
*/
|
|
443
|
-
name?: string;
|
|
443
|
+
name?: string | undefined;
|
|
444
444
|
/**
|
|
445
445
|
* <p>The trust anchor type and its related certificate data.</p>
|
|
446
446
|
* @public
|
|
447
447
|
*/
|
|
448
|
-
source?: Source;
|
|
448
|
+
source?: Source | undefined;
|
|
449
449
|
/**
|
|
450
450
|
* <p>Indicates whether the trust anchor is enabled.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
enabled?: boolean;
|
|
453
|
+
enabled?: boolean | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>The ISO-8601 timestamp when the trust anchor was created. </p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
createdAt?: Date;
|
|
458
|
+
createdAt?: Date | undefined;
|
|
459
459
|
/**
|
|
460
460
|
* <p>The ISO-8601 timestamp when the trust anchor was last updated. </p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
updatedAt?: Date;
|
|
463
|
+
updatedAt?: Date | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>A list of notification settings to be associated to the trust anchor.</p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
notificationSettings?: NotificationSettingDetail[];
|
|
468
|
+
notificationSettings?: NotificationSettingDetail[] | undefined;
|
|
469
469
|
}
|
|
470
470
|
/**
|
|
471
471
|
* @public
|
|
@@ -486,32 +486,32 @@ export interface CredentialSummary {
|
|
|
486
486
|
* <p>The ISO-8601 time stamp of when the certificate was last used in a temporary credential request.</p>
|
|
487
487
|
* @public
|
|
488
488
|
*/
|
|
489
|
-
seenAt?: Date;
|
|
489
|
+
seenAt?: Date | undefined;
|
|
490
490
|
/**
|
|
491
491
|
* <p>The serial number of the certificate.</p>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
serialNumber?: string;
|
|
494
|
+
serialNumber?: string | undefined;
|
|
495
495
|
/**
|
|
496
496
|
* <p>The fully qualified domain name of the issuing certificate for the presented end-entity certificate.</p>
|
|
497
497
|
* @public
|
|
498
498
|
*/
|
|
499
|
-
issuer?: string;
|
|
499
|
+
issuer?: string | undefined;
|
|
500
500
|
/**
|
|
501
501
|
* <p>Indicates whether the credential is enabled.</p>
|
|
502
502
|
* @public
|
|
503
503
|
*/
|
|
504
|
-
enabled?: boolean;
|
|
504
|
+
enabled?: boolean | undefined;
|
|
505
505
|
/**
|
|
506
506
|
* <p>The PEM-encoded data of the certificate.</p>
|
|
507
507
|
* @public
|
|
508
508
|
*/
|
|
509
|
-
x509CertificateData?: string;
|
|
509
|
+
x509CertificateData?: string | undefined;
|
|
510
510
|
/**
|
|
511
511
|
* <p>Indicates whether the temporary credential request was successful. </p>
|
|
512
512
|
* @public
|
|
513
513
|
*/
|
|
514
|
-
failed?: boolean;
|
|
514
|
+
failed?: boolean | undefined;
|
|
515
515
|
}
|
|
516
516
|
/**
|
|
517
517
|
* <p>The state of the certificate revocation list (CRL) after a read or write operation.</p>
|
|
@@ -522,42 +522,42 @@ export interface CrlDetail {
|
|
|
522
522
|
* <p>The unique identifier of the certificate revocation list (CRL).</p>
|
|
523
523
|
* @public
|
|
524
524
|
*/
|
|
525
|
-
crlId?: string;
|
|
525
|
+
crlId?: string | undefined;
|
|
526
526
|
/**
|
|
527
527
|
* <p>The ARN of the certificate revocation list (CRL).</p>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
crlArn?: string;
|
|
530
|
+
crlArn?: string | undefined;
|
|
531
531
|
/**
|
|
532
532
|
* <p>The name of the certificate revocation list (CRL).</p>
|
|
533
533
|
* @public
|
|
534
534
|
*/
|
|
535
|
-
name?: string;
|
|
535
|
+
name?: string | undefined;
|
|
536
536
|
/**
|
|
537
537
|
* <p>Indicates whether the certificate revocation list (CRL) is enabled.</p>
|
|
538
538
|
* @public
|
|
539
539
|
*/
|
|
540
|
-
enabled?: boolean;
|
|
540
|
+
enabled?: boolean | undefined;
|
|
541
541
|
/**
|
|
542
542
|
* <p>The state of the certificate revocation list (CRL) after a read or write operation.</p>
|
|
543
543
|
* @public
|
|
544
544
|
*/
|
|
545
|
-
crlData?: Uint8Array;
|
|
545
|
+
crlData?: Uint8Array | undefined;
|
|
546
546
|
/**
|
|
547
547
|
* <p>The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for. </p>
|
|
548
548
|
* @public
|
|
549
549
|
*/
|
|
550
|
-
trustAnchorArn?: string;
|
|
550
|
+
trustAnchorArn?: string | undefined;
|
|
551
551
|
/**
|
|
552
552
|
* <p>The ISO-8601 timestamp when the certificate revocation list (CRL) was created. </p>
|
|
553
553
|
* @public
|
|
554
554
|
*/
|
|
555
|
-
createdAt?: Date;
|
|
555
|
+
createdAt?: Date | undefined;
|
|
556
556
|
/**
|
|
557
557
|
* <p>The ISO-8601 timestamp when the certificate revocation list (CRL) was last updated. </p>
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
updatedAt?: Date;
|
|
560
|
+
updatedAt?: Date | undefined;
|
|
561
561
|
}
|
|
562
562
|
/**
|
|
563
563
|
* @public
|
|
@@ -609,12 +609,12 @@ export interface ImportCrlRequest {
|
|
|
609
609
|
* <p>Specifies whether the certificate revocation list (CRL) is enabled.</p>
|
|
610
610
|
* @public
|
|
611
611
|
*/
|
|
612
|
-
enabled?: boolean;
|
|
612
|
+
enabled?: boolean | undefined;
|
|
613
613
|
/**
|
|
614
614
|
* <p>A list of tags to attach to the certificate revocation list (CRL).</p>
|
|
615
615
|
* @public
|
|
616
616
|
*/
|
|
617
|
-
tags?: Tag[];
|
|
617
|
+
tags?: Tag[] | undefined;
|
|
618
618
|
/**
|
|
619
619
|
* <p>The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.</p>
|
|
620
620
|
* @public
|
|
@@ -629,12 +629,12 @@ export interface ListCrlsResponse {
|
|
|
629
629
|
* <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
|
|
630
630
|
* @public
|
|
631
631
|
*/
|
|
632
|
-
nextToken?: string;
|
|
632
|
+
nextToken?: string | undefined;
|
|
633
633
|
/**
|
|
634
634
|
* <p>A list of certificate revocation lists (CRL). </p>
|
|
635
635
|
* @public
|
|
636
636
|
*/
|
|
637
|
-
crls?: CrlDetail[];
|
|
637
|
+
crls?: CrlDetail[] | undefined;
|
|
638
638
|
}
|
|
639
639
|
/**
|
|
640
640
|
* @public
|
|
@@ -644,12 +644,12 @@ export interface ListRequest {
|
|
|
644
644
|
* <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
|
|
645
645
|
* @public
|
|
646
646
|
*/
|
|
647
|
-
nextToken?: string;
|
|
647
|
+
nextToken?: string | undefined;
|
|
648
648
|
/**
|
|
649
649
|
* <p>The number of resources in the paginated list. </p>
|
|
650
650
|
* @public
|
|
651
651
|
*/
|
|
652
|
-
pageSize?: number;
|
|
652
|
+
pageSize?: number | undefined;
|
|
653
653
|
}
|
|
654
654
|
/**
|
|
655
655
|
* @public
|
|
@@ -664,12 +664,12 @@ export interface UpdateCrlRequest {
|
|
|
664
664
|
* <p>The name of the Crl.</p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
name?: string;
|
|
667
|
+
name?: string | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* <p>The x509 v3 specified certificate revocation list (CRL).</p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
crlData?: Uint8Array;
|
|
672
|
+
crlData?: Uint8Array | undefined;
|
|
673
673
|
}
|
|
674
674
|
/**
|
|
675
675
|
* @public
|
|
@@ -689,7 +689,7 @@ export interface DeleteAttributeMappingRequest {
|
|
|
689
689
|
* <p>A list of specifiers of a certificate field; for example, CN, OU, UID from a Subject.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
specifiers?: string[];
|
|
692
|
+
specifiers?: string[] | undefined;
|
|
693
693
|
}
|
|
694
694
|
/**
|
|
695
695
|
* @public
|
|
@@ -740,17 +740,17 @@ export interface InstanceProperty {
|
|
|
740
740
|
* <p>The ISO-8601 time stamp of when the certificate was last used in a temporary credential request.</p>
|
|
741
741
|
* @public
|
|
742
742
|
*/
|
|
743
|
-
seenAt?: Date;
|
|
743
|
+
seenAt?: Date | undefined;
|
|
744
744
|
/**
|
|
745
745
|
* <p>A list of instanceProperty objects. </p>
|
|
746
746
|
* @public
|
|
747
747
|
*/
|
|
748
|
-
properties?: Record<string, string
|
|
748
|
+
properties?: Record<string, string> | undefined;
|
|
749
749
|
/**
|
|
750
750
|
* <p>Indicates whether the temporary credential request was successful. </p>
|
|
751
751
|
* @public
|
|
752
752
|
*/
|
|
753
|
-
failed?: boolean;
|
|
753
|
+
failed?: boolean | undefined;
|
|
754
754
|
}
|
|
755
755
|
/**
|
|
756
756
|
* <p>The state of the subject after a read or write operation.</p>
|
|
@@ -761,47 +761,47 @@ export interface SubjectDetail {
|
|
|
761
761
|
* <p>The ARN of the resource.</p>
|
|
762
762
|
* @public
|
|
763
763
|
*/
|
|
764
|
-
subjectArn?: string;
|
|
764
|
+
subjectArn?: string | undefined;
|
|
765
765
|
/**
|
|
766
766
|
* <p>The id of the resource</p>
|
|
767
767
|
* @public
|
|
768
768
|
*/
|
|
769
|
-
subjectId?: string;
|
|
769
|
+
subjectId?: string | undefined;
|
|
770
770
|
/**
|
|
771
771
|
* <p>The enabled status of the subject.</p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
enabled?: boolean;
|
|
774
|
+
enabled?: boolean | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* <p>The x509 principal identifier of the authenticating certificate.</p>
|
|
777
777
|
* @public
|
|
778
778
|
*/
|
|
779
|
-
x509Subject?: string;
|
|
779
|
+
x509Subject?: string | undefined;
|
|
780
780
|
/**
|
|
781
781
|
* <p>The ISO-8601 timestamp of the last time this subject requested temporary session credentials.</p>
|
|
782
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
lastSeenAt?: Date;
|
|
784
|
+
lastSeenAt?: Date | undefined;
|
|
785
785
|
/**
|
|
786
786
|
* <p>The ISO-8601 timestamp when the subject was created. </p>
|
|
787
787
|
* @public
|
|
788
788
|
*/
|
|
789
|
-
createdAt?: Date;
|
|
789
|
+
createdAt?: Date | undefined;
|
|
790
790
|
/**
|
|
791
791
|
* <p>The ISO-8601 timestamp when the subject was last updated.</p>
|
|
792
792
|
* @public
|
|
793
793
|
*/
|
|
794
|
-
updatedAt?: Date;
|
|
794
|
+
updatedAt?: Date | undefined;
|
|
795
795
|
/**
|
|
796
796
|
* <p>The temporary session credentials vended at the last authenticating call with this subject.</p>
|
|
797
797
|
* @public
|
|
798
798
|
*/
|
|
799
|
-
credentials?: CredentialSummary[];
|
|
799
|
+
credentials?: CredentialSummary[] | undefined;
|
|
800
800
|
/**
|
|
801
801
|
* <p>The specified instance properties associated with the request.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
instanceProperties?: InstanceProperty[];
|
|
804
|
+
instanceProperties?: InstanceProperty[] | undefined;
|
|
805
805
|
}
|
|
806
806
|
/**
|
|
807
807
|
* @public
|
|
@@ -811,7 +811,7 @@ export interface SubjectDetailResponse {
|
|
|
811
811
|
* <p>The state of the subject after a read or write operation.</p>
|
|
812
812
|
* @public
|
|
813
813
|
*/
|
|
814
|
-
subject?: SubjectDetail;
|
|
814
|
+
subject?: SubjectDetail | undefined;
|
|
815
815
|
}
|
|
816
816
|
/**
|
|
817
817
|
* @public
|
|
@@ -821,12 +821,12 @@ export interface ListProfilesResponse {
|
|
|
821
821
|
* <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
|
|
822
822
|
* @public
|
|
823
823
|
*/
|
|
824
|
-
nextToken?: string;
|
|
824
|
+
nextToken?: string | undefined;
|
|
825
825
|
/**
|
|
826
826
|
* <p>A list of profiles.</p>
|
|
827
827
|
* @public
|
|
828
828
|
*/
|
|
829
|
-
profiles?: ProfileDetail[];
|
|
829
|
+
profiles?: ProfileDetail[] | undefined;
|
|
830
830
|
}
|
|
831
831
|
/**
|
|
832
832
|
* <p>A summary representation of subjects.</p>
|
|
@@ -837,37 +837,37 @@ export interface SubjectSummary {
|
|
|
837
837
|
* <p>The ARN of the resource.</p>
|
|
838
838
|
* @public
|
|
839
839
|
*/
|
|
840
|
-
subjectArn?: string;
|
|
840
|
+
subjectArn?: string | undefined;
|
|
841
841
|
/**
|
|
842
842
|
* <p>The id of the resource.</p>
|
|
843
843
|
* @public
|
|
844
844
|
*/
|
|
845
|
-
subjectId?: string;
|
|
845
|
+
subjectId?: string | undefined;
|
|
846
846
|
/**
|
|
847
847
|
* <p>The enabled status of the subject. </p>
|
|
848
848
|
* @public
|
|
849
849
|
*/
|
|
850
|
-
enabled?: boolean;
|
|
850
|
+
enabled?: boolean | undefined;
|
|
851
851
|
/**
|
|
852
852
|
* <p>The x509 principal identifier of the authenticating certificate.</p>
|
|
853
853
|
* @public
|
|
854
854
|
*/
|
|
855
|
-
x509Subject?: string;
|
|
855
|
+
x509Subject?: string | undefined;
|
|
856
856
|
/**
|
|
857
857
|
* <p>The ISO-8601 time stamp of when the certificate was last used in a temporary credential request.</p>
|
|
858
858
|
* @public
|
|
859
859
|
*/
|
|
860
|
-
lastSeenAt?: Date;
|
|
860
|
+
lastSeenAt?: Date | undefined;
|
|
861
861
|
/**
|
|
862
862
|
* <p>The ISO-8601 time stamp of when the certificate was first used in a temporary credential request.</p>
|
|
863
863
|
* @public
|
|
864
864
|
*/
|
|
865
|
-
createdAt?: Date;
|
|
865
|
+
createdAt?: Date | undefined;
|
|
866
866
|
/**
|
|
867
867
|
* <p>The ISO-8601 timestamp when the subject was last updated. </p>
|
|
868
868
|
* @public
|
|
869
869
|
*/
|
|
870
|
-
updatedAt?: Date;
|
|
870
|
+
updatedAt?: Date | undefined;
|
|
871
871
|
}
|
|
872
872
|
/**
|
|
873
873
|
* @public
|
|
@@ -877,12 +877,12 @@ export interface ListSubjectsResponse {
|
|
|
877
877
|
* <p>A list of subjects.</p>
|
|
878
878
|
* @public
|
|
879
879
|
*/
|
|
880
|
-
subjects?: SubjectSummary[];
|
|
880
|
+
subjects?: SubjectSummary[] | undefined;
|
|
881
881
|
/**
|
|
882
882
|
* <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
|
|
883
883
|
* @public
|
|
884
884
|
*/
|
|
885
|
-
nextToken?: string;
|
|
885
|
+
nextToken?: string | undefined;
|
|
886
886
|
}
|
|
887
887
|
/**
|
|
888
888
|
* @public
|
|
@@ -902,7 +902,7 @@ export interface ListTagsForResourceResponse {
|
|
|
902
902
|
* <p>A list of tags attached to the resource.</p>
|
|
903
903
|
* @public
|
|
904
904
|
*/
|
|
905
|
-
tags?: Tag[];
|
|
905
|
+
tags?: Tag[] | undefined;
|
|
906
906
|
}
|
|
907
907
|
/**
|
|
908
908
|
* @public
|
|
@@ -912,12 +912,12 @@ export interface ListTrustAnchorsResponse {
|
|
|
912
912
|
* <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
|
|
913
913
|
* @public
|
|
914
914
|
*/
|
|
915
|
-
nextToken?: string;
|
|
915
|
+
nextToken?: string | undefined;
|
|
916
916
|
/**
|
|
917
917
|
* <p>A list of trust anchors.</p>
|
|
918
918
|
* @public
|
|
919
919
|
*/
|
|
920
|
-
trustAnchors?: TrustAnchorDetail[];
|
|
920
|
+
trustAnchors?: TrustAnchorDetail[] | undefined;
|
|
921
921
|
}
|
|
922
922
|
/**
|
|
923
923
|
* <p>A notification setting key to reset.
|
|
@@ -935,7 +935,7 @@ export interface NotificationSettingKey {
|
|
|
935
935
|
* <p>The specified channel of notification.</p>
|
|
936
936
|
* @public
|
|
937
937
|
*/
|
|
938
|
-
channel?: NotificationChannel;
|
|
938
|
+
channel?: NotificationChannel | undefined;
|
|
939
939
|
}
|
|
940
940
|
/**
|
|
941
941
|
* @public
|
|
@@ -980,34 +980,34 @@ export interface UpdateProfileRequest {
|
|
|
980
980
|
* <p>The name of the profile.</p>
|
|
981
981
|
* @public
|
|
982
982
|
*/
|
|
983
|
-
name?: string;
|
|
983
|
+
name?: string | undefined;
|
|
984
984
|
/**
|
|
985
985
|
* <p>A session policy that applies to the trust boundary of the vended session credentials. </p>
|
|
986
986
|
* @public
|
|
987
987
|
*/
|
|
988
|
-
sessionPolicy?: string;
|
|
988
|
+
sessionPolicy?: string | undefined;
|
|
989
989
|
/**
|
|
990
990
|
* <p>A list of IAM roles that this profile can assume in a temporary credential request.</p>
|
|
991
991
|
* @public
|
|
992
992
|
*/
|
|
993
|
-
roleArns?: string[];
|
|
993
|
+
roleArns?: string[] | undefined;
|
|
994
994
|
/**
|
|
995
995
|
* <p>A list of managed policy ARNs that apply to the vended session credentials. </p>
|
|
996
996
|
* @public
|
|
997
997
|
*/
|
|
998
|
-
managedPolicyArns?: string[];
|
|
998
|
+
managedPolicyArns?: string[] | undefined;
|
|
999
999
|
/**
|
|
1000
1000
|
* <p> Used to determine how long sessions vended using this profile are valid for. See the <code>Expiration</code> section of the
|
|
1001
1001
|
* <a href="https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object">CreateSession API documentation</a>
|
|
1002
1002
|
* page for more details. In requests, if this value is not provided, the default value will be 3600. </p>
|
|
1003
1003
|
* @public
|
|
1004
1004
|
*/
|
|
1005
|
-
durationSeconds?: number;
|
|
1005
|
+
durationSeconds?: number | undefined;
|
|
1006
1006
|
/**
|
|
1007
1007
|
* <p>Used to determine if a custom role session name will be accepted in a temporary credential request.</p>
|
|
1008
1008
|
* @public
|
|
1009
1009
|
*/
|
|
1010
|
-
acceptRoleSessionName?: boolean;
|
|
1010
|
+
acceptRoleSessionName?: boolean | undefined;
|
|
1011
1011
|
}
|
|
1012
1012
|
/**
|
|
1013
1013
|
* @public
|
|
@@ -1106,12 +1106,12 @@ export interface UpdateTrustAnchorRequest {
|
|
|
1106
1106
|
* <p>The name of the trust anchor.</p>
|
|
1107
1107
|
* @public
|
|
1108
1108
|
*/
|
|
1109
|
-
name?: string;
|
|
1109
|
+
name?: string | undefined;
|
|
1110
1110
|
/**
|
|
1111
1111
|
* <p>The trust anchor type and its related certificate data.</p>
|
|
1112
1112
|
* @public
|
|
1113
1113
|
*/
|
|
1114
|
-
source?: Source;
|
|
1114
|
+
source?: Source | undefined;
|
|
1115
1115
|
}
|
|
1116
1116
|
/**
|
|
1117
1117
|
* @public
|
|
@@ -18,8 +18,8 @@ export interface MappingRule {
|
|
|
18
18
|
specifier: string | undefined;
|
|
19
19
|
}
|
|
20
20
|
export interface AttributeMapping {
|
|
21
|
-
certificateField?: CertificateField;
|
|
22
|
-
mappingRules?: MappingRule[];
|
|
21
|
+
certificateField?: CertificateField | undefined;
|
|
22
|
+
mappingRules?: MappingRule[] | undefined;
|
|
23
23
|
}
|
|
24
24
|
export interface Tag {
|
|
25
25
|
key: string | undefined;
|
|
@@ -27,33 +27,33 @@ export interface Tag {
|
|
|
27
27
|
}
|
|
28
28
|
export interface CreateProfileRequest {
|
|
29
29
|
name: string | undefined;
|
|
30
|
-
requireInstanceProperties?: boolean;
|
|
31
|
-
sessionPolicy?: string;
|
|
30
|
+
requireInstanceProperties?: boolean | undefined;
|
|
31
|
+
sessionPolicy?: string | undefined;
|
|
32
32
|
roleArns: string[] | undefined;
|
|
33
|
-
managedPolicyArns?: string[];
|
|
34
|
-
durationSeconds?: number;
|
|
35
|
-
enabled?: boolean;
|
|
36
|
-
tags?: Tag[];
|
|
37
|
-
acceptRoleSessionName?: boolean;
|
|
33
|
+
managedPolicyArns?: string[] | undefined;
|
|
34
|
+
durationSeconds?: number | undefined;
|
|
35
|
+
enabled?: boolean | undefined;
|
|
36
|
+
tags?: Tag[] | undefined;
|
|
37
|
+
acceptRoleSessionName?: boolean | undefined;
|
|
38
38
|
}
|
|
39
39
|
export interface ProfileDetail {
|
|
40
|
-
profileId?: string;
|
|
41
|
-
profileArn?: string;
|
|
42
|
-
name?: string;
|
|
43
|
-
requireInstanceProperties?: boolean;
|
|
44
|
-
enabled?: boolean;
|
|
45
|
-
createdBy?: string;
|
|
46
|
-
sessionPolicy?: string;
|
|
47
|
-
roleArns?: string[];
|
|
48
|
-
managedPolicyArns?: string[];
|
|
49
|
-
createdAt?: Date;
|
|
50
|
-
updatedAt?: Date;
|
|
51
|
-
durationSeconds?: number;
|
|
52
|
-
acceptRoleSessionName?: boolean;
|
|
53
|
-
attributeMappings?: AttributeMapping[];
|
|
40
|
+
profileId?: string | undefined;
|
|
41
|
+
profileArn?: string | undefined;
|
|
42
|
+
name?: string | undefined;
|
|
43
|
+
requireInstanceProperties?: boolean | undefined;
|
|
44
|
+
enabled?: boolean | undefined;
|
|
45
|
+
createdBy?: string | undefined;
|
|
46
|
+
sessionPolicy?: string | undefined;
|
|
47
|
+
roleArns?: string[] | undefined;
|
|
48
|
+
managedPolicyArns?: string[] | undefined;
|
|
49
|
+
createdAt?: Date | undefined;
|
|
50
|
+
updatedAt?: Date | undefined;
|
|
51
|
+
durationSeconds?: number | undefined;
|
|
52
|
+
acceptRoleSessionName?: boolean | undefined;
|
|
53
|
+
attributeMappings?: AttributeMapping[] | undefined;
|
|
54
54
|
}
|
|
55
55
|
export interface ProfileDetailResponse {
|
|
56
|
-
profile?: ProfileDetail;
|
|
56
|
+
profile?: ProfileDetail | undefined;
|
|
57
57
|
}
|
|
58
58
|
export declare class ValidationException extends __BaseException {
|
|
59
59
|
readonly name: "ValidationException";
|
|
@@ -76,8 +76,8 @@ export type NotificationEvent =
|
|
|
76
76
|
export interface NotificationSetting {
|
|
77
77
|
enabled: boolean | undefined;
|
|
78
78
|
event: NotificationEvent | undefined;
|
|
79
|
-
threshold?: number;
|
|
80
|
-
channel?: NotificationChannel;
|
|
79
|
+
threshold?: number | undefined;
|
|
80
|
+
channel?: NotificationChannel | undefined;
|
|
81
81
|
}
|
|
82
82
|
export type SourceData =
|
|
83
83
|
| SourceData.AcmPcaArnMember
|
|
@@ -114,53 +114,53 @@ export declare const TrustAnchorType: {
|
|
|
114
114
|
export type TrustAnchorType =
|
|
115
115
|
(typeof TrustAnchorType)[keyof typeof TrustAnchorType];
|
|
116
116
|
export interface Source {
|
|
117
|
-
sourceType?: TrustAnchorType;
|
|
118
|
-
sourceData?: SourceData;
|
|
117
|
+
sourceType?: TrustAnchorType | undefined;
|
|
118
|
+
sourceData?: SourceData | undefined;
|
|
119
119
|
}
|
|
120
120
|
export interface CreateTrustAnchorRequest {
|
|
121
121
|
name: string | undefined;
|
|
122
122
|
source: Source | undefined;
|
|
123
|
-
enabled?: boolean;
|
|
124
|
-
tags?: Tag[];
|
|
125
|
-
notificationSettings?: NotificationSetting[];
|
|
123
|
+
enabled?: boolean | undefined;
|
|
124
|
+
tags?: Tag[] | undefined;
|
|
125
|
+
notificationSettings?: NotificationSetting[] | undefined;
|
|
126
126
|
}
|
|
127
127
|
export interface NotificationSettingDetail {
|
|
128
128
|
enabled: boolean | undefined;
|
|
129
129
|
event: NotificationEvent | undefined;
|
|
130
|
-
threshold?: number;
|
|
131
|
-
channel?: NotificationChannel;
|
|
132
|
-
configuredBy?: string;
|
|
130
|
+
threshold?: number | undefined;
|
|
131
|
+
channel?: NotificationChannel | undefined;
|
|
132
|
+
configuredBy?: string | undefined;
|
|
133
133
|
}
|
|
134
134
|
export interface TrustAnchorDetail {
|
|
135
|
-
trustAnchorId?: string;
|
|
136
|
-
trustAnchorArn?: string;
|
|
137
|
-
name?: string;
|
|
138
|
-
source?: Source;
|
|
139
|
-
enabled?: boolean;
|
|
140
|
-
createdAt?: Date;
|
|
141
|
-
updatedAt?: Date;
|
|
142
|
-
notificationSettings?: NotificationSettingDetail[];
|
|
135
|
+
trustAnchorId?: string | undefined;
|
|
136
|
+
trustAnchorArn?: string | undefined;
|
|
137
|
+
name?: string | undefined;
|
|
138
|
+
source?: Source | undefined;
|
|
139
|
+
enabled?: boolean | undefined;
|
|
140
|
+
createdAt?: Date | undefined;
|
|
141
|
+
updatedAt?: Date | undefined;
|
|
142
|
+
notificationSettings?: NotificationSettingDetail[] | undefined;
|
|
143
143
|
}
|
|
144
144
|
export interface TrustAnchorDetailResponse {
|
|
145
145
|
trustAnchor: TrustAnchorDetail | undefined;
|
|
146
146
|
}
|
|
147
147
|
export interface CredentialSummary {
|
|
148
|
-
seenAt?: Date;
|
|
149
|
-
serialNumber?: string;
|
|
150
|
-
issuer?: string;
|
|
151
|
-
enabled?: boolean;
|
|
152
|
-
x509CertificateData?: string;
|
|
153
|
-
failed?: boolean;
|
|
148
|
+
seenAt?: Date | undefined;
|
|
149
|
+
serialNumber?: string | undefined;
|
|
150
|
+
issuer?: string | undefined;
|
|
151
|
+
enabled?: boolean | undefined;
|
|
152
|
+
x509CertificateData?: string | undefined;
|
|
153
|
+
failed?: boolean | undefined;
|
|
154
154
|
}
|
|
155
155
|
export interface CrlDetail {
|
|
156
|
-
crlId?: string;
|
|
157
|
-
crlArn?: string;
|
|
158
|
-
name?: string;
|
|
159
|
-
enabled?: boolean;
|
|
160
|
-
crlData?: Uint8Array;
|
|
161
|
-
trustAnchorArn?: string;
|
|
162
|
-
createdAt?: Date;
|
|
163
|
-
updatedAt?: Date;
|
|
156
|
+
crlId?: string | undefined;
|
|
157
|
+
crlArn?: string | undefined;
|
|
158
|
+
name?: string | undefined;
|
|
159
|
+
enabled?: boolean | undefined;
|
|
160
|
+
crlData?: Uint8Array | undefined;
|
|
161
|
+
trustAnchorArn?: string | undefined;
|
|
162
|
+
createdAt?: Date | undefined;
|
|
163
|
+
updatedAt?: Date | undefined;
|
|
164
164
|
}
|
|
165
165
|
export interface CrlDetailResponse {
|
|
166
166
|
crl: CrlDetail | undefined;
|
|
@@ -178,27 +178,27 @@ export interface ScalarCrlRequest {
|
|
|
178
178
|
export interface ImportCrlRequest {
|
|
179
179
|
name: string | undefined;
|
|
180
180
|
crlData: Uint8Array | undefined;
|
|
181
|
-
enabled?: boolean;
|
|
182
|
-
tags?: Tag[];
|
|
181
|
+
enabled?: boolean | undefined;
|
|
182
|
+
tags?: Tag[] | undefined;
|
|
183
183
|
trustAnchorArn: string | undefined;
|
|
184
184
|
}
|
|
185
185
|
export interface ListCrlsResponse {
|
|
186
|
-
nextToken?: string;
|
|
187
|
-
crls?: CrlDetail[];
|
|
186
|
+
nextToken?: string | undefined;
|
|
187
|
+
crls?: CrlDetail[] | undefined;
|
|
188
188
|
}
|
|
189
189
|
export interface ListRequest {
|
|
190
|
-
nextToken?: string;
|
|
191
|
-
pageSize?: number;
|
|
190
|
+
nextToken?: string | undefined;
|
|
191
|
+
pageSize?: number | undefined;
|
|
192
192
|
}
|
|
193
193
|
export interface UpdateCrlRequest {
|
|
194
194
|
crlId: string | undefined;
|
|
195
|
-
name?: string;
|
|
196
|
-
crlData?: Uint8Array;
|
|
195
|
+
name?: string | undefined;
|
|
196
|
+
crlData?: Uint8Array | undefined;
|
|
197
197
|
}
|
|
198
198
|
export interface DeleteAttributeMappingRequest {
|
|
199
199
|
profileId: string | undefined;
|
|
200
200
|
certificateField: CertificateField | undefined;
|
|
201
|
-
specifiers?: string[];
|
|
201
|
+
specifiers?: string[] | undefined;
|
|
202
202
|
}
|
|
203
203
|
export interface DeleteAttributeMappingResponse {
|
|
204
204
|
profile: ProfileDetail | undefined;
|
|
@@ -213,54 +213,54 @@ export interface ScalarSubjectRequest {
|
|
|
213
213
|
subjectId: string | undefined;
|
|
214
214
|
}
|
|
215
215
|
export interface InstanceProperty {
|
|
216
|
-
seenAt?: Date;
|
|
217
|
-
properties?: Record<string, string
|
|
218
|
-
failed?: boolean;
|
|
216
|
+
seenAt?: Date | undefined;
|
|
217
|
+
properties?: Record<string, string> | undefined;
|
|
218
|
+
failed?: boolean | undefined;
|
|
219
219
|
}
|
|
220
220
|
export interface SubjectDetail {
|
|
221
|
-
subjectArn?: string;
|
|
222
|
-
subjectId?: string;
|
|
223
|
-
enabled?: boolean;
|
|
224
|
-
x509Subject?: string;
|
|
225
|
-
lastSeenAt?: Date;
|
|
226
|
-
createdAt?: Date;
|
|
227
|
-
updatedAt?: Date;
|
|
228
|
-
credentials?: CredentialSummary[];
|
|
229
|
-
instanceProperties?: InstanceProperty[];
|
|
221
|
+
subjectArn?: string | undefined;
|
|
222
|
+
subjectId?: string | undefined;
|
|
223
|
+
enabled?: boolean | undefined;
|
|
224
|
+
x509Subject?: string | undefined;
|
|
225
|
+
lastSeenAt?: Date | undefined;
|
|
226
|
+
createdAt?: Date | undefined;
|
|
227
|
+
updatedAt?: Date | undefined;
|
|
228
|
+
credentials?: CredentialSummary[] | undefined;
|
|
229
|
+
instanceProperties?: InstanceProperty[] | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface SubjectDetailResponse {
|
|
232
|
-
subject?: SubjectDetail;
|
|
232
|
+
subject?: SubjectDetail | undefined;
|
|
233
233
|
}
|
|
234
234
|
export interface ListProfilesResponse {
|
|
235
|
-
nextToken?: string;
|
|
236
|
-
profiles?: ProfileDetail[];
|
|
235
|
+
nextToken?: string | undefined;
|
|
236
|
+
profiles?: ProfileDetail[] | undefined;
|
|
237
237
|
}
|
|
238
238
|
export interface SubjectSummary {
|
|
239
|
-
subjectArn?: string;
|
|
240
|
-
subjectId?: string;
|
|
241
|
-
enabled?: boolean;
|
|
242
|
-
x509Subject?: string;
|
|
243
|
-
lastSeenAt?: Date;
|
|
244
|
-
createdAt?: Date;
|
|
245
|
-
updatedAt?: Date;
|
|
239
|
+
subjectArn?: string | undefined;
|
|
240
|
+
subjectId?: string | undefined;
|
|
241
|
+
enabled?: boolean | undefined;
|
|
242
|
+
x509Subject?: string | undefined;
|
|
243
|
+
lastSeenAt?: Date | undefined;
|
|
244
|
+
createdAt?: Date | undefined;
|
|
245
|
+
updatedAt?: Date | undefined;
|
|
246
246
|
}
|
|
247
247
|
export interface ListSubjectsResponse {
|
|
248
|
-
subjects?: SubjectSummary[];
|
|
249
|
-
nextToken?: string;
|
|
248
|
+
subjects?: SubjectSummary[] | undefined;
|
|
249
|
+
nextToken?: string | undefined;
|
|
250
250
|
}
|
|
251
251
|
export interface ListTagsForResourceRequest {
|
|
252
252
|
resourceArn: string | undefined;
|
|
253
253
|
}
|
|
254
254
|
export interface ListTagsForResourceResponse {
|
|
255
|
-
tags?: Tag[];
|
|
255
|
+
tags?: Tag[] | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface ListTrustAnchorsResponse {
|
|
258
|
-
nextToken?: string;
|
|
259
|
-
trustAnchors?: TrustAnchorDetail[];
|
|
258
|
+
nextToken?: string | undefined;
|
|
259
|
+
trustAnchors?: TrustAnchorDetail[] | undefined;
|
|
260
260
|
}
|
|
261
261
|
export interface NotificationSettingKey {
|
|
262
262
|
event: NotificationEvent | undefined;
|
|
263
|
-
channel?: NotificationChannel;
|
|
263
|
+
channel?: NotificationChannel | undefined;
|
|
264
264
|
}
|
|
265
265
|
export interface PutAttributeMappingRequest {
|
|
266
266
|
profileId: string | undefined;
|
|
@@ -272,12 +272,12 @@ export interface PutAttributeMappingResponse {
|
|
|
272
272
|
}
|
|
273
273
|
export interface UpdateProfileRequest {
|
|
274
274
|
profileId: string | undefined;
|
|
275
|
-
name?: string;
|
|
276
|
-
sessionPolicy?: string;
|
|
277
|
-
roleArns?: string[];
|
|
278
|
-
managedPolicyArns?: string[];
|
|
279
|
-
durationSeconds?: number;
|
|
280
|
-
acceptRoleSessionName?: boolean;
|
|
275
|
+
name?: string | undefined;
|
|
276
|
+
sessionPolicy?: string | undefined;
|
|
277
|
+
roleArns?: string[] | undefined;
|
|
278
|
+
managedPolicyArns?: string[] | undefined;
|
|
279
|
+
durationSeconds?: number | undefined;
|
|
280
|
+
acceptRoleSessionName?: boolean | undefined;
|
|
281
281
|
}
|
|
282
282
|
export interface PutNotificationSettingsRequest {
|
|
283
283
|
trustAnchorId: string | undefined;
|
|
@@ -307,8 +307,8 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
307
307
|
}
|
|
308
308
|
export interface UpdateTrustAnchorRequest {
|
|
309
309
|
trustAnchorId: string | undefined;
|
|
310
|
-
name?: string;
|
|
311
|
-
source?: Source;
|
|
310
|
+
name?: string | undefined;
|
|
311
|
+
source?: Source | undefined;
|
|
312
312
|
}
|
|
313
313
|
export interface UntagResourceRequest {
|
|
314
314
|
resourceArn: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rolesanywhere",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rolesanywhere 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-rolesanywhere",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|