@aws-sdk/client-mediapackage-vod 3.50.0 → 3.53.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 (48) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/MediaPackageVodServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +87 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +208 -725
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/MediaPackageVodServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +80 -1
  9. package/dist-es/protocols/Aws_restJson1.js +405 -779
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/MediaPackageVodServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +44 -19
  13. package/dist-types/ts3.4/MediaPackageVod.d.ts +90 -0
  14. package/dist-types/ts3.4/MediaPackageVodClient.d.ts +90 -0
  15. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreatePackagingConfigurationCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreatePackagingGroupCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeletePackagingConfigurationCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DeletePackagingGroupCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DescribeAssetCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DescribePackagingConfigurationCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/DescribePackagingGroupCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListPackagingConfigurationsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListPackagingGroupsCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/UpdatePackagingGroupCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/index.d.ts +17 -0
  33. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  34. package/dist-types/ts3.4/index.d.ts +6 -0
  35. package/dist-types/ts3.4/models/MediaPackageVodServiceException.d.ts +6 -0
  36. package/dist-types/ts3.4/models/index.d.ts +1 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +796 -0
  38. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  39. package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +4 -0
  40. package/dist-types/ts3.4/pagination/ListPackagingConfigurationsPaginator.d.ts +4 -0
  41. package/dist-types/ts3.4/pagination/ListPackagingGroupsPaginator.d.ts +4 -0
  42. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  48. package/package.json +33 -33
@@ -0,0 +1,796 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { MediaPackageVodServiceException as __BaseException } from "./MediaPackageVodServiceException";
3
+ export declare enum __PeriodTriggersElement {
4
+ ADS = "ADS"
5
+ }
6
+
7
+ export interface AssetShallow {
8
+
9
+ Arn?: string;
10
+
11
+ CreatedAt?: string;
12
+
13
+ Id?: string;
14
+
15
+ PackagingGroupId?: string;
16
+
17
+ ResourceId?: string;
18
+
19
+ SourceArn?: string;
20
+
21
+ SourceRoleArn?: string;
22
+
23
+ Tags?: {
24
+ [key: string]: string;
25
+ };
26
+ }
27
+ export declare namespace AssetShallow {
28
+
29
+ const filterSensitiveLog: (obj: AssetShallow) => any;
30
+ }
31
+ export declare enum ManifestLayout {
32
+ COMPACT = "COMPACT",
33
+ FULL = "FULL"
34
+ }
35
+ export declare enum Profile {
36
+ HBBTV_1_5 = "HBBTV_1_5",
37
+ NONE = "NONE"
38
+ }
39
+ export declare enum StreamOrder {
40
+ ORIGINAL = "ORIGINAL",
41
+ VIDEO_BITRATE_ASCENDING = "VIDEO_BITRATE_ASCENDING",
42
+ VIDEO_BITRATE_DESCENDING = "VIDEO_BITRATE_DESCENDING"
43
+ }
44
+
45
+ export interface StreamSelection {
46
+
47
+ MaxVideoBitsPerSecond?: number;
48
+
49
+ MinVideoBitsPerSecond?: number;
50
+
51
+ StreamOrder?: StreamOrder | string;
52
+ }
53
+ export declare namespace StreamSelection {
54
+
55
+ const filterSensitiveLog: (obj: StreamSelection) => any;
56
+ }
57
+
58
+ export interface DashManifest {
59
+
60
+ ManifestLayout?: ManifestLayout | string;
61
+
62
+ ManifestName?: string;
63
+
64
+ MinBufferTimeSeconds?: number;
65
+
66
+ Profile?: Profile | string;
67
+
68
+ StreamSelection?: StreamSelection;
69
+ }
70
+ export declare namespace DashManifest {
71
+
72
+ const filterSensitiveLog: (obj: DashManifest) => any;
73
+ }
74
+
75
+ export interface EgressEndpoint {
76
+
77
+ PackagingConfigurationId?: string;
78
+
79
+ Status?: string;
80
+
81
+ Url?: string;
82
+ }
83
+ export declare namespace EgressEndpoint {
84
+
85
+ const filterSensitiveLog: (obj: EgressEndpoint) => any;
86
+ }
87
+ export declare enum AdMarkers {
88
+ NONE = "NONE",
89
+ PASSTHROUGH = "PASSTHROUGH",
90
+ SCTE35_ENHANCED = "SCTE35_ENHANCED"
91
+ }
92
+
93
+ export interface HlsManifest {
94
+
95
+ AdMarkers?: AdMarkers | string;
96
+
97
+ IncludeIframeOnlyStream?: boolean;
98
+
99
+ ManifestName?: string;
100
+
101
+ ProgramDateTimeIntervalSeconds?: number;
102
+
103
+ RepeatExtXKey?: boolean;
104
+
105
+ StreamSelection?: StreamSelection;
106
+ }
107
+ export declare namespace HlsManifest {
108
+
109
+ const filterSensitiveLog: (obj: HlsManifest) => any;
110
+ }
111
+
112
+ export interface MssManifest {
113
+
114
+ ManifestName?: string;
115
+
116
+ StreamSelection?: StreamSelection;
117
+ }
118
+ export declare namespace MssManifest {
119
+
120
+ const filterSensitiveLog: (obj: MssManifest) => any;
121
+ }
122
+
123
+ export interface SpekeKeyProvider {
124
+
125
+ RoleArn: string | undefined;
126
+
127
+ SystemIds: string[] | undefined;
128
+
129
+ Url: string | undefined;
130
+ }
131
+ export declare namespace SpekeKeyProvider {
132
+
133
+ const filterSensitiveLog: (obj: SpekeKeyProvider) => any;
134
+ }
135
+
136
+ export interface CmafEncryption {
137
+
138
+ ConstantInitializationVector?: string;
139
+
140
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
141
+ }
142
+ export declare namespace CmafEncryption {
143
+
144
+ const filterSensitiveLog: (obj: CmafEncryption) => any;
145
+ }
146
+
147
+ export interface CmafPackage {
148
+
149
+ Encryption?: CmafEncryption;
150
+
151
+ HlsManifests: HlsManifest[] | undefined;
152
+
153
+ IncludeEncoderConfigurationInSegments?: boolean;
154
+
155
+ SegmentDurationSeconds?: number;
156
+ }
157
+ export declare namespace CmafPackage {
158
+
159
+ const filterSensitiveLog: (obj: CmafPackage) => any;
160
+ }
161
+
162
+ export interface DashEncryption {
163
+
164
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
165
+ }
166
+ export declare namespace DashEncryption {
167
+
168
+ const filterSensitiveLog: (obj: DashEncryption) => any;
169
+ }
170
+ export declare enum SegmentTemplateFormat {
171
+ NUMBER_WITH_DURATION = "NUMBER_WITH_DURATION",
172
+ NUMBER_WITH_TIMELINE = "NUMBER_WITH_TIMELINE",
173
+ TIME_WITH_TIMELINE = "TIME_WITH_TIMELINE"
174
+ }
175
+
176
+ export interface DashPackage {
177
+
178
+ DashManifests: DashManifest[] | undefined;
179
+
180
+ Encryption?: DashEncryption;
181
+
182
+ IncludeEncoderConfigurationInSegments?: boolean;
183
+
184
+ PeriodTriggers?: (__PeriodTriggersElement | string)[];
185
+
186
+ SegmentDurationSeconds?: number;
187
+
188
+ SegmentTemplateFormat?: SegmentTemplateFormat | string;
189
+ }
190
+ export declare namespace DashPackage {
191
+
192
+ const filterSensitiveLog: (obj: DashPackage) => any;
193
+ }
194
+ export declare enum EncryptionMethod {
195
+ AES_128 = "AES_128",
196
+ SAMPLE_AES = "SAMPLE_AES"
197
+ }
198
+
199
+ export interface HlsEncryption {
200
+
201
+ ConstantInitializationVector?: string;
202
+
203
+ EncryptionMethod?: EncryptionMethod | string;
204
+
205
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
206
+ }
207
+ export declare namespace HlsEncryption {
208
+
209
+ const filterSensitiveLog: (obj: HlsEncryption) => any;
210
+ }
211
+
212
+ export interface HlsPackage {
213
+
214
+ Encryption?: HlsEncryption;
215
+
216
+ HlsManifests: HlsManifest[] | undefined;
217
+
218
+ IncludeDvbSubtitles?: boolean;
219
+
220
+ SegmentDurationSeconds?: number;
221
+
222
+ UseAudioRenditionGroup?: boolean;
223
+ }
224
+ export declare namespace HlsPackage {
225
+
226
+ const filterSensitiveLog: (obj: HlsPackage) => any;
227
+ }
228
+
229
+ export interface MssEncryption {
230
+
231
+ SpekeKeyProvider: SpekeKeyProvider | undefined;
232
+ }
233
+ export declare namespace MssEncryption {
234
+
235
+ const filterSensitiveLog: (obj: MssEncryption) => any;
236
+ }
237
+
238
+ export interface MssPackage {
239
+
240
+ Encryption?: MssEncryption;
241
+
242
+ MssManifests: MssManifest[] | undefined;
243
+
244
+ SegmentDurationSeconds?: number;
245
+ }
246
+ export declare namespace MssPackage {
247
+
248
+ const filterSensitiveLog: (obj: MssPackage) => any;
249
+ }
250
+
251
+ export interface PackagingConfiguration {
252
+
253
+ Arn?: string;
254
+
255
+ CmafPackage?: CmafPackage;
256
+
257
+ DashPackage?: DashPackage;
258
+
259
+ HlsPackage?: HlsPackage;
260
+
261
+ Id?: string;
262
+
263
+ MssPackage?: MssPackage;
264
+
265
+ PackagingGroupId?: string;
266
+
267
+ Tags?: {
268
+ [key: string]: string;
269
+ };
270
+ }
271
+ export declare namespace PackagingConfiguration {
272
+
273
+ const filterSensitiveLog: (obj: PackagingConfiguration) => any;
274
+ }
275
+
276
+ export interface Authorization {
277
+
278
+ CdnIdentifierSecret: string | undefined;
279
+
280
+ SecretsRoleArn: string | undefined;
281
+ }
282
+ export declare namespace Authorization {
283
+
284
+ const filterSensitiveLog: (obj: Authorization) => any;
285
+ }
286
+
287
+ export interface EgressAccessLogs {
288
+
289
+ LogGroupName?: string;
290
+ }
291
+ export declare namespace EgressAccessLogs {
292
+
293
+ const filterSensitiveLog: (obj: EgressAccessLogs) => any;
294
+ }
295
+
296
+ export interface PackagingGroup {
297
+
298
+ Arn?: string;
299
+
300
+ Authorization?: Authorization;
301
+
302
+ DomainName?: string;
303
+
304
+ EgressAccessLogs?: EgressAccessLogs;
305
+
306
+ Id?: string;
307
+
308
+ Tags?: {
309
+ [key: string]: string;
310
+ };
311
+ }
312
+ export declare namespace PackagingGroup {
313
+
314
+ const filterSensitiveLog: (obj: PackagingGroup) => any;
315
+ }
316
+
317
+ export interface ConfigureLogsRequest {
318
+
319
+ EgressAccessLogs?: EgressAccessLogs;
320
+
321
+ Id: string | undefined;
322
+ }
323
+ export declare namespace ConfigureLogsRequest {
324
+
325
+ const filterSensitiveLog: (obj: ConfigureLogsRequest) => any;
326
+ }
327
+ export interface ConfigureLogsResponse {
328
+
329
+ Arn?: string;
330
+
331
+ Authorization?: Authorization;
332
+
333
+ DomainName?: string;
334
+
335
+ EgressAccessLogs?: EgressAccessLogs;
336
+
337
+ Id?: string;
338
+
339
+ Tags?: {
340
+ [key: string]: string;
341
+ };
342
+ }
343
+ export declare namespace ConfigureLogsResponse {
344
+
345
+ const filterSensitiveLog: (obj: ConfigureLogsResponse) => any;
346
+ }
347
+
348
+ export declare class ForbiddenException extends __BaseException {
349
+ readonly name: "ForbiddenException";
350
+ readonly $fault: "client";
351
+ Message?: string;
352
+
353
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
354
+ }
355
+
356
+ export declare class InternalServerErrorException extends __BaseException {
357
+ readonly name: "InternalServerErrorException";
358
+ readonly $fault: "server";
359
+ Message?: string;
360
+
361
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
362
+ }
363
+
364
+ export declare class NotFoundException extends __BaseException {
365
+ readonly name: "NotFoundException";
366
+ readonly $fault: "client";
367
+ Message?: string;
368
+
369
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
370
+ }
371
+
372
+ export declare class ServiceUnavailableException extends __BaseException {
373
+ readonly name: "ServiceUnavailableException";
374
+ readonly $fault: "server";
375
+ Message?: string;
376
+
377
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
378
+ }
379
+
380
+ export declare class TooManyRequestsException extends __BaseException {
381
+ readonly name: "TooManyRequestsException";
382
+ readonly $fault: "client";
383
+ Message?: string;
384
+
385
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
386
+ }
387
+
388
+ export declare class UnprocessableEntityException extends __BaseException {
389
+ readonly name: "UnprocessableEntityException";
390
+ readonly $fault: "client";
391
+ Message?: string;
392
+
393
+ constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
394
+ }
395
+
396
+ export interface CreateAssetRequest {
397
+
398
+ Id: string | undefined;
399
+
400
+ PackagingGroupId: string | undefined;
401
+
402
+ ResourceId?: string;
403
+
404
+ SourceArn: string | undefined;
405
+
406
+ SourceRoleArn: string | undefined;
407
+
408
+ Tags?: {
409
+ [key: string]: string;
410
+ };
411
+ }
412
+ export declare namespace CreateAssetRequest {
413
+
414
+ const filterSensitiveLog: (obj: CreateAssetRequest) => any;
415
+ }
416
+ export interface CreateAssetResponse {
417
+
418
+ Arn?: string;
419
+
420
+ CreatedAt?: string;
421
+
422
+ EgressEndpoints?: EgressEndpoint[];
423
+
424
+ Id?: string;
425
+
426
+ PackagingGroupId?: string;
427
+
428
+ ResourceId?: string;
429
+
430
+ SourceArn?: string;
431
+
432
+ SourceRoleArn?: string;
433
+
434
+ Tags?: {
435
+ [key: string]: string;
436
+ };
437
+ }
438
+ export declare namespace CreateAssetResponse {
439
+
440
+ const filterSensitiveLog: (obj: CreateAssetResponse) => any;
441
+ }
442
+
443
+ export interface CreatePackagingConfigurationRequest {
444
+
445
+ CmafPackage?: CmafPackage;
446
+
447
+ DashPackage?: DashPackage;
448
+
449
+ HlsPackage?: HlsPackage;
450
+
451
+ Id: string | undefined;
452
+
453
+ MssPackage?: MssPackage;
454
+
455
+ PackagingGroupId: string | undefined;
456
+
457
+ Tags?: {
458
+ [key: string]: string;
459
+ };
460
+ }
461
+ export declare namespace CreatePackagingConfigurationRequest {
462
+
463
+ const filterSensitiveLog: (obj: CreatePackagingConfigurationRequest) => any;
464
+ }
465
+ export interface CreatePackagingConfigurationResponse {
466
+
467
+ Arn?: string;
468
+
469
+ CmafPackage?: CmafPackage;
470
+
471
+ DashPackage?: DashPackage;
472
+
473
+ HlsPackage?: HlsPackage;
474
+
475
+ Id?: string;
476
+
477
+ MssPackage?: MssPackage;
478
+
479
+ PackagingGroupId?: string;
480
+
481
+ Tags?: {
482
+ [key: string]: string;
483
+ };
484
+ }
485
+ export declare namespace CreatePackagingConfigurationResponse {
486
+
487
+ const filterSensitiveLog: (obj: CreatePackagingConfigurationResponse) => any;
488
+ }
489
+
490
+ export interface CreatePackagingGroupRequest {
491
+
492
+ Authorization?: Authorization;
493
+
494
+ EgressAccessLogs?: EgressAccessLogs;
495
+
496
+ Id: string | undefined;
497
+
498
+ Tags?: {
499
+ [key: string]: string;
500
+ };
501
+ }
502
+ export declare namespace CreatePackagingGroupRequest {
503
+
504
+ const filterSensitiveLog: (obj: CreatePackagingGroupRequest) => any;
505
+ }
506
+ export interface CreatePackagingGroupResponse {
507
+
508
+ Arn?: string;
509
+
510
+ Authorization?: Authorization;
511
+
512
+ DomainName?: string;
513
+
514
+ EgressAccessLogs?: EgressAccessLogs;
515
+
516
+ Id?: string;
517
+
518
+ Tags?: {
519
+ [key: string]: string;
520
+ };
521
+ }
522
+ export declare namespace CreatePackagingGroupResponse {
523
+
524
+ const filterSensitiveLog: (obj: CreatePackagingGroupResponse) => any;
525
+ }
526
+ export interface DeleteAssetRequest {
527
+
528
+ Id: string | undefined;
529
+ }
530
+ export declare namespace DeleteAssetRequest {
531
+
532
+ const filterSensitiveLog: (obj: DeleteAssetRequest) => any;
533
+ }
534
+ export interface DeleteAssetResponse {
535
+ }
536
+ export declare namespace DeleteAssetResponse {
537
+
538
+ const filterSensitiveLog: (obj: DeleteAssetResponse) => any;
539
+ }
540
+ export interface DeletePackagingConfigurationRequest {
541
+
542
+ Id: string | undefined;
543
+ }
544
+ export declare namespace DeletePackagingConfigurationRequest {
545
+
546
+ const filterSensitiveLog: (obj: DeletePackagingConfigurationRequest) => any;
547
+ }
548
+ export interface DeletePackagingConfigurationResponse {
549
+ }
550
+ export declare namespace DeletePackagingConfigurationResponse {
551
+
552
+ const filterSensitiveLog: (obj: DeletePackagingConfigurationResponse) => any;
553
+ }
554
+ export interface DeletePackagingGroupRequest {
555
+
556
+ Id: string | undefined;
557
+ }
558
+ export declare namespace DeletePackagingGroupRequest {
559
+
560
+ const filterSensitiveLog: (obj: DeletePackagingGroupRequest) => any;
561
+ }
562
+ export interface DeletePackagingGroupResponse {
563
+ }
564
+ export declare namespace DeletePackagingGroupResponse {
565
+
566
+ const filterSensitiveLog: (obj: DeletePackagingGroupResponse) => any;
567
+ }
568
+ export interface DescribeAssetRequest {
569
+
570
+ Id: string | undefined;
571
+ }
572
+ export declare namespace DescribeAssetRequest {
573
+
574
+ const filterSensitiveLog: (obj: DescribeAssetRequest) => any;
575
+ }
576
+ export interface DescribeAssetResponse {
577
+
578
+ Arn?: string;
579
+
580
+ CreatedAt?: string;
581
+
582
+ EgressEndpoints?: EgressEndpoint[];
583
+
584
+ Id?: string;
585
+
586
+ PackagingGroupId?: string;
587
+
588
+ ResourceId?: string;
589
+
590
+ SourceArn?: string;
591
+
592
+ SourceRoleArn?: string;
593
+
594
+ Tags?: {
595
+ [key: string]: string;
596
+ };
597
+ }
598
+ export declare namespace DescribeAssetResponse {
599
+
600
+ const filterSensitiveLog: (obj: DescribeAssetResponse) => any;
601
+ }
602
+ export interface DescribePackagingConfigurationRequest {
603
+
604
+ Id: string | undefined;
605
+ }
606
+ export declare namespace DescribePackagingConfigurationRequest {
607
+
608
+ const filterSensitiveLog: (obj: DescribePackagingConfigurationRequest) => any;
609
+ }
610
+ export interface DescribePackagingConfigurationResponse {
611
+
612
+ Arn?: string;
613
+
614
+ CmafPackage?: CmafPackage;
615
+
616
+ DashPackage?: DashPackage;
617
+
618
+ HlsPackage?: HlsPackage;
619
+
620
+ Id?: string;
621
+
622
+ MssPackage?: MssPackage;
623
+
624
+ PackagingGroupId?: string;
625
+
626
+ Tags?: {
627
+ [key: string]: string;
628
+ };
629
+ }
630
+ export declare namespace DescribePackagingConfigurationResponse {
631
+
632
+ const filterSensitiveLog: (obj: DescribePackagingConfigurationResponse) => any;
633
+ }
634
+ export interface DescribePackagingGroupRequest {
635
+
636
+ Id: string | undefined;
637
+ }
638
+ export declare namespace DescribePackagingGroupRequest {
639
+
640
+ const filterSensitiveLog: (obj: DescribePackagingGroupRequest) => any;
641
+ }
642
+ export interface DescribePackagingGroupResponse {
643
+
644
+ Arn?: string;
645
+
646
+ Authorization?: Authorization;
647
+
648
+ DomainName?: string;
649
+
650
+ EgressAccessLogs?: EgressAccessLogs;
651
+
652
+ Id?: string;
653
+
654
+ Tags?: {
655
+ [key: string]: string;
656
+ };
657
+ }
658
+ export declare namespace DescribePackagingGroupResponse {
659
+
660
+ const filterSensitiveLog: (obj: DescribePackagingGroupResponse) => any;
661
+ }
662
+ export interface ListAssetsRequest {
663
+
664
+ MaxResults?: number;
665
+
666
+ NextToken?: string;
667
+
668
+ PackagingGroupId?: string;
669
+ }
670
+ export declare namespace ListAssetsRequest {
671
+
672
+ const filterSensitiveLog: (obj: ListAssetsRequest) => any;
673
+ }
674
+ export interface ListAssetsResponse {
675
+
676
+ Assets?: AssetShallow[];
677
+
678
+ NextToken?: string;
679
+ }
680
+ export declare namespace ListAssetsResponse {
681
+
682
+ const filterSensitiveLog: (obj: ListAssetsResponse) => any;
683
+ }
684
+ export interface ListPackagingConfigurationsRequest {
685
+
686
+ MaxResults?: number;
687
+
688
+ NextToken?: string;
689
+
690
+ PackagingGroupId?: string;
691
+ }
692
+ export declare namespace ListPackagingConfigurationsRequest {
693
+
694
+ const filterSensitiveLog: (obj: ListPackagingConfigurationsRequest) => any;
695
+ }
696
+ export interface ListPackagingConfigurationsResponse {
697
+
698
+ NextToken?: string;
699
+
700
+ PackagingConfigurations?: PackagingConfiguration[];
701
+ }
702
+ export declare namespace ListPackagingConfigurationsResponse {
703
+
704
+ const filterSensitiveLog: (obj: ListPackagingConfigurationsResponse) => any;
705
+ }
706
+ export interface ListPackagingGroupsRequest {
707
+
708
+ MaxResults?: number;
709
+
710
+ NextToken?: string;
711
+ }
712
+ export declare namespace ListPackagingGroupsRequest {
713
+
714
+ const filterSensitiveLog: (obj: ListPackagingGroupsRequest) => any;
715
+ }
716
+ export interface ListPackagingGroupsResponse {
717
+
718
+ NextToken?: string;
719
+
720
+ PackagingGroups?: PackagingGroup[];
721
+ }
722
+ export declare namespace ListPackagingGroupsResponse {
723
+
724
+ const filterSensitiveLog: (obj: ListPackagingGroupsResponse) => any;
725
+ }
726
+ export interface ListTagsForResourceRequest {
727
+
728
+ ResourceArn: string | undefined;
729
+ }
730
+ export declare namespace ListTagsForResourceRequest {
731
+
732
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
733
+ }
734
+ export interface ListTagsForResourceResponse {
735
+
736
+ Tags?: {
737
+ [key: string]: string;
738
+ };
739
+ }
740
+ export declare namespace ListTagsForResourceResponse {
741
+
742
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
743
+ }
744
+ export interface TagResourceRequest {
745
+
746
+ ResourceArn: string | undefined;
747
+
748
+ Tags: {
749
+ [key: string]: string;
750
+ } | undefined;
751
+ }
752
+ export declare namespace TagResourceRequest {
753
+
754
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
755
+ }
756
+ export interface UntagResourceRequest {
757
+
758
+ ResourceArn: string | undefined;
759
+
760
+ TagKeys: string[] | undefined;
761
+ }
762
+ export declare namespace UntagResourceRequest {
763
+
764
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
765
+ }
766
+
767
+ export interface UpdatePackagingGroupRequest {
768
+
769
+ Authorization?: Authorization;
770
+
771
+ Id: string | undefined;
772
+ }
773
+ export declare namespace UpdatePackagingGroupRequest {
774
+
775
+ const filterSensitiveLog: (obj: UpdatePackagingGroupRequest) => any;
776
+ }
777
+ export interface UpdatePackagingGroupResponse {
778
+
779
+ Arn?: string;
780
+
781
+ Authorization?: Authorization;
782
+
783
+ DomainName?: string;
784
+
785
+ EgressAccessLogs?: EgressAccessLogs;
786
+
787
+ Id?: string;
788
+
789
+ Tags?: {
790
+ [key: string]: string;
791
+ };
792
+ }
793
+ export declare namespace UpdatePackagingGroupResponse {
794
+
795
+ const filterSensitiveLog: (obj: UpdatePackagingGroupResponse) => any;
796
+ }