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