@aws-sdk/client-rolesanywhere 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/RolesAnywhere.d.ts +446 -135
  3. package/dist-types/ts3.4/RolesAnywhereClient.d.ts +261 -99
  4. package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateTrustAnchorCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/DeleteCrlCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DeleteTrustAnchorCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DisableCrlCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DisableProfileCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DisableTrustAnchorCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/EnableCrlCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/EnableProfileCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/EnableTrustAnchorCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/GetCrlCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/GetSubjectCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/GetTrustAnchorCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ImportCrlCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListCrlsCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListSubjectsCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/ListTrustAnchorsCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/UpdateCrlCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/UpdateTrustAnchorCommand.d.ts +36 -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 +7 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +332 -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 +65 -38
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  47. package/package.json +34 -34
@@ -1,430 +1,332 @@
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
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export interface Tag {
11
+ key: string | undefined;
12
+ value: string | undefined;
13
+ }
14
+ export interface CreateProfileRequest {
15
+ name: string | undefined;
16
+ requireInstanceProperties?: boolean;
17
+ sessionPolicy?: string;
18
+ roleArns: string[] | undefined;
19
+ managedPolicyArns?: string[];
20
+ durationSeconds?: number;
21
+ enabled?: boolean;
22
+ tags?: Tag[];
23
+ }
24
+ export interface ProfileDetail {
25
+ profileId?: string;
26
+ profileArn?: string;
27
+ name?: string;
28
+ requireInstanceProperties?: boolean;
29
+ enabled?: boolean;
30
+ createdBy?: string;
31
+ sessionPolicy?: string;
32
+ roleArns?: string[];
33
+ managedPolicyArns?: string[];
34
+ createdAt?: Date;
35
+ updatedAt?: Date;
36
+ durationSeconds?: number;
37
+ }
38
+ export interface ProfileDetailResponse {
39
+ profile?: ProfileDetail;
40
+ }
41
+ export declare class ValidationException extends __BaseException {
42
+ readonly name: "ValidationException";
43
+ readonly $fault: "client";
44
+ constructor(
45
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
46
+ );
47
+ }
48
+ export declare type SourceData =
49
+ | SourceData.AcmPcaArnMember
50
+ | SourceData.X509CertificateDataMember
51
+ | SourceData.$UnknownMember;
52
+ export declare namespace SourceData {
53
+ interface X509CertificateDataMember {
54
+ x509CertificateData: string;
55
+ acmPcaArn?: never;
56
+ $unknown?: never;
57
+ }
58
+ interface AcmPcaArnMember {
59
+ x509CertificateData?: never;
60
+ acmPcaArn: string;
61
+ $unknown?: never;
62
+ }
63
+ interface $UnknownMember {
64
+ x509CertificateData?: never;
65
+ acmPcaArn?: never;
66
+ $unknown: [string, any];
67
+ }
68
+ interface Visitor<T> {
69
+ x509CertificateData: (value: string) => T;
70
+ acmPcaArn: (value: string) => T;
71
+ _: (name: string, value: any) => T;
72
+ }
73
+ const visit: <T>(value: SourceData, visitor: Visitor<T>) => T;
74
+ }
75
+ export declare enum TrustAnchorType {
76
+ AWS_ACM_PCA = "AWS_ACM_PCA",
77
+ CERTIFICATE_BUNDLE = "CERTIFICATE_BUNDLE",
78
+ SELF_SIGNED_REPOSITORY = "SELF_SIGNED_REPOSITORY",
79
+ }
80
+ export interface Source {
81
+ sourceType?: TrustAnchorType | string;
82
+ sourceData?: SourceData;
83
+ }
84
+ export interface CreateTrustAnchorRequest {
85
+ name: string | undefined;
86
+ source: Source | undefined;
87
+ enabled?: boolean;
88
+ tags?: Tag[];
89
+ }
90
+ export interface TrustAnchorDetail {
91
+ trustAnchorId?: string;
92
+ trustAnchorArn?: string;
93
+ name?: string;
94
+ source?: Source;
95
+ enabled?: boolean;
96
+ createdAt?: Date;
97
+ updatedAt?: Date;
98
+ }
99
+ export interface TrustAnchorDetailResponse {
100
+ trustAnchor: TrustAnchorDetail | undefined;
101
+ }
102
+ export interface CredentialSummary {
103
+ seenAt?: Date;
104
+ serialNumber?: string;
105
+ issuer?: string;
106
+ enabled?: boolean;
107
+ x509CertificateData?: string;
108
+ failed?: boolean;
109
+ }
110
+ export interface CrlDetail {
111
+ crlId?: string;
112
+ crlArn?: string;
113
+ name?: string;
114
+ enabled?: boolean;
115
+ crlData?: Uint8Array;
116
+ trustAnchorArn?: string;
117
+ createdAt?: Date;
118
+ updatedAt?: Date;
119
+ }
120
+ export interface CrlDetailResponse {
121
+ crl: CrlDetail | undefined;
122
+ }
123
+ export declare class ResourceNotFoundException extends __BaseException {
124
+ readonly name: "ResourceNotFoundException";
125
+ readonly $fault: "client";
126
+ constructor(
127
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
128
+ );
129
+ }
130
+ export interface ScalarCrlRequest {
131
+ crlId: string | undefined;
132
+ }
133
+ export interface ImportCrlRequest {
134
+ name: string | undefined;
135
+ crlData: Uint8Array | undefined;
136
+ enabled?: boolean;
137
+ tags?: Tag[];
138
+ trustAnchorArn: string | undefined;
139
+ }
140
+ export interface ListCrlsResponse {
141
+ nextToken?: string;
142
+ crls?: CrlDetail[];
143
+ }
144
+ export interface ListRequest {
145
+ nextToken?: string;
146
+ pageSize?: number;
147
+ }
148
+ export interface UpdateCrlRequest {
149
+ crlId: string | undefined;
150
+ name?: string;
151
+ crlData?: Uint8Array;
152
+ }
153
+ export interface ScalarProfileRequest {
154
+ profileId: string | undefined;
155
+ }
156
+ export interface ScalarTrustAnchorRequest {
157
+ trustAnchorId: string | undefined;
158
+ }
159
+ export interface ScalarSubjectRequest {
160
+ subjectId: string | undefined;
161
+ }
162
+ export interface InstanceProperty {
163
+ seenAt?: Date;
164
+ properties?: Record<string, string>;
165
+ failed?: boolean;
166
+ }
167
+ export interface SubjectDetail {
168
+ subjectArn?: string;
169
+ subjectId?: string;
170
+ enabled?: boolean;
171
+ x509Subject?: string;
172
+ lastSeenAt?: Date;
173
+ createdAt?: Date;
174
+ updatedAt?: Date;
175
+ credentials?: CredentialSummary[];
176
+ instanceProperties?: InstanceProperty[];
177
+ }
178
+ export interface SubjectDetailResponse {
179
+ subject?: SubjectDetail;
180
+ }
181
+ export interface ListProfilesResponse {
182
+ nextToken?: string;
183
+ profiles?: ProfileDetail[];
184
+ }
185
+ export interface SubjectSummary {
186
+ subjectArn?: string;
187
+ subjectId?: string;
188
+ enabled?: boolean;
189
+ x509Subject?: string;
190
+ lastSeenAt?: Date;
191
+ createdAt?: Date;
192
+ updatedAt?: Date;
193
+ }
194
+ export interface ListSubjectsResponse {
195
+ subjects?: SubjectSummary[];
196
+ nextToken?: string;
197
+ }
198
+ export interface ListTagsForResourceRequest {
199
+ resourceArn: string | undefined;
200
+ }
201
+ export interface ListTagsForResourceResponse {
202
+ tags?: Tag[];
203
+ }
204
+ export interface ListTrustAnchorsResponse {
205
+ nextToken?: string;
206
+ trustAnchors?: TrustAnchorDetail[];
207
+ }
208
+ export interface UpdateProfileRequest {
209
+ profileId: string | undefined;
210
+ name?: string;
211
+ sessionPolicy?: string;
212
+ roleArns?: string[];
213
+ managedPolicyArns?: string[];
214
+ durationSeconds?: number;
215
+ }
216
+ export interface TagResourceRequest {
217
+ resourceArn: string | undefined;
218
+ tags: Tag[] | undefined;
219
+ }
220
+ export interface TagResourceResponse {}
221
+ export declare class TooManyTagsException extends __BaseException {
222
+ readonly name: "TooManyTagsException";
223
+ readonly $fault: "client";
224
+ constructor(
225
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
226
+ );
227
+ }
228
+ export interface UpdateTrustAnchorRequest {
229
+ trustAnchorId: string | undefined;
230
+ name?: string;
231
+ source?: Source;
232
+ }
233
+ export interface UntagResourceRequest {
234
+ resourceArn: string | undefined;
235
+ tagKeys: string[] | undefined;
236
+ }
237
+ export interface UntagResourceResponse {}
238
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
239
+ export declare const CreateProfileRequestFilterSensitiveLog: (
240
+ obj: CreateProfileRequest
241
+ ) => any;
242
+ export declare const ProfileDetailFilterSensitiveLog: (
243
+ obj: ProfileDetail
244
+ ) => any;
245
+ export declare const ProfileDetailResponseFilterSensitiveLog: (
246
+ obj: ProfileDetailResponse
247
+ ) => any;
248
+ export declare const SourceDataFilterSensitiveLog: (obj: SourceData) => any;
249
+ export declare const SourceFilterSensitiveLog: (obj: Source) => any;
250
+ export declare const CreateTrustAnchorRequestFilterSensitiveLog: (
251
+ obj: CreateTrustAnchorRequest
252
+ ) => any;
253
+ export declare const TrustAnchorDetailFilterSensitiveLog: (
254
+ obj: TrustAnchorDetail
255
+ ) => any;
256
+ export declare const TrustAnchorDetailResponseFilterSensitiveLog: (
257
+ obj: TrustAnchorDetailResponse
258
+ ) => any;
259
+ export declare const CredentialSummaryFilterSensitiveLog: (
260
+ obj: CredentialSummary
261
+ ) => any;
262
+ export declare const CrlDetailFilterSensitiveLog: (obj: CrlDetail) => any;
263
+ export declare const CrlDetailResponseFilterSensitiveLog: (
264
+ obj: CrlDetailResponse
265
+ ) => any;
266
+ export declare const ScalarCrlRequestFilterSensitiveLog: (
267
+ obj: ScalarCrlRequest
268
+ ) => any;
269
+ export declare const ImportCrlRequestFilterSensitiveLog: (
270
+ obj: ImportCrlRequest
271
+ ) => any;
272
+ export declare const ListCrlsResponseFilterSensitiveLog: (
273
+ obj: ListCrlsResponse
274
+ ) => any;
275
+ export declare const ListRequestFilterSensitiveLog: (obj: ListRequest) => any;
276
+ export declare const UpdateCrlRequestFilterSensitiveLog: (
277
+ obj: UpdateCrlRequest
278
+ ) => any;
279
+ export declare const ScalarProfileRequestFilterSensitiveLog: (
280
+ obj: ScalarProfileRequest
281
+ ) => any;
282
+ export declare const ScalarTrustAnchorRequestFilterSensitiveLog: (
283
+ obj: ScalarTrustAnchorRequest
284
+ ) => any;
285
+ export declare const ScalarSubjectRequestFilterSensitiveLog: (
286
+ obj: ScalarSubjectRequest
287
+ ) => any;
288
+ export declare const InstancePropertyFilterSensitiveLog: (
289
+ obj: InstanceProperty
290
+ ) => any;
291
+ export declare const SubjectDetailFilterSensitiveLog: (
292
+ obj: SubjectDetail
293
+ ) => any;
294
+ export declare const SubjectDetailResponseFilterSensitiveLog: (
295
+ obj: SubjectDetailResponse
296
+ ) => any;
297
+ export declare const ListProfilesResponseFilterSensitiveLog: (
298
+ obj: ListProfilesResponse
299
+ ) => any;
300
+ export declare const SubjectSummaryFilterSensitiveLog: (
301
+ obj: SubjectSummary
302
+ ) => any;
303
+ export declare const ListSubjectsResponseFilterSensitiveLog: (
304
+ obj: ListSubjectsResponse
305
+ ) => any;
306
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
307
+ obj: ListTagsForResourceRequest
308
+ ) => any;
309
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
310
+ obj: ListTagsForResourceResponse
311
+ ) => any;
312
+ export declare const ListTrustAnchorsResponseFilterSensitiveLog: (
313
+ obj: ListTrustAnchorsResponse
314
+ ) => any;
315
+ export declare const UpdateProfileRequestFilterSensitiveLog: (
316
+ obj: UpdateProfileRequest
317
+ ) => any;
318
+ export declare const TagResourceRequestFilterSensitiveLog: (
319
+ obj: TagResourceRequest
320
+ ) => any;
321
+ export declare const TagResourceResponseFilterSensitiveLog: (
322
+ obj: TagResourceResponse
323
+ ) => any;
324
+ export declare const UpdateTrustAnchorRequestFilterSensitiveLog: (
325
+ obj: UpdateTrustAnchorRequest
326
+ ) => any;
327
+ export declare const UntagResourceRequestFilterSensitiveLog: (
328
+ obj: UntagResourceRequest
329
+ ) => any;
330
+ export declare const UntagResourceResponseFilterSensitiveLog: (
331
+ obj: UntagResourceResponse
332
+ ) => any;