@aws-sdk/client-rolesanywhere 3.169.0 → 3.170.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/RolesAnywhere.d.ts +472 -135
  3. package/dist-types/ts3.4/RolesAnywhereClient.d.ts +286 -99
  4. package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateTrustAnchorCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/DeleteCrlCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeleteTrustAnchorCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DisableCrlCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DisableProfileCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DisableTrustAnchorCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/EnableCrlCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/EnableProfileCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/EnableTrustAnchorCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/GetCrlCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/GetSubjectCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/GetTrustAnchorCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ImportCrlCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListCrlsCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/ListSubjectsCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/ListTrustAnchorsCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateCrlCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateTrustAnchorCommand.d.ts +38 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +6 -6
  33. package/dist-types/ts3.4/models/RolesAnywhereServiceException.d.ts +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +463 -430
  36. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  37. package/dist-types/ts3.4/pagination/ListCrlsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListProfilesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListSubjectsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListTrustAnchorsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  47. package/package.json +34 -34
@@ -1,430 +1,463 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { RolesAnywhereServiceException as __BaseException } from "./RolesAnywhereServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
-
11
- export interface Tag {
12
-
13
- key: string | undefined;
14
-
15
- value: string | undefined;
16
- }
17
- export interface CreateProfileRequest {
18
-
19
- name: string | undefined;
20
-
21
- requireInstanceProperties?: boolean;
22
-
23
- sessionPolicy?: string;
24
-
25
- roleArns: string[] | undefined;
26
-
27
- managedPolicyArns?: string[];
28
-
29
- durationSeconds?: number;
30
-
31
- enabled?: boolean;
32
-
33
- tags?: Tag[];
34
- }
35
-
36
- export interface ProfileDetail {
37
-
38
- profileId?: string;
39
-
40
- profileArn?: string;
41
-
42
- name?: string;
43
-
44
- requireInstanceProperties?: boolean;
45
-
46
- enabled?: boolean;
47
-
48
- createdBy?: string;
49
-
50
- sessionPolicy?: string;
51
-
52
- roleArns?: string[];
53
-
54
- managedPolicyArns?: string[];
55
-
56
- createdAt?: Date;
57
-
58
- updatedAt?: Date;
59
-
60
- durationSeconds?: number;
61
- }
62
- export interface ProfileDetailResponse {
63
-
64
- profile?: ProfileDetail;
65
- }
66
-
67
- export declare class ValidationException extends __BaseException {
68
- readonly name: "ValidationException";
69
- readonly $fault: "client";
70
-
71
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
72
- }
73
-
74
- export declare type SourceData = SourceData.AcmPcaArnMember | SourceData.X509CertificateDataMember | SourceData.$UnknownMember;
75
- export declare namespace SourceData {
76
-
77
- interface X509CertificateDataMember {
78
- x509CertificateData: string;
79
- acmPcaArn?: never;
80
- $unknown?: never;
81
- }
82
-
83
- interface AcmPcaArnMember {
84
- x509CertificateData?: never;
85
- acmPcaArn: string;
86
- $unknown?: never;
87
- }
88
- interface $UnknownMember {
89
- x509CertificateData?: never;
90
- acmPcaArn?: never;
91
- $unknown: [
92
- string,
93
- any
94
- ];
95
- }
96
- interface Visitor<T> {
97
- x509CertificateData: (value: string) => T;
98
- acmPcaArn: (value: string) => T;
99
- _: (name: string, value: any) => T;
100
- }
101
- const visit: <T>(value: SourceData, visitor: Visitor<T>) => T;
102
- }
103
- export declare enum TrustAnchorType {
104
- AWS_ACM_PCA = "AWS_ACM_PCA",
105
- CERTIFICATE_BUNDLE = "CERTIFICATE_BUNDLE",
106
- SELF_SIGNED_REPOSITORY = "SELF_SIGNED_REPOSITORY"
107
- }
108
-
109
- export interface Source {
110
-
111
- sourceType?: TrustAnchorType | string;
112
-
113
- sourceData?: SourceData;
114
- }
115
- export interface CreateTrustAnchorRequest {
116
-
117
- name: string | undefined;
118
-
119
- source: Source | undefined;
120
-
121
- enabled?: boolean;
122
-
123
- tags?: Tag[];
124
- }
125
-
126
- export interface TrustAnchorDetail {
127
-
128
- trustAnchorId?: string;
129
-
130
- trustAnchorArn?: string;
131
-
132
- name?: string;
133
-
134
- source?: Source;
135
-
136
- enabled?: boolean;
137
-
138
- createdAt?: Date;
139
-
140
- updatedAt?: Date;
141
- }
142
- export interface TrustAnchorDetailResponse {
143
-
144
- trustAnchor: TrustAnchorDetail | undefined;
145
- }
146
-
147
- export interface CredentialSummary {
148
-
149
- seenAt?: Date;
150
-
151
- serialNumber?: string;
152
-
153
- issuer?: string;
154
-
155
- enabled?: boolean;
156
-
157
- x509CertificateData?: string;
158
-
159
- failed?: boolean;
160
- }
161
-
162
- export interface CrlDetail {
163
-
164
- crlId?: string;
165
-
166
- crlArn?: string;
167
-
168
- name?: string;
169
-
170
- enabled?: boolean;
171
-
172
- crlData?: Uint8Array;
173
-
174
- trustAnchorArn?: string;
175
-
176
- createdAt?: Date;
177
-
178
- updatedAt?: Date;
179
- }
180
- export interface CrlDetailResponse {
181
-
182
- crl: CrlDetail | undefined;
183
- }
184
-
185
- export declare class ResourceNotFoundException extends __BaseException {
186
- readonly name: "ResourceNotFoundException";
187
- readonly $fault: "client";
188
-
189
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
190
- }
191
- export interface ScalarCrlRequest {
192
-
193
- crlId: string | undefined;
194
- }
195
- export interface ImportCrlRequest {
196
-
197
- name: string | undefined;
198
-
199
- crlData: Uint8Array | undefined;
200
-
201
- enabled?: boolean;
202
-
203
- tags?: Tag[];
204
-
205
- trustAnchorArn: string | undefined;
206
- }
207
- export interface ListCrlsResponse {
208
-
209
- nextToken?: string;
210
-
211
- crls?: CrlDetail[];
212
- }
213
- export interface ListRequest {
214
-
215
- nextToken?: string;
216
-
217
- pageSize?: number;
218
- }
219
- export interface UpdateCrlRequest {
220
-
221
- crlId: string | undefined;
222
-
223
- name?: string;
224
-
225
- crlData?: Uint8Array;
226
- }
227
- export interface ScalarProfileRequest {
228
-
229
- profileId: string | undefined;
230
- }
231
- export interface ScalarTrustAnchorRequest {
232
-
233
- trustAnchorId: string | undefined;
234
- }
235
- export interface ScalarSubjectRequest {
236
-
237
- subjectId: string | undefined;
238
- }
239
-
240
- export interface InstanceProperty {
241
-
242
- seenAt?: Date;
243
-
244
- properties?: Record<string, string>;
245
-
246
- failed?: boolean;
247
- }
248
-
249
- export interface SubjectDetail {
250
-
251
- subjectArn?: string;
252
-
253
- subjectId?: string;
254
-
255
- enabled?: boolean;
256
-
257
- x509Subject?: string;
258
-
259
- lastSeenAt?: Date;
260
-
261
- createdAt?: Date;
262
-
263
- updatedAt?: Date;
264
-
265
- credentials?: CredentialSummary[];
266
-
267
- instanceProperties?: InstanceProperty[];
268
- }
269
- export interface SubjectDetailResponse {
270
-
271
- subject?: SubjectDetail;
272
- }
273
- export interface ListProfilesResponse {
274
-
275
- nextToken?: string;
276
-
277
- profiles?: ProfileDetail[];
278
- }
279
-
280
- export interface SubjectSummary {
281
-
282
- subjectArn?: string;
283
-
284
- subjectId?: string;
285
-
286
- enabled?: boolean;
287
-
288
- x509Subject?: string;
289
-
290
- lastSeenAt?: Date;
291
-
292
- createdAt?: Date;
293
-
294
- updatedAt?: Date;
295
- }
296
- export interface ListSubjectsResponse {
297
-
298
- subjects?: SubjectSummary[];
299
-
300
- nextToken?: string;
301
- }
302
- export interface ListTagsForResourceRequest {
303
-
304
- resourceArn: string | undefined;
305
- }
306
- export interface ListTagsForResourceResponse {
307
-
308
- tags?: Tag[];
309
- }
310
- export interface ListTrustAnchorsResponse {
311
-
312
- nextToken?: string;
313
-
314
- trustAnchors?: TrustAnchorDetail[];
315
- }
316
- export interface UpdateProfileRequest {
317
-
318
- profileId: string | undefined;
319
-
320
- name?: string;
321
-
322
- sessionPolicy?: string;
323
-
324
- roleArns?: string[];
325
-
326
- managedPolicyArns?: string[];
327
-
328
- durationSeconds?: number;
329
- }
330
- export interface TagResourceRequest {
331
-
332
- resourceArn: string | undefined;
333
-
334
- tags: Tag[] | undefined;
335
- }
336
- export interface TagResourceResponse {
337
- }
338
-
339
- export declare class TooManyTagsException extends __BaseException {
340
- readonly name: "TooManyTagsException";
341
- readonly $fault: "client";
342
-
343
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
344
- }
345
- export interface UpdateTrustAnchorRequest {
346
-
347
- trustAnchorId: string | undefined;
348
-
349
- name?: string;
350
-
351
- source?: Source;
352
- }
353
- export interface UntagResourceRequest {
354
-
355
- resourceArn: string | undefined;
356
-
357
- tagKeys: string[] | undefined;
358
- }
359
- export interface UntagResourceResponse {
360
- }
361
-
362
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
363
-
364
- export declare const CreateProfileRequestFilterSensitiveLog: (obj: CreateProfileRequest) => any;
365
-
366
- export declare const ProfileDetailFilterSensitiveLog: (obj: ProfileDetail) => any;
367
-
368
- export declare const ProfileDetailResponseFilterSensitiveLog: (obj: ProfileDetailResponse) => any;
369
-
370
- export declare const SourceDataFilterSensitiveLog: (obj: SourceData) => any;
371
-
372
- export declare const SourceFilterSensitiveLog: (obj: Source) => any;
373
-
374
- export declare const CreateTrustAnchorRequestFilterSensitiveLog: (obj: CreateTrustAnchorRequest) => any;
375
-
376
- export declare const TrustAnchorDetailFilterSensitiveLog: (obj: TrustAnchorDetail) => any;
377
-
378
- export declare const TrustAnchorDetailResponseFilterSensitiveLog: (obj: TrustAnchorDetailResponse) => any;
379
-
380
- export declare const CredentialSummaryFilterSensitiveLog: (obj: CredentialSummary) => any;
381
-
382
- export declare const CrlDetailFilterSensitiveLog: (obj: CrlDetail) => any;
383
-
384
- export declare const CrlDetailResponseFilterSensitiveLog: (obj: CrlDetailResponse) => any;
385
-
386
- export declare const ScalarCrlRequestFilterSensitiveLog: (obj: ScalarCrlRequest) => any;
387
-
388
- export declare const ImportCrlRequestFilterSensitiveLog: (obj: ImportCrlRequest) => any;
389
-
390
- export declare const ListCrlsResponseFilterSensitiveLog: (obj: ListCrlsResponse) => any;
391
-
392
- export declare const ListRequestFilterSensitiveLog: (obj: ListRequest) => any;
393
-
394
- export declare const UpdateCrlRequestFilterSensitiveLog: (obj: UpdateCrlRequest) => any;
395
-
396
- export declare const ScalarProfileRequestFilterSensitiveLog: (obj: ScalarProfileRequest) => any;
397
-
398
- export declare const ScalarTrustAnchorRequestFilterSensitiveLog: (obj: ScalarTrustAnchorRequest) => any;
399
-
400
- export declare const ScalarSubjectRequestFilterSensitiveLog: (obj: ScalarSubjectRequest) => any;
401
-
402
- export declare const InstancePropertyFilterSensitiveLog: (obj: InstanceProperty) => any;
403
-
404
- export declare const SubjectDetailFilterSensitiveLog: (obj: SubjectDetail) => any;
405
-
406
- export declare const SubjectDetailResponseFilterSensitiveLog: (obj: SubjectDetailResponse) => any;
407
-
408
- export declare const ListProfilesResponseFilterSensitiveLog: (obj: ListProfilesResponse) => any;
409
-
410
- export declare const SubjectSummaryFilterSensitiveLog: (obj: SubjectSummary) => any;
411
-
412
- export declare const ListSubjectsResponseFilterSensitiveLog: (obj: ListSubjectsResponse) => any;
413
-
414
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
415
-
416
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
417
-
418
- export declare const ListTrustAnchorsResponseFilterSensitiveLog: (obj: ListTrustAnchorsResponse) => any;
419
-
420
- export declare const UpdateProfileRequestFilterSensitiveLog: (obj: UpdateProfileRequest) => any;
421
-
422
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
423
-
424
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
425
-
426
- export declare const UpdateTrustAnchorRequestFilterSensitiveLog: (obj: UpdateTrustAnchorRequest) => any;
427
-
428
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
429
-
430
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { RolesAnywhereServiceException as __BaseException } from "./RolesAnywhereServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+
13
+ export interface Tag {
14
+ key: string | undefined;
15
+
16
+ value: string | undefined;
17
+ }
18
+ export interface CreateProfileRequest {
19
+ name: string | undefined;
20
+
21
+ requireInstanceProperties?: boolean;
22
+
23
+ sessionPolicy?: string;
24
+
25
+ roleArns: string[] | undefined;
26
+
27
+ managedPolicyArns?: string[];
28
+
29
+ durationSeconds?: number;
30
+
31
+ enabled?: boolean;
32
+
33
+ tags?: Tag[];
34
+ }
35
+
36
+ export interface ProfileDetail {
37
+ profileId?: string;
38
+
39
+ profileArn?: string;
40
+
41
+ name?: string;
42
+
43
+ requireInstanceProperties?: boolean;
44
+
45
+ enabled?: boolean;
46
+
47
+ createdBy?: string;
48
+
49
+ sessionPolicy?: string;
50
+
51
+ roleArns?: string[];
52
+
53
+ managedPolicyArns?: string[];
54
+
55
+ createdAt?: Date;
56
+
57
+ updatedAt?: Date;
58
+
59
+ durationSeconds?: number;
60
+ }
61
+ export interface ProfileDetailResponse {
62
+ profile?: ProfileDetail;
63
+ }
64
+
65
+ export declare class ValidationException extends __BaseException {
66
+ readonly name: "ValidationException";
67
+ readonly $fault: "client";
68
+
69
+ constructor(
70
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
71
+ );
72
+ }
73
+
74
+ export declare type SourceData =
75
+ | SourceData.AcmPcaArnMember
76
+ | SourceData.X509CertificateDataMember
77
+ | SourceData.$UnknownMember;
78
+ export declare namespace SourceData {
79
+ interface X509CertificateDataMember {
80
+ x509CertificateData: string;
81
+ acmPcaArn?: never;
82
+ $unknown?: never;
83
+ }
84
+
85
+ interface AcmPcaArnMember {
86
+ x509CertificateData?: never;
87
+ acmPcaArn: string;
88
+ $unknown?: never;
89
+ }
90
+ interface $UnknownMember {
91
+ x509CertificateData?: never;
92
+ acmPcaArn?: never;
93
+ $unknown: [string, any];
94
+ }
95
+ interface Visitor<T> {
96
+ x509CertificateData: (value: string) => T;
97
+ acmPcaArn: (value: string) => T;
98
+ _: (name: string, value: any) => T;
99
+ }
100
+ const visit: <T>(value: SourceData, visitor: Visitor<T>) => T;
101
+ }
102
+ export declare enum TrustAnchorType {
103
+ AWS_ACM_PCA = "AWS_ACM_PCA",
104
+ CERTIFICATE_BUNDLE = "CERTIFICATE_BUNDLE",
105
+ SELF_SIGNED_REPOSITORY = "SELF_SIGNED_REPOSITORY",
106
+ }
107
+
108
+ export interface Source {
109
+ sourceType?: TrustAnchorType | string;
110
+
111
+ sourceData?: SourceData;
112
+ }
113
+ export interface CreateTrustAnchorRequest {
114
+ name: string | undefined;
115
+
116
+ source: Source | undefined;
117
+
118
+ enabled?: boolean;
119
+
120
+ tags?: Tag[];
121
+ }
122
+
123
+ export interface TrustAnchorDetail {
124
+ trustAnchorId?: string;
125
+
126
+ trustAnchorArn?: string;
127
+
128
+ name?: string;
129
+
130
+ source?: Source;
131
+
132
+ enabled?: boolean;
133
+
134
+ createdAt?: Date;
135
+
136
+ updatedAt?: Date;
137
+ }
138
+ export interface TrustAnchorDetailResponse {
139
+ trustAnchor: TrustAnchorDetail | undefined;
140
+ }
141
+
142
+ export interface CredentialSummary {
143
+ seenAt?: Date;
144
+
145
+ serialNumber?: string;
146
+
147
+ issuer?: string;
148
+
149
+ enabled?: boolean;
150
+
151
+ x509CertificateData?: string;
152
+
153
+ failed?: boolean;
154
+ }
155
+
156
+ export interface CrlDetail {
157
+ crlId?: string;
158
+
159
+ crlArn?: string;
160
+
161
+ name?: string;
162
+
163
+ enabled?: boolean;
164
+
165
+ crlData?: Uint8Array;
166
+
167
+ trustAnchorArn?: string;
168
+
169
+ createdAt?: Date;
170
+
171
+ updatedAt?: Date;
172
+ }
173
+ export interface CrlDetailResponse {
174
+ crl: CrlDetail | undefined;
175
+ }
176
+
177
+ export declare class ResourceNotFoundException extends __BaseException {
178
+ readonly name: "ResourceNotFoundException";
179
+ readonly $fault: "client";
180
+
181
+ constructor(
182
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
183
+ );
184
+ }
185
+ export interface ScalarCrlRequest {
186
+ crlId: string | undefined;
187
+ }
188
+ export interface ImportCrlRequest {
189
+ name: string | undefined;
190
+
191
+ crlData: Uint8Array | undefined;
192
+
193
+ enabled?: boolean;
194
+
195
+ tags?: Tag[];
196
+
197
+ trustAnchorArn: string | undefined;
198
+ }
199
+ export interface ListCrlsResponse {
200
+ nextToken?: string;
201
+
202
+ crls?: CrlDetail[];
203
+ }
204
+ export interface ListRequest {
205
+ nextToken?: string;
206
+
207
+ pageSize?: number;
208
+ }
209
+ export interface UpdateCrlRequest {
210
+ crlId: string | undefined;
211
+
212
+ name?: string;
213
+
214
+ crlData?: Uint8Array;
215
+ }
216
+ export interface ScalarProfileRequest {
217
+ profileId: string | undefined;
218
+ }
219
+ export interface ScalarTrustAnchorRequest {
220
+ trustAnchorId: string | undefined;
221
+ }
222
+ export interface ScalarSubjectRequest {
223
+ subjectId: string | undefined;
224
+ }
225
+
226
+ export interface InstanceProperty {
227
+ seenAt?: Date;
228
+
229
+ properties?: Record<string, string>;
230
+
231
+ failed?: boolean;
232
+ }
233
+
234
+ export interface SubjectDetail {
235
+ subjectArn?: string;
236
+
237
+ subjectId?: string;
238
+
239
+ enabled?: boolean;
240
+
241
+ x509Subject?: string;
242
+
243
+ lastSeenAt?: Date;
244
+
245
+ createdAt?: Date;
246
+
247
+ updatedAt?: Date;
248
+
249
+ credentials?: CredentialSummary[];
250
+
251
+ instanceProperties?: InstanceProperty[];
252
+ }
253
+ export interface SubjectDetailResponse {
254
+ subject?: SubjectDetail;
255
+ }
256
+ export interface ListProfilesResponse {
257
+ nextToken?: string;
258
+
259
+ profiles?: ProfileDetail[];
260
+ }
261
+
262
+ export interface SubjectSummary {
263
+ subjectArn?: string;
264
+
265
+ subjectId?: string;
266
+
267
+ enabled?: boolean;
268
+
269
+ x509Subject?: string;
270
+
271
+ lastSeenAt?: Date;
272
+
273
+ createdAt?: Date;
274
+
275
+ updatedAt?: Date;
276
+ }
277
+ export interface ListSubjectsResponse {
278
+ subjects?: SubjectSummary[];
279
+
280
+ nextToken?: string;
281
+ }
282
+ export interface ListTagsForResourceRequest {
283
+ resourceArn: string | undefined;
284
+ }
285
+ export interface ListTagsForResourceResponse {
286
+ tags?: Tag[];
287
+ }
288
+ export interface ListTrustAnchorsResponse {
289
+ nextToken?: string;
290
+
291
+ trustAnchors?: TrustAnchorDetail[];
292
+ }
293
+ export interface UpdateProfileRequest {
294
+ profileId: string | undefined;
295
+
296
+ name?: string;
297
+
298
+ sessionPolicy?: string;
299
+
300
+ roleArns?: string[];
301
+
302
+ managedPolicyArns?: string[];
303
+
304
+ durationSeconds?: number;
305
+ }
306
+ export interface TagResourceRequest {
307
+ resourceArn: string | undefined;
308
+
309
+ tags: Tag[] | undefined;
310
+ }
311
+ export interface TagResourceResponse {}
312
+
313
+ export declare class TooManyTagsException extends __BaseException {
314
+ readonly name: "TooManyTagsException";
315
+ readonly $fault: "client";
316
+
317
+ constructor(
318
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
319
+ );
320
+ }
321
+ export interface UpdateTrustAnchorRequest {
322
+ trustAnchorId: string | undefined;
323
+
324
+ name?: string;
325
+
326
+ source?: Source;
327
+ }
328
+ export interface UntagResourceRequest {
329
+ resourceArn: string | undefined;
330
+
331
+ tagKeys: string[] | undefined;
332
+ }
333
+ export interface UntagResourceResponse {}
334
+
335
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
336
+
337
+ export declare const CreateProfileRequestFilterSensitiveLog: (
338
+ obj: CreateProfileRequest
339
+ ) => any;
340
+
341
+ export declare const ProfileDetailFilterSensitiveLog: (
342
+ obj: ProfileDetail
343
+ ) => any;
344
+
345
+ export declare const ProfileDetailResponseFilterSensitiveLog: (
346
+ obj: ProfileDetailResponse
347
+ ) => any;
348
+
349
+ export declare const SourceDataFilterSensitiveLog: (obj: SourceData) => any;
350
+
351
+ export declare const SourceFilterSensitiveLog: (obj: Source) => any;
352
+
353
+ export declare const CreateTrustAnchorRequestFilterSensitiveLog: (
354
+ obj: CreateTrustAnchorRequest
355
+ ) => any;
356
+
357
+ export declare const TrustAnchorDetailFilterSensitiveLog: (
358
+ obj: TrustAnchorDetail
359
+ ) => any;
360
+
361
+ export declare const TrustAnchorDetailResponseFilterSensitiveLog: (
362
+ obj: TrustAnchorDetailResponse
363
+ ) => any;
364
+
365
+ export declare const CredentialSummaryFilterSensitiveLog: (
366
+ obj: CredentialSummary
367
+ ) => any;
368
+
369
+ export declare const CrlDetailFilterSensitiveLog: (obj: CrlDetail) => any;
370
+
371
+ export declare const CrlDetailResponseFilterSensitiveLog: (
372
+ obj: CrlDetailResponse
373
+ ) => any;
374
+
375
+ export declare const ScalarCrlRequestFilterSensitiveLog: (
376
+ obj: ScalarCrlRequest
377
+ ) => any;
378
+
379
+ export declare const ImportCrlRequestFilterSensitiveLog: (
380
+ obj: ImportCrlRequest
381
+ ) => any;
382
+
383
+ export declare const ListCrlsResponseFilterSensitiveLog: (
384
+ obj: ListCrlsResponse
385
+ ) => any;
386
+
387
+ export declare const ListRequestFilterSensitiveLog: (obj: ListRequest) => any;
388
+
389
+ export declare const UpdateCrlRequestFilterSensitiveLog: (
390
+ obj: UpdateCrlRequest
391
+ ) => any;
392
+
393
+ export declare const ScalarProfileRequestFilterSensitiveLog: (
394
+ obj: ScalarProfileRequest
395
+ ) => any;
396
+
397
+ export declare const ScalarTrustAnchorRequestFilterSensitiveLog: (
398
+ obj: ScalarTrustAnchorRequest
399
+ ) => any;
400
+
401
+ export declare const ScalarSubjectRequestFilterSensitiveLog: (
402
+ obj: ScalarSubjectRequest
403
+ ) => any;
404
+
405
+ export declare const InstancePropertyFilterSensitiveLog: (
406
+ obj: InstanceProperty
407
+ ) => any;
408
+
409
+ export declare const SubjectDetailFilterSensitiveLog: (
410
+ obj: SubjectDetail
411
+ ) => any;
412
+
413
+ export declare const SubjectDetailResponseFilterSensitiveLog: (
414
+ obj: SubjectDetailResponse
415
+ ) => any;
416
+
417
+ export declare const ListProfilesResponseFilterSensitiveLog: (
418
+ obj: ListProfilesResponse
419
+ ) => any;
420
+
421
+ export declare const SubjectSummaryFilterSensitiveLog: (
422
+ obj: SubjectSummary
423
+ ) => any;
424
+
425
+ export declare const ListSubjectsResponseFilterSensitiveLog: (
426
+ obj: ListSubjectsResponse
427
+ ) => any;
428
+
429
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
430
+ obj: ListTagsForResourceRequest
431
+ ) => any;
432
+
433
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
434
+ obj: ListTagsForResourceResponse
435
+ ) => any;
436
+
437
+ export declare const ListTrustAnchorsResponseFilterSensitiveLog: (
438
+ obj: ListTrustAnchorsResponse
439
+ ) => any;
440
+
441
+ export declare const UpdateProfileRequestFilterSensitiveLog: (
442
+ obj: UpdateProfileRequest
443
+ ) => any;
444
+
445
+ export declare const TagResourceRequestFilterSensitiveLog: (
446
+ obj: TagResourceRequest
447
+ ) => any;
448
+
449
+ export declare const TagResourceResponseFilterSensitiveLog: (
450
+ obj: TagResourceResponse
451
+ ) => any;
452
+
453
+ export declare const UpdateTrustAnchorRequestFilterSensitiveLog: (
454
+ obj: UpdateTrustAnchorRequest
455
+ ) => any;
456
+
457
+ export declare const UntagResourceRequestFilterSensitiveLog: (
458
+ obj: UntagResourceRequest
459
+ ) => any;
460
+
461
+ export declare const UntagResourceResponseFilterSensitiveLog: (
462
+ obj: UntagResourceResponse
463
+ ) => any;