@aws-sdk/client-secrets-manager 3.170.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 (32) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/SecretsManager.d.ts +0 -22
  3. package/dist-types/ts3.4/SecretsManagerClient.d.ts +0 -25
  4. package/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +0 -2
  5. package/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +0 -2
  6. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +0 -2
  7. package/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +0 -1
  27. package/dist-types/ts3.4/models/models_0.d.ts +0 -209
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  32. package/package.json +26 -26
@@ -1,9 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { SecretsManagerServiceException as __BaseException } from "./SecretsManagerServiceException";
3
-
4
3
  export interface ReplicaRegionType {
5
4
  Region?: string;
6
-
7
5
  KmsKeyId?: string;
8
6
  }
9
7
  export interface CancelRotateSecretRequest {
@@ -11,74 +9,54 @@ export interface CancelRotateSecretRequest {
11
9
  }
12
10
  export interface CancelRotateSecretResponse {
13
11
  ARN?: string;
14
-
15
12
  Name?: string;
16
-
17
13
  VersionId?: string;
18
14
  }
19
-
20
15
  export declare class InternalServiceError extends __BaseException {
21
16
  readonly name: "InternalServiceError";
22
17
  readonly $fault: "server";
23
18
  Message?: string;
24
-
25
19
  constructor(
26
20
  opts: __ExceptionOptionType<InternalServiceError, __BaseException>
27
21
  );
28
22
  }
29
-
30
23
  export declare class InvalidParameterException extends __BaseException {
31
24
  readonly name: "InvalidParameterException";
32
25
  readonly $fault: "client";
33
26
  Message?: string;
34
-
35
27
  constructor(
36
28
  opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
37
29
  );
38
30
  }
39
-
40
31
  export declare class InvalidRequestException extends __BaseException {
41
32
  readonly name: "InvalidRequestException";
42
33
  readonly $fault: "client";
43
34
  Message?: string;
44
-
45
35
  constructor(
46
36
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
47
37
  );
48
38
  }
49
-
50
39
  export declare class ResourceNotFoundException extends __BaseException {
51
40
  readonly name: "ResourceNotFoundException";
52
41
  readonly $fault: "client";
53
42
  Message?: string;
54
-
55
43
  constructor(
56
44
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
57
45
  );
58
46
  }
59
-
60
47
  export interface Tag {
61
48
  Key?: string;
62
-
63
49
  Value?: string;
64
50
  }
65
51
  export interface CreateSecretRequest {
66
52
  Name: string | undefined;
67
-
68
53
  ClientRequestToken?: string;
69
-
70
54
  Description?: string;
71
-
72
55
  KmsKeyId?: string;
73
-
74
56
  SecretBinary?: Uint8Array;
75
-
76
57
  SecretString?: string;
77
-
78
58
  Tags?: Tag[];
79
-
80
59
  AddReplicaRegions?: ReplicaRegionType[];
81
-
82
60
  ForceOverwriteReplicaSecret?: boolean;
83
61
  }
84
62
  export declare enum StatusType {
@@ -86,59 +64,43 @@ export declare enum StatusType {
86
64
  InProgress = "InProgress",
87
65
  InSync = "InSync",
88
66
  }
89
-
90
67
  export interface ReplicationStatusType {
91
68
  Region?: string;
92
-
93
69
  KmsKeyId?: string;
94
-
95
70
  Status?: StatusType | string;
96
-
97
71
  StatusMessage?: string;
98
-
99
72
  LastAccessedDate?: Date;
100
73
  }
101
74
  export interface CreateSecretResponse {
102
75
  ARN?: string;
103
-
104
76
  Name?: string;
105
-
106
77
  VersionId?: string;
107
-
108
78
  ReplicationStatus?: ReplicationStatusType[];
109
79
  }
110
-
111
80
  export declare class DecryptionFailure extends __BaseException {
112
81
  readonly name: "DecryptionFailure";
113
82
  readonly $fault: "client";
114
83
  Message?: string;
115
-
116
84
  constructor(opts: __ExceptionOptionType<DecryptionFailure, __BaseException>);
117
85
  }
118
-
119
86
  export declare class EncryptionFailure extends __BaseException {
120
87
  readonly name: "EncryptionFailure";
121
88
  readonly $fault: "client";
122
89
  Message?: string;
123
-
124
90
  constructor(opts: __ExceptionOptionType<EncryptionFailure, __BaseException>);
125
91
  }
126
-
127
92
  export declare class LimitExceededException extends __BaseException {
128
93
  readonly name: "LimitExceededException";
129
94
  readonly $fault: "client";
130
95
  Message?: string;
131
-
132
96
  constructor(
133
97
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
134
98
  );
135
99
  }
136
-
137
100
  export declare class MalformedPolicyDocumentException extends __BaseException {
138
101
  readonly name: "MalformedPolicyDocumentException";
139
102
  readonly $fault: "client";
140
103
  Message?: string;
141
-
142
104
  constructor(
143
105
  opts: __ExceptionOptionType<
144
106
  MalformedPolicyDocumentException,
@@ -146,22 +108,18 @@ export declare class MalformedPolicyDocumentException extends __BaseException {
146
108
  >
147
109
  );
148
110
  }
149
-
150
111
  export declare class PreconditionNotMetException extends __BaseException {
151
112
  readonly name: "PreconditionNotMetException";
152
113
  readonly $fault: "client";
153
114
  Message?: string;
154
-
155
115
  constructor(
156
116
  opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>
157
117
  );
158
118
  }
159
-
160
119
  export declare class ResourceExistsException extends __BaseException {
161
120
  readonly name: "ResourceExistsException";
162
121
  readonly $fault: "client";
163
122
  Message?: string;
164
-
165
123
  constructor(
166
124
  opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
167
125
  );
@@ -171,67 +129,43 @@ export interface DeleteResourcePolicyRequest {
171
129
  }
172
130
  export interface DeleteResourcePolicyResponse {
173
131
  ARN?: string;
174
-
175
132
  Name?: string;
176
133
  }
177
134
  export interface DeleteSecretRequest {
178
135
  SecretId: string | undefined;
179
-
180
136
  RecoveryWindowInDays?: number;
181
-
182
137
  ForceDeleteWithoutRecovery?: boolean;
183
138
  }
184
139
  export interface DeleteSecretResponse {
185
140
  ARN?: string;
186
-
187
141
  Name?: string;
188
-
189
142
  DeletionDate?: Date;
190
143
  }
191
144
  export interface DescribeSecretRequest {
192
145
  SecretId: string | undefined;
193
146
  }
194
-
195
147
  export interface RotationRulesType {
196
148
  AutomaticallyAfterDays?: number;
197
-
198
149
  Duration?: string;
199
-
200
150
  ScheduleExpression?: string;
201
151
  }
202
152
  export interface DescribeSecretResponse {
203
153
  ARN?: string;
204
-
205
154
  Name?: string;
206
-
207
155
  Description?: string;
208
-
209
156
  KmsKeyId?: string;
210
-
211
157
  RotationEnabled?: boolean;
212
-
213
158
  RotationLambdaARN?: string;
214
-
215
159
  RotationRules?: RotationRulesType;
216
-
217
160
  LastRotatedDate?: Date;
218
-
219
161
  LastChangedDate?: Date;
220
-
221
162
  LastAccessedDate?: Date;
222
-
223
163
  DeletedDate?: Date;
224
-
225
164
  Tags?: Tag[];
226
-
227
165
  VersionIdsToStages?: Record<string, string[]>;
228
-
229
166
  OwningService?: string;
230
-
231
167
  CreatedDate?: Date;
232
-
233
168
  PrimaryRegion?: string;
234
-
235
169
  ReplicationStatus?: ReplicationStatusType[];
236
170
  }
237
171
  export declare type FilterNameStringType =
@@ -241,27 +175,18 @@ export declare type FilterNameStringType =
241
175
  | "primary-region"
242
176
  | "tag-key"
243
177
  | "tag-value";
244
-
245
178
  export interface Filter {
246
179
  Key?: FilterNameStringType | string;
247
-
248
180
  Values?: string[];
249
181
  }
250
182
  export interface GetRandomPasswordRequest {
251
183
  PasswordLength?: number;
252
-
253
184
  ExcludeCharacters?: string;
254
-
255
185
  ExcludeNumbers?: boolean;
256
-
257
186
  ExcludePunctuation?: boolean;
258
-
259
187
  ExcludeUppercase?: boolean;
260
-
261
188
  ExcludeLowercase?: boolean;
262
-
263
189
  IncludeSpace?: boolean;
264
-
265
190
  RequireEachIncludedType?: boolean;
266
191
  }
267
192
  export interface GetRandomPasswordResponse {
@@ -272,39 +197,27 @@ export interface GetResourcePolicyRequest {
272
197
  }
273
198
  export interface GetResourcePolicyResponse {
274
199
  ARN?: string;
275
-
276
200
  Name?: string;
277
-
278
201
  ResourcePolicy?: string;
279
202
  }
280
203
  export interface GetSecretValueRequest {
281
204
  SecretId: string | undefined;
282
-
283
205
  VersionId?: string;
284
-
285
206
  VersionStage?: string;
286
207
  }
287
208
  export interface GetSecretValueResponse {
288
209
  ARN?: string;
289
-
290
210
  Name?: string;
291
-
292
211
  VersionId?: string;
293
-
294
212
  SecretBinary?: Uint8Array;
295
-
296
213
  SecretString?: string;
297
-
298
214
  VersionStages?: string[];
299
-
300
215
  CreatedDate?: Date;
301
216
  }
302
-
303
217
  export declare class InvalidNextTokenException extends __BaseException {
304
218
  readonly name: "InvalidNextTokenException";
305
219
  readonly $fault: "client";
306
220
  Message?: string;
307
-
308
221
  constructor(
309
222
  opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
310
223
  );
@@ -315,144 +228,96 @@ export declare enum SortOrderType {
315
228
  }
316
229
  export interface ListSecretsRequest {
317
230
  MaxResults?: number;
318
-
319
231
  NextToken?: string;
320
-
321
232
  Filters?: Filter[];
322
-
323
233
  SortOrder?: SortOrderType | string;
324
234
  }
325
-
326
235
  export interface SecretListEntry {
327
236
  ARN?: string;
328
-
329
237
  Name?: string;
330
-
331
238
  Description?: string;
332
-
333
239
  KmsKeyId?: string;
334
-
335
240
  RotationEnabled?: boolean;
336
-
337
241
  RotationLambdaARN?: string;
338
-
339
242
  RotationRules?: RotationRulesType;
340
-
341
243
  LastRotatedDate?: Date;
342
-
343
244
  LastChangedDate?: Date;
344
-
345
245
  LastAccessedDate?: Date;
346
-
347
246
  DeletedDate?: Date;
348
-
349
247
  Tags?: Tag[];
350
-
351
248
  SecretVersionsToStages?: Record<string, string[]>;
352
-
353
249
  OwningService?: string;
354
-
355
250
  CreatedDate?: Date;
356
-
357
251
  PrimaryRegion?: string;
358
252
  }
359
253
  export interface ListSecretsResponse {
360
254
  SecretList?: SecretListEntry[];
361
-
362
255
  NextToken?: string;
363
256
  }
364
257
  export interface ListSecretVersionIdsRequest {
365
258
  SecretId: string | undefined;
366
-
367
259
  MaxResults?: number;
368
-
369
260
  NextToken?: string;
370
-
371
261
  IncludeDeprecated?: boolean;
372
262
  }
373
-
374
263
  export interface SecretVersionsListEntry {
375
264
  VersionId?: string;
376
-
377
265
  VersionStages?: string[];
378
-
379
266
  LastAccessedDate?: Date;
380
-
381
267
  CreatedDate?: Date;
382
-
383
268
  KmsKeyIds?: string[];
384
269
  }
385
270
  export interface ListSecretVersionIdsResponse {
386
271
  Versions?: SecretVersionsListEntry[];
387
-
388
272
  NextToken?: string;
389
-
390
273
  ARN?: string;
391
-
392
274
  Name?: string;
393
275
  }
394
-
395
276
  export declare class PublicPolicyException extends __BaseException {
396
277
  readonly name: "PublicPolicyException";
397
278
  readonly $fault: "client";
398
279
  Message?: string;
399
-
400
280
  constructor(
401
281
  opts: __ExceptionOptionType<PublicPolicyException, __BaseException>
402
282
  );
403
283
  }
404
284
  export interface PutResourcePolicyRequest {
405
285
  SecretId: string | undefined;
406
-
407
286
  ResourcePolicy: string | undefined;
408
-
409
287
  BlockPublicPolicy?: boolean;
410
288
  }
411
289
  export interface PutResourcePolicyResponse {
412
290
  ARN?: string;
413
-
414
291
  Name?: string;
415
292
  }
416
293
  export interface PutSecretValueRequest {
417
294
  SecretId: string | undefined;
418
-
419
295
  ClientRequestToken?: string;
420
-
421
296
  SecretBinary?: Uint8Array;
422
-
423
297
  SecretString?: string;
424
-
425
298
  VersionStages?: string[];
426
299
  }
427
300
  export interface PutSecretValueResponse {
428
301
  ARN?: string;
429
-
430
302
  Name?: string;
431
-
432
303
  VersionId?: string;
433
-
434
304
  VersionStages?: string[];
435
305
  }
436
306
  export interface RemoveRegionsFromReplicationRequest {
437
307
  SecretId: string | undefined;
438
-
439
308
  RemoveReplicaRegions: string[] | undefined;
440
309
  }
441
310
  export interface RemoveRegionsFromReplicationResponse {
442
311
  ARN?: string;
443
-
444
312
  ReplicationStatus?: ReplicationStatusType[];
445
313
  }
446
314
  export interface ReplicateSecretToRegionsRequest {
447
315
  SecretId: string | undefined;
448
-
449
316
  AddReplicaRegions: ReplicaRegionType[] | undefined;
450
-
451
317
  ForceOverwriteReplicaSecret?: boolean;
452
318
  }
453
319
  export interface ReplicateSecretToRegionsResponse {
454
320
  ARN?: string;
455
-
456
321
  ReplicationStatus?: ReplicationStatusType[];
457
322
  }
458
323
  export interface RestoreSecretRequest {
@@ -460,25 +325,18 @@ export interface RestoreSecretRequest {
460
325
  }
461
326
  export interface RestoreSecretResponse {
462
327
  ARN?: string;
463
-
464
328
  Name?: string;
465
329
  }
466
330
  export interface RotateSecretRequest {
467
331
  SecretId: string | undefined;
468
-
469
332
  ClientRequestToken?: string;
470
-
471
333
  RotationLambdaARN?: string;
472
-
473
334
  RotationRules?: RotationRulesType;
474
-
475
335
  RotateImmediately?: boolean;
476
336
  }
477
337
  export interface RotateSecretResponse {
478
338
  ARN?: string;
479
-
480
339
  Name?: string;
481
-
482
340
  VersionId?: string;
483
341
  }
484
342
  export interface StopReplicationToReplicaRequest {
@@ -489,257 +347,190 @@ export interface StopReplicationToReplicaResponse {
489
347
  }
490
348
  export interface TagResourceRequest {
491
349
  SecretId: string | undefined;
492
-
493
350
  Tags: Tag[] | undefined;
494
351
  }
495
352
  export interface UntagResourceRequest {
496
353
  SecretId: string | undefined;
497
-
498
354
  TagKeys: string[] | undefined;
499
355
  }
500
356
  export interface UpdateSecretRequest {
501
357
  SecretId: string | undefined;
502
-
503
358
  ClientRequestToken?: string;
504
-
505
359
  Description?: string;
506
-
507
360
  KmsKeyId?: string;
508
-
509
361
  SecretBinary?: Uint8Array;
510
-
511
362
  SecretString?: string;
512
363
  }
513
364
  export interface UpdateSecretResponse {
514
365
  ARN?: string;
515
-
516
366
  Name?: string;
517
-
518
367
  VersionId?: string;
519
368
  }
520
369
  export interface UpdateSecretVersionStageRequest {
521
370
  SecretId: string | undefined;
522
-
523
371
  VersionStage: string | undefined;
524
-
525
372
  RemoveFromVersionId?: string;
526
-
527
373
  MoveToVersionId?: string;
528
374
  }
529
375
  export interface UpdateSecretVersionStageResponse {
530
376
  ARN?: string;
531
-
532
377
  Name?: string;
533
378
  }
534
379
  export interface ValidateResourcePolicyRequest {
535
380
  SecretId?: string;
536
-
537
381
  ResourcePolicy: string | undefined;
538
382
  }
539
-
540
383
  export interface ValidationErrorsEntry {
541
384
  CheckName?: string;
542
-
543
385
  ErrorMessage?: string;
544
386
  }
545
387
  export interface ValidateResourcePolicyResponse {
546
388
  PolicyValidationPassed?: boolean;
547
-
548
389
  ValidationErrors?: ValidationErrorsEntry[];
549
390
  }
550
-
551
391
  export declare const ReplicaRegionTypeFilterSensitiveLog: (
552
392
  obj: ReplicaRegionType
553
393
  ) => any;
554
-
555
394
  export declare const CancelRotateSecretRequestFilterSensitiveLog: (
556
395
  obj: CancelRotateSecretRequest
557
396
  ) => any;
558
-
559
397
  export declare const CancelRotateSecretResponseFilterSensitiveLog: (
560
398
  obj: CancelRotateSecretResponse
561
399
  ) => any;
562
-
563
400
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
564
-
565
401
  export declare const CreateSecretRequestFilterSensitiveLog: (
566
402
  obj: CreateSecretRequest
567
403
  ) => any;
568
-
569
404
  export declare const ReplicationStatusTypeFilterSensitiveLog: (
570
405
  obj: ReplicationStatusType
571
406
  ) => any;
572
-
573
407
  export declare const CreateSecretResponseFilterSensitiveLog: (
574
408
  obj: CreateSecretResponse
575
409
  ) => any;
576
-
577
410
  export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (
578
411
  obj: DeleteResourcePolicyRequest
579
412
  ) => any;
580
-
581
413
  export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (
582
414
  obj: DeleteResourcePolicyResponse
583
415
  ) => any;
584
-
585
416
  export declare const DeleteSecretRequestFilterSensitiveLog: (
586
417
  obj: DeleteSecretRequest
587
418
  ) => any;
588
-
589
419
  export declare const DeleteSecretResponseFilterSensitiveLog: (
590
420
  obj: DeleteSecretResponse
591
421
  ) => any;
592
-
593
422
  export declare const DescribeSecretRequestFilterSensitiveLog: (
594
423
  obj: DescribeSecretRequest
595
424
  ) => any;
596
-
597
425
  export declare const RotationRulesTypeFilterSensitiveLog: (
598
426
  obj: RotationRulesType
599
427
  ) => any;
600
-
601
428
  export declare const DescribeSecretResponseFilterSensitiveLog: (
602
429
  obj: DescribeSecretResponse
603
430
  ) => any;
604
-
605
431
  export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
606
-
607
432
  export declare const GetRandomPasswordRequestFilterSensitiveLog: (
608
433
  obj: GetRandomPasswordRequest
609
434
  ) => any;
610
-
611
435
  export declare const GetRandomPasswordResponseFilterSensitiveLog: (
612
436
  obj: GetRandomPasswordResponse
613
437
  ) => any;
614
-
615
438
  export declare const GetResourcePolicyRequestFilterSensitiveLog: (
616
439
  obj: GetResourcePolicyRequest
617
440
  ) => any;
618
-
619
441
  export declare const GetResourcePolicyResponseFilterSensitiveLog: (
620
442
  obj: GetResourcePolicyResponse
621
443
  ) => any;
622
-
623
444
  export declare const GetSecretValueRequestFilterSensitiveLog: (
624
445
  obj: GetSecretValueRequest
625
446
  ) => any;
626
-
627
447
  export declare const GetSecretValueResponseFilterSensitiveLog: (
628
448
  obj: GetSecretValueResponse
629
449
  ) => any;
630
-
631
450
  export declare const ListSecretsRequestFilterSensitiveLog: (
632
451
  obj: ListSecretsRequest
633
452
  ) => any;
634
-
635
453
  export declare const SecretListEntryFilterSensitiveLog: (
636
454
  obj: SecretListEntry
637
455
  ) => any;
638
-
639
456
  export declare const ListSecretsResponseFilterSensitiveLog: (
640
457
  obj: ListSecretsResponse
641
458
  ) => any;
642
-
643
459
  export declare const ListSecretVersionIdsRequestFilterSensitiveLog: (
644
460
  obj: ListSecretVersionIdsRequest
645
461
  ) => any;
646
-
647
462
  export declare const SecretVersionsListEntryFilterSensitiveLog: (
648
463
  obj: SecretVersionsListEntry
649
464
  ) => any;
650
-
651
465
  export declare const ListSecretVersionIdsResponseFilterSensitiveLog: (
652
466
  obj: ListSecretVersionIdsResponse
653
467
  ) => any;
654
-
655
468
  export declare const PutResourcePolicyRequestFilterSensitiveLog: (
656
469
  obj: PutResourcePolicyRequest
657
470
  ) => any;
658
-
659
471
  export declare const PutResourcePolicyResponseFilterSensitiveLog: (
660
472
  obj: PutResourcePolicyResponse
661
473
  ) => any;
662
-
663
474
  export declare const PutSecretValueRequestFilterSensitiveLog: (
664
475
  obj: PutSecretValueRequest
665
476
  ) => any;
666
-
667
477
  export declare const PutSecretValueResponseFilterSensitiveLog: (
668
478
  obj: PutSecretValueResponse
669
479
  ) => any;
670
-
671
480
  export declare const RemoveRegionsFromReplicationRequestFilterSensitiveLog: (
672
481
  obj: RemoveRegionsFromReplicationRequest
673
482
  ) => any;
674
-
675
483
  export declare const RemoveRegionsFromReplicationResponseFilterSensitiveLog: (
676
484
  obj: RemoveRegionsFromReplicationResponse
677
485
  ) => any;
678
-
679
486
  export declare const ReplicateSecretToRegionsRequestFilterSensitiveLog: (
680
487
  obj: ReplicateSecretToRegionsRequest
681
488
  ) => any;
682
-
683
489
  export declare const ReplicateSecretToRegionsResponseFilterSensitiveLog: (
684
490
  obj: ReplicateSecretToRegionsResponse
685
491
  ) => any;
686
-
687
492
  export declare const RestoreSecretRequestFilterSensitiveLog: (
688
493
  obj: RestoreSecretRequest
689
494
  ) => any;
690
-
691
495
  export declare const RestoreSecretResponseFilterSensitiveLog: (
692
496
  obj: RestoreSecretResponse
693
497
  ) => any;
694
-
695
498
  export declare const RotateSecretRequestFilterSensitiveLog: (
696
499
  obj: RotateSecretRequest
697
500
  ) => any;
698
-
699
501
  export declare const RotateSecretResponseFilterSensitiveLog: (
700
502
  obj: RotateSecretResponse
701
503
  ) => any;
702
-
703
504
  export declare const StopReplicationToReplicaRequestFilterSensitiveLog: (
704
505
  obj: StopReplicationToReplicaRequest
705
506
  ) => any;
706
-
707
507
  export declare const StopReplicationToReplicaResponseFilterSensitiveLog: (
708
508
  obj: StopReplicationToReplicaResponse
709
509
  ) => any;
710
-
711
510
  export declare const TagResourceRequestFilterSensitiveLog: (
712
511
  obj: TagResourceRequest
713
512
  ) => any;
714
-
715
513
  export declare const UntagResourceRequestFilterSensitiveLog: (
716
514
  obj: UntagResourceRequest
717
515
  ) => any;
718
-
719
516
  export declare const UpdateSecretRequestFilterSensitiveLog: (
720
517
  obj: UpdateSecretRequest
721
518
  ) => any;
722
-
723
519
  export declare const UpdateSecretResponseFilterSensitiveLog: (
724
520
  obj: UpdateSecretResponse
725
521
  ) => any;
726
-
727
522
  export declare const UpdateSecretVersionStageRequestFilterSensitiveLog: (
728
523
  obj: UpdateSecretVersionStageRequest
729
524
  ) => any;
730
-
731
525
  export declare const UpdateSecretVersionStageResponseFilterSensitiveLog: (
732
526
  obj: UpdateSecretVersionStageResponse
733
527
  ) => any;
734
-
735
528
  export declare const ValidateResourcePolicyRequestFilterSensitiveLog: (
736
529
  obj: ValidateResourcePolicyRequest
737
530
  ) => any;
738
-
739
531
  export declare const ValidationErrorsEntryFilterSensitiveLog: (
740
532
  obj: ValidationErrorsEntry
741
533
  ) => any;
742
-
743
534
  export declare const ValidateResourcePolicyResponseFilterSensitiveLog: (
744
535
  obj: ValidateResourcePolicyResponse
745
536
  ) => any;