@aws-sdk/client-mediastore 3.131.0 → 3.142.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 (51) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CreateContainerCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteContainerCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteContainerPolicyCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteCorsPolicyCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteLifecyclePolicyCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteMetricPolicyCommand.js +2 -2
  9. package/dist-cjs/commands/DescribeContainerCommand.js +2 -2
  10. package/dist-cjs/commands/GetContainerPolicyCommand.js +2 -2
  11. package/dist-cjs/commands/GetCorsPolicyCommand.js +2 -2
  12. package/dist-cjs/commands/GetLifecyclePolicyCommand.js +2 -2
  13. package/dist-cjs/commands/GetMetricPolicyCommand.js +2 -2
  14. package/dist-cjs/commands/ListContainersCommand.js +2 -2
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  16. package/dist-cjs/commands/PutContainerPolicyCommand.js +2 -2
  17. package/dist-cjs/commands/PutCorsPolicyCommand.js +2 -2
  18. package/dist-cjs/commands/PutLifecyclePolicyCommand.js +2 -2
  19. package/dist-cjs/commands/PutMetricPolicyCommand.js +2 -2
  20. package/dist-cjs/commands/StartAccessLoggingCommand.js +2 -2
  21. package/dist-cjs/commands/StopAccessLoggingCommand.js +2 -2
  22. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  23. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  24. package/dist-cjs/models/models_0.js +190 -284
  25. package/dist-cjs/protocols/Aws_json1_1.js +105 -192
  26. package/dist-es/commands/CreateContainerCommand.js +3 -3
  27. package/dist-es/commands/DeleteContainerCommand.js +3 -3
  28. package/dist-es/commands/DeleteContainerPolicyCommand.js +3 -3
  29. package/dist-es/commands/DeleteCorsPolicyCommand.js +3 -3
  30. package/dist-es/commands/DeleteLifecyclePolicyCommand.js +3 -3
  31. package/dist-es/commands/DeleteMetricPolicyCommand.js +3 -3
  32. package/dist-es/commands/DescribeContainerCommand.js +3 -3
  33. package/dist-es/commands/GetContainerPolicyCommand.js +3 -3
  34. package/dist-es/commands/GetCorsPolicyCommand.js +3 -3
  35. package/dist-es/commands/GetLifecyclePolicyCommand.js +3 -3
  36. package/dist-es/commands/GetMetricPolicyCommand.js +3 -3
  37. package/dist-es/commands/ListContainersCommand.js +3 -3
  38. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  39. package/dist-es/commands/PutContainerPolicyCommand.js +3 -3
  40. package/dist-es/commands/PutCorsPolicyCommand.js +3 -3
  41. package/dist-es/commands/PutLifecyclePolicyCommand.js +3 -3
  42. package/dist-es/commands/PutMetricPolicyCommand.js +3 -3
  43. package/dist-es/commands/StartAccessLoggingCommand.js +3 -3
  44. package/dist-es/commands/StopAccessLoggingCommand.js +3 -3
  45. package/dist-es/commands/TagResourceCommand.js +3 -3
  46. package/dist-es/commands/UntagResourceCommand.js +3 -3
  47. package/dist-es/models/models_0.js +47 -188
  48. package/dist-es/protocols/Aws_json1_1.js +169 -193
  49. package/dist-types/models/models_0.d.ts +188 -282
  50. package/dist-types/ts3.4/models/models_0.d.ts +0 -4
  51. package/package.json +6 -6
@@ -50,12 +50,6 @@ export interface Container {
50
50
  */
51
51
  AccessLoggingEnabled?: boolean;
52
52
  }
53
- export declare namespace Container {
54
- /**
55
- * @internal
56
- */
57
- const filterSensitiveLog: (obj: Container) => any;
58
- }
59
53
  /**
60
54
  * <p>The container that you specified in the request already exists or is being
61
55
  * updated.</p>
@@ -128,12 +122,6 @@ export interface CorsRule {
128
122
  */
129
123
  ExposeHeaders?: string[];
130
124
  }
131
- export declare namespace CorsRule {
132
- /**
133
- * @internal
134
- */
135
- const filterSensitiveLog: (obj: CorsRule) => any;
136
- }
137
125
  /**
138
126
  * <p>The CORS policy that you specified in the request does not exist.</p>
139
127
  */
@@ -164,12 +152,6 @@ export interface Tag {
164
152
  */
165
153
  Value?: string;
166
154
  }
167
- export declare namespace Tag {
168
- /**
169
- * @internal
170
- */
171
- const filterSensitiveLog: (obj: Tag) => any;
172
- }
173
155
  export interface CreateContainerInput {
174
156
  /**
175
157
  * <p>The name for the container. The name must be from 1 to 255 characters. Container
@@ -185,12 +167,6 @@ export interface CreateContainerInput {
185
167
  */
186
168
  Tags?: Tag[];
187
169
  }
188
- export declare namespace CreateContainerInput {
189
- /**
190
- * @internal
191
- */
192
- const filterSensitiveLog: (obj: CreateContainerInput) => any;
193
- }
194
170
  export interface CreateContainerOutput {
195
171
  /**
196
172
  * <p>ContainerARN: The Amazon Resource Name (ARN) of the newly created container. The ARN
@@ -208,12 +184,6 @@ export interface CreateContainerOutput {
208
184
  */
209
185
  Container: Container | undefined;
210
186
  }
211
- export declare namespace CreateContainerOutput {
212
- /**
213
- * @internal
214
- */
215
- const filterSensitiveLog: (obj: CreateContainerOutput) => any;
216
- }
217
187
  /**
218
188
  * <p>The service is temporarily unavailable.</p>
219
189
  */
@@ -244,40 +214,16 @@ export interface DeleteContainerInput {
244
214
  */
245
215
  ContainerName: string | undefined;
246
216
  }
247
- export declare namespace DeleteContainerInput {
248
- /**
249
- * @internal
250
- */
251
- const filterSensitiveLog: (obj: DeleteContainerInput) => any;
252
- }
253
217
  export interface DeleteContainerOutput {
254
218
  }
255
- export declare namespace DeleteContainerOutput {
256
- /**
257
- * @internal
258
- */
259
- const filterSensitiveLog: (obj: DeleteContainerOutput) => any;
260
- }
261
219
  export interface DeleteContainerPolicyInput {
262
220
  /**
263
221
  * <p>The name of the container that holds the policy.</p>
264
222
  */
265
223
  ContainerName: string | undefined;
266
224
  }
267
- export declare namespace DeleteContainerPolicyInput {
268
- /**
269
- * @internal
270
- */
271
- const filterSensitiveLog: (obj: DeleteContainerPolicyInput) => any;
272
- }
273
225
  export interface DeleteContainerPolicyOutput {
274
226
  }
275
- export declare namespace DeleteContainerPolicyOutput {
276
- /**
277
- * @internal
278
- */
279
- const filterSensitiveLog: (obj: DeleteContainerPolicyOutput) => any;
280
- }
281
227
  /**
282
228
  * <p>The policy that you specified in the request does not exist.</p>
283
229
  */
@@ -296,168 +242,78 @@ export interface DeleteCorsPolicyInput {
296
242
  */
297
243
  ContainerName: string | undefined;
298
244
  }
299
- export declare namespace DeleteCorsPolicyInput {
300
- /**
301
- * @internal
302
- */
303
- const filterSensitiveLog: (obj: DeleteCorsPolicyInput) => any;
304
- }
305
245
  export interface DeleteCorsPolicyOutput {
306
246
  }
307
- export declare namespace DeleteCorsPolicyOutput {
308
- /**
309
- * @internal
310
- */
311
- const filterSensitiveLog: (obj: DeleteCorsPolicyOutput) => any;
312
- }
313
247
  export interface DeleteLifecyclePolicyInput {
314
248
  /**
315
249
  * <p>The name of the container that holds the object lifecycle policy.</p>
316
250
  */
317
251
  ContainerName: string | undefined;
318
252
  }
319
- export declare namespace DeleteLifecyclePolicyInput {
320
- /**
321
- * @internal
322
- */
323
- const filterSensitiveLog: (obj: DeleteLifecyclePolicyInput) => any;
324
- }
325
253
  export interface DeleteLifecyclePolicyOutput {
326
254
  }
327
- export declare namespace DeleteLifecyclePolicyOutput {
328
- /**
329
- * @internal
330
- */
331
- const filterSensitiveLog: (obj: DeleteLifecyclePolicyOutput) => any;
332
- }
333
255
  export interface DeleteMetricPolicyInput {
334
256
  /**
335
257
  * <p>The name of the container that is associated with the metric policy that you want to delete.</p>
336
258
  */
337
259
  ContainerName: string | undefined;
338
260
  }
339
- export declare namespace DeleteMetricPolicyInput {
340
- /**
341
- * @internal
342
- */
343
- const filterSensitiveLog: (obj: DeleteMetricPolicyInput) => any;
344
- }
345
261
  export interface DeleteMetricPolicyOutput {
346
262
  }
347
- export declare namespace DeleteMetricPolicyOutput {
348
- /**
349
- * @internal
350
- */
351
- const filterSensitiveLog: (obj: DeleteMetricPolicyOutput) => any;
352
- }
353
263
  export interface DescribeContainerInput {
354
264
  /**
355
265
  * <p>The name of the container to query.</p>
356
266
  */
357
267
  ContainerName?: string;
358
268
  }
359
- export declare namespace DescribeContainerInput {
360
- /**
361
- * @internal
362
- */
363
- const filterSensitiveLog: (obj: DescribeContainerInput) => any;
364
- }
365
269
  export interface DescribeContainerOutput {
366
270
  /**
367
271
  * <p>The name of the queried container.</p>
368
272
  */
369
273
  Container?: Container;
370
274
  }
371
- export declare namespace DescribeContainerOutput {
372
- /**
373
- * @internal
374
- */
375
- const filterSensitiveLog: (obj: DescribeContainerOutput) => any;
376
- }
377
275
  export interface GetContainerPolicyInput {
378
276
  /**
379
277
  * <p>The name of the container. </p>
380
278
  */
381
279
  ContainerName: string | undefined;
382
280
  }
383
- export declare namespace GetContainerPolicyInput {
384
- /**
385
- * @internal
386
- */
387
- const filterSensitiveLog: (obj: GetContainerPolicyInput) => any;
388
- }
389
281
  export interface GetContainerPolicyOutput {
390
282
  /**
391
283
  * <p>The contents of the access policy.</p>
392
284
  */
393
285
  Policy: string | undefined;
394
286
  }
395
- export declare namespace GetContainerPolicyOutput {
396
- /**
397
- * @internal
398
- */
399
- const filterSensitiveLog: (obj: GetContainerPolicyOutput) => any;
400
- }
401
287
  export interface GetCorsPolicyInput {
402
288
  /**
403
289
  * <p>The name of the container that the policy is assigned to.</p>
404
290
  */
405
291
  ContainerName: string | undefined;
406
292
  }
407
- export declare namespace GetCorsPolicyInput {
408
- /**
409
- * @internal
410
- */
411
- const filterSensitiveLog: (obj: GetCorsPolicyInput) => any;
412
- }
413
293
  export interface GetCorsPolicyOutput {
414
294
  /**
415
295
  * <p>The CORS policy assigned to the container.</p>
416
296
  */
417
297
  CorsPolicy: CorsRule[] | undefined;
418
298
  }
419
- export declare namespace GetCorsPolicyOutput {
420
- /**
421
- * @internal
422
- */
423
- const filterSensitiveLog: (obj: GetCorsPolicyOutput) => any;
424
- }
425
299
  export interface GetLifecyclePolicyInput {
426
300
  /**
427
301
  * <p>The name of the container that the object lifecycle policy is assigned to.</p>
428
302
  */
429
303
  ContainerName: string | undefined;
430
304
  }
431
- export declare namespace GetLifecyclePolicyInput {
432
- /**
433
- * @internal
434
- */
435
- const filterSensitiveLog: (obj: GetLifecyclePolicyInput) => any;
436
- }
437
305
  export interface GetLifecyclePolicyOutput {
438
306
  /**
439
307
  * <p>The object lifecycle policy that is assigned to the container.</p>
440
308
  */
441
309
  LifecyclePolicy: string | undefined;
442
310
  }
443
- export declare namespace GetLifecyclePolicyOutput {
444
- /**
445
- * @internal
446
- */
447
- const filterSensitiveLog: (obj: GetLifecyclePolicyOutput) => any;
448
- }
449
311
  export interface GetMetricPolicyInput {
450
312
  /**
451
313
  * <p>The name of the container that is associated with the metric policy.</p>
452
314
  */
453
315
  ContainerName: string | undefined;
454
316
  }
455
- export declare namespace GetMetricPolicyInput {
456
- /**
457
- * @internal
458
- */
459
- const filterSensitiveLog: (obj: GetMetricPolicyInput) => any;
460
- }
461
317
  /**
462
318
  * <p>A setting that enables metrics at the object level. Each rule contains an object group and an object group name. If the policy includes the MetricPolicyRules parameter, you must include at least one rule. Each metric policy can include up to five rules by default. You can also <a href="https://console.aws.amazon.com/servicequotas/home?region=us-east-1#!/services/mediastore/quotas">request a quota increase</a> to allow up to 300 rules per policy.</p>
463
319
  */
@@ -471,12 +327,6 @@ export interface MetricPolicyRule {
471
327
  */
472
328
  ObjectGroupName: string | undefined;
473
329
  }
474
- export declare namespace MetricPolicyRule {
475
- /**
476
- * @internal
477
- */
478
- const filterSensitiveLog: (obj: MetricPolicyRule) => any;
479
- }
480
330
  /**
481
331
  * <p>The metric policy that is associated with the container. A metric policy allows AWS Elemental MediaStore to send metrics to Amazon CloudWatch. In the policy, you must indicate whether you want MediaStore to send container-level metrics. You can also include rules to define groups of objects that you want MediaStore to send object-level metrics for.</p>
482
332
  * <p>To view examples of how to construct a metric policy for your use case, see <a href="https://docs.aws.amazon.com/mediastore/latest/ug/policies-metric-examples.html">Example Metric Policies</a>.</p>
@@ -491,24 +341,12 @@ export interface MetricPolicy {
491
341
  */
492
342
  MetricPolicyRules?: MetricPolicyRule[];
493
343
  }
494
- export declare namespace MetricPolicy {
495
- /**
496
- * @internal
497
- */
498
- const filterSensitiveLog: (obj: MetricPolicy) => any;
499
- }
500
344
  export interface GetMetricPolicyOutput {
501
345
  /**
502
346
  * <p>The metric policy that is associated with the specific container.</p>
503
347
  */
504
348
  MetricPolicy: MetricPolicy | undefined;
505
349
  }
506
- export declare namespace GetMetricPolicyOutput {
507
- /**
508
- * @internal
509
- */
510
- const filterSensitiveLog: (obj: GetMetricPolicyOutput) => any;
511
- }
512
350
  export interface ListContainersInput {
513
351
  /**
514
352
  * <p>Only if you used <code>MaxResults</code> in the first command, enter the token (which
@@ -522,12 +360,6 @@ export interface ListContainersInput {
522
360
  */
523
361
  MaxResults?: number;
524
362
  }
525
- export declare namespace ListContainersInput {
526
- /**
527
- * @internal
528
- */
529
- const filterSensitiveLog: (obj: ListContainersInput) => any;
530
- }
531
363
  export interface ListContainersOutput {
532
364
  /**
533
365
  * <p>The names of the containers.</p>
@@ -541,36 +373,18 @@ export interface ListContainersOutput {
541
373
  */
542
374
  NextToken?: string;
543
375
  }
544
- export declare namespace ListContainersOutput {
545
- /**
546
- * @internal
547
- */
548
- const filterSensitiveLog: (obj: ListContainersOutput) => any;
549
- }
550
376
  export interface ListTagsForResourceInput {
551
377
  /**
552
378
  * <p>The Amazon Resource Name (ARN) for the container.</p>
553
379
  */
554
380
  Resource: string | undefined;
555
381
  }
556
- export declare namespace ListTagsForResourceInput {
557
- /**
558
- * @internal
559
- */
560
- const filterSensitiveLog: (obj: ListTagsForResourceInput) => any;
561
- }
562
382
  export interface ListTagsForResourceOutput {
563
383
  /**
564
384
  * <p>An array of key:value pairs that are assigned to the container.</p>
565
385
  */
566
386
  Tags?: Tag[];
567
387
  }
568
- export declare namespace ListTagsForResourceOutput {
569
- /**
570
- * @internal
571
- */
572
- const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
573
- }
574
388
  export interface PutContainerPolicyInput {
575
389
  /**
576
390
  * <p>The name of the container.</p>
@@ -590,20 +404,8 @@ export interface PutContainerPolicyInput {
590
404
  */
591
405
  Policy: string | undefined;
592
406
  }
593
- export declare namespace PutContainerPolicyInput {
594
- /**
595
- * @internal
596
- */
597
- const filterSensitiveLog: (obj: PutContainerPolicyInput) => any;
598
- }
599
407
  export interface PutContainerPolicyOutput {
600
408
  }
601
- export declare namespace PutContainerPolicyOutput {
602
- /**
603
- * @internal
604
- */
605
- const filterSensitiveLog: (obj: PutContainerPolicyOutput) => any;
606
- }
607
409
  export interface PutCorsPolicyInput {
608
410
  /**
609
411
  * <p>The name of the container that you want to assign the CORS policy to.</p>
@@ -614,20 +416,8 @@ export interface PutCorsPolicyInput {
614
416
  */
615
417
  CorsPolicy: CorsRule[] | undefined;
616
418
  }
617
- export declare namespace PutCorsPolicyInput {
618
- /**
619
- * @internal
620
- */
621
- const filterSensitiveLog: (obj: PutCorsPolicyInput) => any;
622
- }
623
419
  export interface PutCorsPolicyOutput {
624
420
  }
625
- export declare namespace PutCorsPolicyOutput {
626
- /**
627
- * @internal
628
- */
629
- const filterSensitiveLog: (obj: PutCorsPolicyOutput) => any;
630
- }
631
421
  export interface PutLifecyclePolicyInput {
632
422
  /**
633
423
  * <p>The name of the container that you want to assign the object lifecycle policy to.</p>
@@ -638,20 +428,8 @@ export interface PutLifecyclePolicyInput {
638
428
  */
639
429
  LifecyclePolicy: string | undefined;
640
430
  }
641
- export declare namespace PutLifecyclePolicyInput {
642
- /**
643
- * @internal
644
- */
645
- const filterSensitiveLog: (obj: PutLifecyclePolicyInput) => any;
646
- }
647
431
  export interface PutLifecyclePolicyOutput {
648
432
  }
649
- export declare namespace PutLifecyclePolicyOutput {
650
- /**
651
- * @internal
652
- */
653
- const filterSensitiveLog: (obj: PutLifecyclePolicyOutput) => any;
654
- }
655
433
  export interface PutMetricPolicyInput {
656
434
  /**
657
435
  * <p>The name of the container that you want to add the metric policy to.</p>
@@ -670,60 +448,24 @@ export interface PutMetricPolicyInput {
670
448
  */
671
449
  MetricPolicy: MetricPolicy | undefined;
672
450
  }
673
- export declare namespace PutMetricPolicyInput {
674
- /**
675
- * @internal
676
- */
677
- const filterSensitiveLog: (obj: PutMetricPolicyInput) => any;
678
- }
679
451
  export interface PutMetricPolicyOutput {
680
452
  }
681
- export declare namespace PutMetricPolicyOutput {
682
- /**
683
- * @internal
684
- */
685
- const filterSensitiveLog: (obj: PutMetricPolicyOutput) => any;
686
- }
687
453
  export interface StartAccessLoggingInput {
688
454
  /**
689
455
  * <p>The name of the container that you want to start access logging on.</p>
690
456
  */
691
457
  ContainerName: string | undefined;
692
458
  }
693
- export declare namespace StartAccessLoggingInput {
694
- /**
695
- * @internal
696
- */
697
- const filterSensitiveLog: (obj: StartAccessLoggingInput) => any;
698
- }
699
459
  export interface StartAccessLoggingOutput {
700
460
  }
701
- export declare namespace StartAccessLoggingOutput {
702
- /**
703
- * @internal
704
- */
705
- const filterSensitiveLog: (obj: StartAccessLoggingOutput) => any;
706
- }
707
461
  export interface StopAccessLoggingInput {
708
462
  /**
709
463
  * <p>The name of the container that you want to stop access logging on.</p>
710
464
  */
711
465
  ContainerName: string | undefined;
712
466
  }
713
- export declare namespace StopAccessLoggingInput {
714
- /**
715
- * @internal
716
- */
717
- const filterSensitiveLog: (obj: StopAccessLoggingInput) => any;
718
- }
719
467
  export interface StopAccessLoggingOutput {
720
468
  }
721
- export declare namespace StopAccessLoggingOutput {
722
- /**
723
- * @internal
724
- */
725
- const filterSensitiveLog: (obj: StopAccessLoggingOutput) => any;
726
- }
727
469
  export interface TagResourceInput {
728
470
  /**
729
471
  * <p>The Amazon Resource Name (ARN) for the container. </p>
@@ -737,20 +479,8 @@ export interface TagResourceInput {
737
479
  */
738
480
  Tags: Tag[] | undefined;
739
481
  }
740
- export declare namespace TagResourceInput {
741
- /**
742
- * @internal
743
- */
744
- const filterSensitiveLog: (obj: TagResourceInput) => any;
745
- }
746
482
  export interface TagResourceOutput {
747
483
  }
748
- export declare namespace TagResourceOutput {
749
- /**
750
- * @internal
751
- */
752
- const filterSensitiveLog: (obj: TagResourceOutput) => any;
753
- }
754
484
  export interface UntagResourceInput {
755
485
  /**
756
486
  * <p>The Amazon Resource Name (ARN) for the container.</p>
@@ -763,17 +493,193 @@ export interface UntagResourceInput {
763
493
  */
764
494
  TagKeys: string[] | undefined;
765
495
  }
766
- export declare namespace UntagResourceInput {
767
- /**
768
- * @internal
769
- */
770
- const filterSensitiveLog: (obj: UntagResourceInput) => any;
771
- }
772
496
  export interface UntagResourceOutput {
773
497
  }
774
- export declare namespace UntagResourceOutput {
775
- /**
776
- * @internal
777
- */
778
- const filterSensitiveLog: (obj: UntagResourceOutput) => any;
779
- }
498
+ /**
499
+ * @internal
500
+ */
501
+ export declare const ContainerFilterSensitiveLog: (obj: Container) => any;
502
+ /**
503
+ * @internal
504
+ */
505
+ export declare const CorsRuleFilterSensitiveLog: (obj: CorsRule) => any;
506
+ /**
507
+ * @internal
508
+ */
509
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
510
+ /**
511
+ * @internal
512
+ */
513
+ export declare const CreateContainerInputFilterSensitiveLog: (obj: CreateContainerInput) => any;
514
+ /**
515
+ * @internal
516
+ */
517
+ export declare const CreateContainerOutputFilterSensitiveLog: (obj: CreateContainerOutput) => any;
518
+ /**
519
+ * @internal
520
+ */
521
+ export declare const DeleteContainerInputFilterSensitiveLog: (obj: DeleteContainerInput) => any;
522
+ /**
523
+ * @internal
524
+ */
525
+ export declare const DeleteContainerOutputFilterSensitiveLog: (obj: DeleteContainerOutput) => any;
526
+ /**
527
+ * @internal
528
+ */
529
+ export declare const DeleteContainerPolicyInputFilterSensitiveLog: (obj: DeleteContainerPolicyInput) => any;
530
+ /**
531
+ * @internal
532
+ */
533
+ export declare const DeleteContainerPolicyOutputFilterSensitiveLog: (obj: DeleteContainerPolicyOutput) => any;
534
+ /**
535
+ * @internal
536
+ */
537
+ export declare const DeleteCorsPolicyInputFilterSensitiveLog: (obj: DeleteCorsPolicyInput) => any;
538
+ /**
539
+ * @internal
540
+ */
541
+ export declare const DeleteCorsPolicyOutputFilterSensitiveLog: (obj: DeleteCorsPolicyOutput) => any;
542
+ /**
543
+ * @internal
544
+ */
545
+ export declare const DeleteLifecyclePolicyInputFilterSensitiveLog: (obj: DeleteLifecyclePolicyInput) => any;
546
+ /**
547
+ * @internal
548
+ */
549
+ export declare const DeleteLifecyclePolicyOutputFilterSensitiveLog: (obj: DeleteLifecyclePolicyOutput) => any;
550
+ /**
551
+ * @internal
552
+ */
553
+ export declare const DeleteMetricPolicyInputFilterSensitiveLog: (obj: DeleteMetricPolicyInput) => any;
554
+ /**
555
+ * @internal
556
+ */
557
+ export declare const DeleteMetricPolicyOutputFilterSensitiveLog: (obj: DeleteMetricPolicyOutput) => any;
558
+ /**
559
+ * @internal
560
+ */
561
+ export declare const DescribeContainerInputFilterSensitiveLog: (obj: DescribeContainerInput) => any;
562
+ /**
563
+ * @internal
564
+ */
565
+ export declare const DescribeContainerOutputFilterSensitiveLog: (obj: DescribeContainerOutput) => any;
566
+ /**
567
+ * @internal
568
+ */
569
+ export declare const GetContainerPolicyInputFilterSensitiveLog: (obj: GetContainerPolicyInput) => any;
570
+ /**
571
+ * @internal
572
+ */
573
+ export declare const GetContainerPolicyOutputFilterSensitiveLog: (obj: GetContainerPolicyOutput) => any;
574
+ /**
575
+ * @internal
576
+ */
577
+ export declare const GetCorsPolicyInputFilterSensitiveLog: (obj: GetCorsPolicyInput) => any;
578
+ /**
579
+ * @internal
580
+ */
581
+ export declare const GetCorsPolicyOutputFilterSensitiveLog: (obj: GetCorsPolicyOutput) => any;
582
+ /**
583
+ * @internal
584
+ */
585
+ export declare const GetLifecyclePolicyInputFilterSensitiveLog: (obj: GetLifecyclePolicyInput) => any;
586
+ /**
587
+ * @internal
588
+ */
589
+ export declare const GetLifecyclePolicyOutputFilterSensitiveLog: (obj: GetLifecyclePolicyOutput) => any;
590
+ /**
591
+ * @internal
592
+ */
593
+ export declare const GetMetricPolicyInputFilterSensitiveLog: (obj: GetMetricPolicyInput) => any;
594
+ /**
595
+ * @internal
596
+ */
597
+ export declare const MetricPolicyRuleFilterSensitiveLog: (obj: MetricPolicyRule) => any;
598
+ /**
599
+ * @internal
600
+ */
601
+ export declare const MetricPolicyFilterSensitiveLog: (obj: MetricPolicy) => any;
602
+ /**
603
+ * @internal
604
+ */
605
+ export declare const GetMetricPolicyOutputFilterSensitiveLog: (obj: GetMetricPolicyOutput) => any;
606
+ /**
607
+ * @internal
608
+ */
609
+ export declare const ListContainersInputFilterSensitiveLog: (obj: ListContainersInput) => any;
610
+ /**
611
+ * @internal
612
+ */
613
+ export declare const ListContainersOutputFilterSensitiveLog: (obj: ListContainersOutput) => any;
614
+ /**
615
+ * @internal
616
+ */
617
+ export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
618
+ /**
619
+ * @internal
620
+ */
621
+ export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
622
+ /**
623
+ * @internal
624
+ */
625
+ export declare const PutContainerPolicyInputFilterSensitiveLog: (obj: PutContainerPolicyInput) => any;
626
+ /**
627
+ * @internal
628
+ */
629
+ export declare const PutContainerPolicyOutputFilterSensitiveLog: (obj: PutContainerPolicyOutput) => any;
630
+ /**
631
+ * @internal
632
+ */
633
+ export declare const PutCorsPolicyInputFilterSensitiveLog: (obj: PutCorsPolicyInput) => any;
634
+ /**
635
+ * @internal
636
+ */
637
+ export declare const PutCorsPolicyOutputFilterSensitiveLog: (obj: PutCorsPolicyOutput) => any;
638
+ /**
639
+ * @internal
640
+ */
641
+ export declare const PutLifecyclePolicyInputFilterSensitiveLog: (obj: PutLifecyclePolicyInput) => any;
642
+ /**
643
+ * @internal
644
+ */
645
+ export declare const PutLifecyclePolicyOutputFilterSensitiveLog: (obj: PutLifecyclePolicyOutput) => any;
646
+ /**
647
+ * @internal
648
+ */
649
+ export declare const PutMetricPolicyInputFilterSensitiveLog: (obj: PutMetricPolicyInput) => any;
650
+ /**
651
+ * @internal
652
+ */
653
+ export declare const PutMetricPolicyOutputFilterSensitiveLog: (obj: PutMetricPolicyOutput) => any;
654
+ /**
655
+ * @internal
656
+ */
657
+ export declare const StartAccessLoggingInputFilterSensitiveLog: (obj: StartAccessLoggingInput) => any;
658
+ /**
659
+ * @internal
660
+ */
661
+ export declare const StartAccessLoggingOutputFilterSensitiveLog: (obj: StartAccessLoggingOutput) => any;
662
+ /**
663
+ * @internal
664
+ */
665
+ export declare const StopAccessLoggingInputFilterSensitiveLog: (obj: StopAccessLoggingInput) => any;
666
+ /**
667
+ * @internal
668
+ */
669
+ export declare const StopAccessLoggingOutputFilterSensitiveLog: (obj: StopAccessLoggingOutput) => any;
670
+ /**
671
+ * @internal
672
+ */
673
+ export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
674
+ /**
675
+ * @internal
676
+ */
677
+ export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
678
+ /**
679
+ * @internal
680
+ */
681
+ export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
682
+ /**
683
+ * @internal
684
+ */
685
+ export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
@@ -26,10 +26,6 @@ export interface Container {
26
26
 
27
27
  AccessLoggingEnabled?: boolean;
28
28
  }
29
- export declare namespace Container {
30
-
31
- const filterSensitiveLog: (obj: Container) => any;
32
- }
33
29
 
34
30
  export declare class ContainerInUseException extends __BaseException {
35
31
  readonly name: "ContainerInUseException";