@aws-sdk/client-cloudhsm-v2 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 (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CloudHSMV2.d.ts +259 -80
  3. package/dist-types/ts3.4/CloudHSMV2Client.d.ts +194 -88
  4. package/dist-types/ts3.4/commands/CopyBackupToRegionCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/InitializeClusterCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/ModifyBackupAttributesCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/ModifyClusterCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/RestoreBackupCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +6 -6
  22. package/dist-types/ts3.4/models/CloudHSMV2ServiceException.d.ts +7 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +365 -441
  25. package/dist-types/ts3.4/pagination/DescribeBackupsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/DescribeClustersPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  28. package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  30. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  35. package/package.json +34 -34
@@ -1,441 +1,365 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { CloudHSMV2ServiceException as __BaseException } from "./CloudHSMV2ServiceException";
3
- export declare enum BackupState {
4
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
5
- DELETED = "DELETED",
6
- PENDING_DELETION = "PENDING_DELETION",
7
- READY = "READY"
8
- }
9
-
10
- export interface Tag {
11
-
12
- Key: string | undefined;
13
-
14
- Value: string | undefined;
15
- }
16
-
17
- export interface Backup {
18
-
19
- BackupId: string | undefined;
20
-
21
- BackupState?: BackupState | string;
22
-
23
- ClusterId?: string;
24
-
25
- CreateTimestamp?: Date;
26
-
27
- CopyTimestamp?: Date;
28
-
29
- NeverExpires?: boolean;
30
-
31
- SourceRegion?: string;
32
-
33
- SourceBackup?: string;
34
-
35
- SourceCluster?: string;
36
-
37
- DeleteTimestamp?: Date;
38
-
39
- TagList?: Tag[];
40
- }
41
- export declare enum BackupPolicy {
42
- DEFAULT = "DEFAULT"
43
- }
44
- export declare enum BackupRetentionType {
45
- DAYS = "DAYS"
46
- }
47
-
48
- export interface BackupRetentionPolicy {
49
-
50
- Type?: BackupRetentionType | string;
51
-
52
- Value?: string;
53
- }
54
-
55
- export declare class CloudHsmAccessDeniedException extends __BaseException {
56
- readonly name: "CloudHsmAccessDeniedException";
57
- readonly $fault: "client";
58
- Message?: string;
59
-
60
- constructor(opts: __ExceptionOptionType<CloudHsmAccessDeniedException, __BaseException>);
61
- }
62
-
63
- export declare class CloudHsmInternalFailureException extends __BaseException {
64
- readonly name: "CloudHsmInternalFailureException";
65
- readonly $fault: "server";
66
- Message?: string;
67
-
68
- constructor(opts: __ExceptionOptionType<CloudHsmInternalFailureException, __BaseException>);
69
- }
70
-
71
- export declare class CloudHsmInvalidRequestException extends __BaseException {
72
- readonly name: "CloudHsmInvalidRequestException";
73
- readonly $fault: "client";
74
- Message?: string;
75
-
76
- constructor(opts: __ExceptionOptionType<CloudHsmInvalidRequestException, __BaseException>);
77
- }
78
-
79
- export declare class CloudHsmResourceNotFoundException extends __BaseException {
80
- readonly name: "CloudHsmResourceNotFoundException";
81
- readonly $fault: "client";
82
- Message?: string;
83
-
84
- constructor(opts: __ExceptionOptionType<CloudHsmResourceNotFoundException, __BaseException>);
85
- }
86
-
87
- export declare class CloudHsmServiceException extends __BaseException {
88
- readonly name: "CloudHsmServiceException";
89
- readonly $fault: "client";
90
- Message?: string;
91
-
92
- constructor(opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>);
93
- }
94
-
95
- export declare class CloudHsmTagException extends __BaseException {
96
- readonly name: "CloudHsmTagException";
97
- readonly $fault: "client";
98
- Message?: string;
99
-
100
- constructor(opts: __ExceptionOptionType<CloudHsmTagException, __BaseException>);
101
- }
102
- export interface CopyBackupToRegionRequest {
103
-
104
- DestinationRegion: string | undefined;
105
-
106
- BackupId: string | undefined;
107
-
108
- TagList?: Tag[];
109
- }
110
-
111
- export interface DestinationBackup {
112
-
113
- CreateTimestamp?: Date;
114
-
115
- SourceRegion?: string;
116
-
117
- SourceBackup?: string;
118
-
119
- SourceCluster?: string;
120
- }
121
- export interface CopyBackupToRegionResponse {
122
-
123
- DestinationBackup?: DestinationBackup;
124
- }
125
- export interface CreateClusterRequest {
126
-
127
- BackupRetentionPolicy?: BackupRetentionPolicy;
128
-
129
- HsmType: string | undefined;
130
-
131
- SourceBackupId?: string;
132
-
133
- SubnetIds: string[] | undefined;
134
-
135
- TagList?: Tag[];
136
- }
137
-
138
- export interface Certificates {
139
-
140
- ClusterCsr?: string;
141
-
142
- HsmCertificate?: string;
143
-
144
- AwsHardwareCertificate?: string;
145
-
146
- ManufacturerHardwareCertificate?: string;
147
-
148
- ClusterCertificate?: string;
149
- }
150
- export declare enum HsmState {
151
- ACTIVE = "ACTIVE",
152
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
153
- DEGRADED = "DEGRADED",
154
- DELETED = "DELETED",
155
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS"
156
- }
157
-
158
- export interface Hsm {
159
-
160
- AvailabilityZone?: string;
161
-
162
- ClusterId?: string;
163
-
164
- SubnetId?: string;
165
-
166
- EniId?: string;
167
-
168
- EniIp?: string;
169
-
170
- HsmId: string | undefined;
171
-
172
- State?: HsmState | string;
173
-
174
- StateMessage?: string;
175
- }
176
- export declare enum ClusterState {
177
- ACTIVE = "ACTIVE",
178
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
179
- DEGRADED = "DEGRADED",
180
- DELETED = "DELETED",
181
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
182
- INITIALIZED = "INITIALIZED",
183
- INITIALIZE_IN_PROGRESS = "INITIALIZE_IN_PROGRESS",
184
- UNINITIALIZED = "UNINITIALIZED",
185
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS"
186
- }
187
-
188
- export interface Cluster {
189
-
190
- BackupPolicy?: BackupPolicy | string;
191
-
192
- BackupRetentionPolicy?: BackupRetentionPolicy;
193
-
194
- ClusterId?: string;
195
-
196
- CreateTimestamp?: Date;
197
-
198
- Hsms?: Hsm[];
199
-
200
- HsmType?: string;
201
-
202
- PreCoPassword?: string;
203
-
204
- SecurityGroup?: string;
205
-
206
- SourceBackupId?: string;
207
-
208
- State?: ClusterState | string;
209
-
210
- StateMessage?: string;
211
-
212
- SubnetMapping?: Record<string, string>;
213
-
214
- VpcId?: string;
215
-
216
- Certificates?: Certificates;
217
-
218
- TagList?: Tag[];
219
- }
220
- export interface CreateClusterResponse {
221
-
222
- Cluster?: Cluster;
223
- }
224
- export interface CreateHsmRequest {
225
-
226
- ClusterId: string | undefined;
227
-
228
- AvailabilityZone: string | undefined;
229
-
230
- IpAddress?: string;
231
- }
232
- export interface CreateHsmResponse {
233
-
234
- Hsm?: Hsm;
235
- }
236
- export interface DeleteBackupRequest {
237
-
238
- BackupId: string | undefined;
239
- }
240
- export interface DeleteBackupResponse {
241
-
242
- Backup?: Backup;
243
- }
244
- export interface DeleteClusterRequest {
245
-
246
- ClusterId: string | undefined;
247
- }
248
- export interface DeleteClusterResponse {
249
-
250
- Cluster?: Cluster;
251
- }
252
- export interface DeleteHsmRequest {
253
-
254
- ClusterId: string | undefined;
255
-
256
- HsmId?: string;
257
-
258
- EniId?: string;
259
-
260
- EniIp?: string;
261
- }
262
- export interface DeleteHsmResponse {
263
-
264
- HsmId?: string;
265
- }
266
- export interface DescribeBackupsRequest {
267
-
268
- NextToken?: string;
269
-
270
- MaxResults?: number;
271
-
272
- Filters?: Record<string, string[]>;
273
-
274
- SortAscending?: boolean;
275
- }
276
- export interface DescribeBackupsResponse {
277
-
278
- Backups?: Backup[];
279
-
280
- NextToken?: string;
281
- }
282
- export interface DescribeClustersRequest {
283
-
284
- Filters?: Record<string, string[]>;
285
-
286
- NextToken?: string;
287
-
288
- MaxResults?: number;
289
- }
290
- export interface DescribeClustersResponse {
291
-
292
- Clusters?: Cluster[];
293
-
294
- NextToken?: string;
295
- }
296
- export interface InitializeClusterRequest {
297
-
298
- ClusterId: string | undefined;
299
-
300
- SignedCert: string | undefined;
301
-
302
- TrustAnchor: string | undefined;
303
- }
304
- export interface InitializeClusterResponse {
305
-
306
- State?: ClusterState | string;
307
-
308
- StateMessage?: string;
309
- }
310
- export interface ListTagsRequest {
311
-
312
- ResourceId: string | undefined;
313
-
314
- NextToken?: string;
315
-
316
- MaxResults?: number;
317
- }
318
- export interface ListTagsResponse {
319
-
320
- TagList: Tag[] | undefined;
321
-
322
- NextToken?: string;
323
- }
324
- export interface ModifyBackupAttributesRequest {
325
-
326
- BackupId: string | undefined;
327
-
328
- NeverExpires: boolean | undefined;
329
- }
330
- export interface ModifyBackupAttributesResponse {
331
-
332
- Backup?: Backup;
333
- }
334
- export interface ModifyClusterRequest {
335
-
336
- BackupRetentionPolicy: BackupRetentionPolicy | undefined;
337
-
338
- ClusterId: string | undefined;
339
- }
340
- export interface ModifyClusterResponse {
341
-
342
- Cluster?: Cluster;
343
- }
344
- export interface RestoreBackupRequest {
345
-
346
- BackupId: string | undefined;
347
- }
348
- export interface RestoreBackupResponse {
349
-
350
- Backup?: Backup;
351
- }
352
- export interface TagResourceRequest {
353
-
354
- ResourceId: string | undefined;
355
-
356
- TagList: Tag[] | undefined;
357
- }
358
- export interface TagResourceResponse {
359
- }
360
- export interface UntagResourceRequest {
361
-
362
- ResourceId: string | undefined;
363
-
364
- TagKeyList: string[] | undefined;
365
- }
366
- export interface UntagResourceResponse {
367
- }
368
-
369
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
370
-
371
- export declare const BackupFilterSensitiveLog: (obj: Backup) => any;
372
-
373
- export declare const BackupRetentionPolicyFilterSensitiveLog: (obj: BackupRetentionPolicy) => any;
374
-
375
- export declare const CopyBackupToRegionRequestFilterSensitiveLog: (obj: CopyBackupToRegionRequest) => any;
376
-
377
- export declare const DestinationBackupFilterSensitiveLog: (obj: DestinationBackup) => any;
378
-
379
- export declare const CopyBackupToRegionResponseFilterSensitiveLog: (obj: CopyBackupToRegionResponse) => any;
380
-
381
- export declare const CreateClusterRequestFilterSensitiveLog: (obj: CreateClusterRequest) => any;
382
-
383
- export declare const CertificatesFilterSensitiveLog: (obj: Certificates) => any;
384
-
385
- export declare const HsmFilterSensitiveLog: (obj: Hsm) => any;
386
-
387
- export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
388
-
389
- export declare const CreateClusterResponseFilterSensitiveLog: (obj: CreateClusterResponse) => any;
390
-
391
- export declare const CreateHsmRequestFilterSensitiveLog: (obj: CreateHsmRequest) => any;
392
-
393
- export declare const CreateHsmResponseFilterSensitiveLog: (obj: CreateHsmResponse) => any;
394
-
395
- export declare const DeleteBackupRequestFilterSensitiveLog: (obj: DeleteBackupRequest) => any;
396
-
397
- export declare const DeleteBackupResponseFilterSensitiveLog: (obj: DeleteBackupResponse) => any;
398
-
399
- export declare const DeleteClusterRequestFilterSensitiveLog: (obj: DeleteClusterRequest) => any;
400
-
401
- export declare const DeleteClusterResponseFilterSensitiveLog: (obj: DeleteClusterResponse) => any;
402
-
403
- export declare const DeleteHsmRequestFilterSensitiveLog: (obj: DeleteHsmRequest) => any;
404
-
405
- export declare const DeleteHsmResponseFilterSensitiveLog: (obj: DeleteHsmResponse) => any;
406
-
407
- export declare const DescribeBackupsRequestFilterSensitiveLog: (obj: DescribeBackupsRequest) => any;
408
-
409
- export declare const DescribeBackupsResponseFilterSensitiveLog: (obj: DescribeBackupsResponse) => any;
410
-
411
- export declare const DescribeClustersRequestFilterSensitiveLog: (obj: DescribeClustersRequest) => any;
412
-
413
- export declare const DescribeClustersResponseFilterSensitiveLog: (obj: DescribeClustersResponse) => any;
414
-
415
- export declare const InitializeClusterRequestFilterSensitiveLog: (obj: InitializeClusterRequest) => any;
416
-
417
- export declare const InitializeClusterResponseFilterSensitiveLog: (obj: InitializeClusterResponse) => any;
418
-
419
- export declare const ListTagsRequestFilterSensitiveLog: (obj: ListTagsRequest) => any;
420
-
421
- export declare const ListTagsResponseFilterSensitiveLog: (obj: ListTagsResponse) => any;
422
-
423
- export declare const ModifyBackupAttributesRequestFilterSensitiveLog: (obj: ModifyBackupAttributesRequest) => any;
424
-
425
- export declare const ModifyBackupAttributesResponseFilterSensitiveLog: (obj: ModifyBackupAttributesResponse) => any;
426
-
427
- export declare const ModifyClusterRequestFilterSensitiveLog: (obj: ModifyClusterRequest) => any;
428
-
429
- export declare const ModifyClusterResponseFilterSensitiveLog: (obj: ModifyClusterResponse) => any;
430
-
431
- export declare const RestoreBackupRequestFilterSensitiveLog: (obj: RestoreBackupRequest) => any;
432
-
433
- export declare const RestoreBackupResponseFilterSensitiveLog: (obj: RestoreBackupResponse) => any;
434
-
435
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
436
-
437
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
438
-
439
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
440
-
441
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CloudHSMV2ServiceException as __BaseException } from "./CloudHSMV2ServiceException";
3
+ export declare enum BackupState {
4
+ CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
5
+ DELETED = "DELETED",
6
+ PENDING_DELETION = "PENDING_DELETION",
7
+ READY = "READY",
8
+ }
9
+ export interface Tag {
10
+ Key: string | undefined;
11
+ Value: string | undefined;
12
+ }
13
+ export interface Backup {
14
+ BackupId: string | undefined;
15
+ BackupState?: BackupState | string;
16
+ ClusterId?: string;
17
+ CreateTimestamp?: Date;
18
+ CopyTimestamp?: Date;
19
+ NeverExpires?: boolean;
20
+ SourceRegion?: string;
21
+ SourceBackup?: string;
22
+ SourceCluster?: string;
23
+ DeleteTimestamp?: Date;
24
+ TagList?: Tag[];
25
+ }
26
+ export declare enum BackupPolicy {
27
+ DEFAULT = "DEFAULT",
28
+ }
29
+ export declare enum BackupRetentionType {
30
+ DAYS = "DAYS",
31
+ }
32
+ export interface BackupRetentionPolicy {
33
+ Type?: BackupRetentionType | string;
34
+ Value?: string;
35
+ }
36
+ export declare class CloudHsmAccessDeniedException extends __BaseException {
37
+ readonly name: "CloudHsmAccessDeniedException";
38
+ readonly $fault: "client";
39
+ Message?: string;
40
+ constructor(
41
+ opts: __ExceptionOptionType<CloudHsmAccessDeniedException, __BaseException>
42
+ );
43
+ }
44
+ export declare class CloudHsmInternalFailureException extends __BaseException {
45
+ readonly name: "CloudHsmInternalFailureException";
46
+ readonly $fault: "server";
47
+ Message?: string;
48
+ constructor(
49
+ opts: __ExceptionOptionType<
50
+ CloudHsmInternalFailureException,
51
+ __BaseException
52
+ >
53
+ );
54
+ }
55
+ export declare class CloudHsmInvalidRequestException extends __BaseException {
56
+ readonly name: "CloudHsmInvalidRequestException";
57
+ readonly $fault: "client";
58
+ Message?: string;
59
+ constructor(
60
+ opts: __ExceptionOptionType<
61
+ CloudHsmInvalidRequestException,
62
+ __BaseException
63
+ >
64
+ );
65
+ }
66
+ export declare class CloudHsmResourceNotFoundException extends __BaseException {
67
+ readonly name: "CloudHsmResourceNotFoundException";
68
+ readonly $fault: "client";
69
+ Message?: string;
70
+ constructor(
71
+ opts: __ExceptionOptionType<
72
+ CloudHsmResourceNotFoundException,
73
+ __BaseException
74
+ >
75
+ );
76
+ }
77
+ export declare class CloudHsmServiceException extends __BaseException {
78
+ readonly name: "CloudHsmServiceException";
79
+ readonly $fault: "client";
80
+ Message?: string;
81
+ constructor(
82
+ opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>
83
+ );
84
+ }
85
+ export declare class CloudHsmTagException extends __BaseException {
86
+ readonly name: "CloudHsmTagException";
87
+ readonly $fault: "client";
88
+ Message?: string;
89
+ constructor(
90
+ opts: __ExceptionOptionType<CloudHsmTagException, __BaseException>
91
+ );
92
+ }
93
+ export interface CopyBackupToRegionRequest {
94
+ DestinationRegion: string | undefined;
95
+ BackupId: string | undefined;
96
+ TagList?: Tag[];
97
+ }
98
+ export interface DestinationBackup {
99
+ CreateTimestamp?: Date;
100
+ SourceRegion?: string;
101
+ SourceBackup?: string;
102
+ SourceCluster?: string;
103
+ }
104
+ export interface CopyBackupToRegionResponse {
105
+ DestinationBackup?: DestinationBackup;
106
+ }
107
+ export interface CreateClusterRequest {
108
+ BackupRetentionPolicy?: BackupRetentionPolicy;
109
+ HsmType: string | undefined;
110
+ SourceBackupId?: string;
111
+ SubnetIds: string[] | undefined;
112
+ TagList?: Tag[];
113
+ }
114
+ export interface Certificates {
115
+ ClusterCsr?: string;
116
+ HsmCertificate?: string;
117
+ AwsHardwareCertificate?: string;
118
+ ManufacturerHardwareCertificate?: string;
119
+ ClusterCertificate?: string;
120
+ }
121
+ export declare enum HsmState {
122
+ ACTIVE = "ACTIVE",
123
+ CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
124
+ DEGRADED = "DEGRADED",
125
+ DELETED = "DELETED",
126
+ DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
127
+ }
128
+ export interface Hsm {
129
+ AvailabilityZone?: string;
130
+ ClusterId?: string;
131
+ SubnetId?: string;
132
+ EniId?: string;
133
+ EniIp?: string;
134
+ HsmId: string | undefined;
135
+ State?: HsmState | string;
136
+ StateMessage?: string;
137
+ }
138
+ export declare enum ClusterState {
139
+ ACTIVE = "ACTIVE",
140
+ CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
141
+ DEGRADED = "DEGRADED",
142
+ DELETED = "DELETED",
143
+ DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
144
+ INITIALIZED = "INITIALIZED",
145
+ INITIALIZE_IN_PROGRESS = "INITIALIZE_IN_PROGRESS",
146
+ UNINITIALIZED = "UNINITIALIZED",
147
+ UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
148
+ }
149
+ export interface Cluster {
150
+ BackupPolicy?: BackupPolicy | string;
151
+ BackupRetentionPolicy?: BackupRetentionPolicy;
152
+ ClusterId?: string;
153
+ CreateTimestamp?: Date;
154
+ Hsms?: Hsm[];
155
+ HsmType?: string;
156
+ PreCoPassword?: string;
157
+ SecurityGroup?: string;
158
+ SourceBackupId?: string;
159
+ State?: ClusterState | string;
160
+ StateMessage?: string;
161
+ SubnetMapping?: Record<string, string>;
162
+ VpcId?: string;
163
+ Certificates?: Certificates;
164
+ TagList?: Tag[];
165
+ }
166
+ export interface CreateClusterResponse {
167
+ Cluster?: Cluster;
168
+ }
169
+ export interface CreateHsmRequest {
170
+ ClusterId: string | undefined;
171
+ AvailabilityZone: string | undefined;
172
+ IpAddress?: string;
173
+ }
174
+ export interface CreateHsmResponse {
175
+ Hsm?: Hsm;
176
+ }
177
+ export interface DeleteBackupRequest {
178
+ BackupId: string | undefined;
179
+ }
180
+ export interface DeleteBackupResponse {
181
+ Backup?: Backup;
182
+ }
183
+ export interface DeleteClusterRequest {
184
+ ClusterId: string | undefined;
185
+ }
186
+ export interface DeleteClusterResponse {
187
+ Cluster?: Cluster;
188
+ }
189
+ export interface DeleteHsmRequest {
190
+ ClusterId: string | undefined;
191
+ HsmId?: string;
192
+ EniId?: string;
193
+ EniIp?: string;
194
+ }
195
+ export interface DeleteHsmResponse {
196
+ HsmId?: string;
197
+ }
198
+ export interface DescribeBackupsRequest {
199
+ NextToken?: string;
200
+ MaxResults?: number;
201
+ Filters?: Record<string, string[]>;
202
+ SortAscending?: boolean;
203
+ }
204
+ export interface DescribeBackupsResponse {
205
+ Backups?: Backup[];
206
+ NextToken?: string;
207
+ }
208
+ export interface DescribeClustersRequest {
209
+ Filters?: Record<string, string[]>;
210
+ NextToken?: string;
211
+ MaxResults?: number;
212
+ }
213
+ export interface DescribeClustersResponse {
214
+ Clusters?: Cluster[];
215
+ NextToken?: string;
216
+ }
217
+ export interface InitializeClusterRequest {
218
+ ClusterId: string | undefined;
219
+ SignedCert: string | undefined;
220
+ TrustAnchor: string | undefined;
221
+ }
222
+ export interface InitializeClusterResponse {
223
+ State?: ClusterState | string;
224
+ StateMessage?: string;
225
+ }
226
+ export interface ListTagsRequest {
227
+ ResourceId: string | undefined;
228
+ NextToken?: string;
229
+ MaxResults?: number;
230
+ }
231
+ export interface ListTagsResponse {
232
+ TagList: Tag[] | undefined;
233
+ NextToken?: string;
234
+ }
235
+ export interface ModifyBackupAttributesRequest {
236
+ BackupId: string | undefined;
237
+ NeverExpires: boolean | undefined;
238
+ }
239
+ export interface ModifyBackupAttributesResponse {
240
+ Backup?: Backup;
241
+ }
242
+ export interface ModifyClusterRequest {
243
+ BackupRetentionPolicy: BackupRetentionPolicy | undefined;
244
+ ClusterId: string | undefined;
245
+ }
246
+ export interface ModifyClusterResponse {
247
+ Cluster?: Cluster;
248
+ }
249
+ export interface RestoreBackupRequest {
250
+ BackupId: string | undefined;
251
+ }
252
+ export interface RestoreBackupResponse {
253
+ Backup?: Backup;
254
+ }
255
+ export interface TagResourceRequest {
256
+ ResourceId: string | undefined;
257
+ TagList: Tag[] | undefined;
258
+ }
259
+ export interface TagResourceResponse {}
260
+ export interface UntagResourceRequest {
261
+ ResourceId: string | undefined;
262
+ TagKeyList: string[] | undefined;
263
+ }
264
+ export interface UntagResourceResponse {}
265
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
266
+ export declare const BackupFilterSensitiveLog: (obj: Backup) => any;
267
+ export declare const BackupRetentionPolicyFilterSensitiveLog: (
268
+ obj: BackupRetentionPolicy
269
+ ) => any;
270
+ export declare const CopyBackupToRegionRequestFilterSensitiveLog: (
271
+ obj: CopyBackupToRegionRequest
272
+ ) => any;
273
+ export declare const DestinationBackupFilterSensitiveLog: (
274
+ obj: DestinationBackup
275
+ ) => any;
276
+ export declare const CopyBackupToRegionResponseFilterSensitiveLog: (
277
+ obj: CopyBackupToRegionResponse
278
+ ) => any;
279
+ export declare const CreateClusterRequestFilterSensitiveLog: (
280
+ obj: CreateClusterRequest
281
+ ) => any;
282
+ export declare const CertificatesFilterSensitiveLog: (obj: Certificates) => any;
283
+ export declare const HsmFilterSensitiveLog: (obj: Hsm) => any;
284
+ export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
285
+ export declare const CreateClusterResponseFilterSensitiveLog: (
286
+ obj: CreateClusterResponse
287
+ ) => any;
288
+ export declare const CreateHsmRequestFilterSensitiveLog: (
289
+ obj: CreateHsmRequest
290
+ ) => any;
291
+ export declare const CreateHsmResponseFilterSensitiveLog: (
292
+ obj: CreateHsmResponse
293
+ ) => any;
294
+ export declare const DeleteBackupRequestFilterSensitiveLog: (
295
+ obj: DeleteBackupRequest
296
+ ) => any;
297
+ export declare const DeleteBackupResponseFilterSensitiveLog: (
298
+ obj: DeleteBackupResponse
299
+ ) => any;
300
+ export declare const DeleteClusterRequestFilterSensitiveLog: (
301
+ obj: DeleteClusterRequest
302
+ ) => any;
303
+ export declare const DeleteClusterResponseFilterSensitiveLog: (
304
+ obj: DeleteClusterResponse
305
+ ) => any;
306
+ export declare const DeleteHsmRequestFilterSensitiveLog: (
307
+ obj: DeleteHsmRequest
308
+ ) => any;
309
+ export declare const DeleteHsmResponseFilterSensitiveLog: (
310
+ obj: DeleteHsmResponse
311
+ ) => any;
312
+ export declare const DescribeBackupsRequestFilterSensitiveLog: (
313
+ obj: DescribeBackupsRequest
314
+ ) => any;
315
+ export declare const DescribeBackupsResponseFilterSensitiveLog: (
316
+ obj: DescribeBackupsResponse
317
+ ) => any;
318
+ export declare const DescribeClustersRequestFilterSensitiveLog: (
319
+ obj: DescribeClustersRequest
320
+ ) => any;
321
+ export declare const DescribeClustersResponseFilterSensitiveLog: (
322
+ obj: DescribeClustersResponse
323
+ ) => any;
324
+ export declare const InitializeClusterRequestFilterSensitiveLog: (
325
+ obj: InitializeClusterRequest
326
+ ) => any;
327
+ export declare const InitializeClusterResponseFilterSensitiveLog: (
328
+ obj: InitializeClusterResponse
329
+ ) => any;
330
+ export declare const ListTagsRequestFilterSensitiveLog: (
331
+ obj: ListTagsRequest
332
+ ) => any;
333
+ export declare const ListTagsResponseFilterSensitiveLog: (
334
+ obj: ListTagsResponse
335
+ ) => any;
336
+ export declare const ModifyBackupAttributesRequestFilterSensitiveLog: (
337
+ obj: ModifyBackupAttributesRequest
338
+ ) => any;
339
+ export declare const ModifyBackupAttributesResponseFilterSensitiveLog: (
340
+ obj: ModifyBackupAttributesResponse
341
+ ) => any;
342
+ export declare const ModifyClusterRequestFilterSensitiveLog: (
343
+ obj: ModifyClusterRequest
344
+ ) => any;
345
+ export declare const ModifyClusterResponseFilterSensitiveLog: (
346
+ obj: ModifyClusterResponse
347
+ ) => any;
348
+ export declare const RestoreBackupRequestFilterSensitiveLog: (
349
+ obj: RestoreBackupRequest
350
+ ) => any;
351
+ export declare const RestoreBackupResponseFilterSensitiveLog: (
352
+ obj: RestoreBackupResponse
353
+ ) => any;
354
+ export declare const TagResourceRequestFilterSensitiveLog: (
355
+ obj: TagResourceRequest
356
+ ) => any;
357
+ export declare const TagResourceResponseFilterSensitiveLog: (
358
+ obj: TagResourceResponse
359
+ ) => any;
360
+ export declare const UntagResourceRequestFilterSensitiveLog: (
361
+ obj: UntagResourceRequest
362
+ ) => any;
363
+ export declare const UntagResourceResponseFilterSensitiveLog: (
364
+ obj: UntagResourceResponse
365
+ ) => any;