distilled-aws 0.0.13 → 0.0.15

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 (59) hide show
  1. package/lib/client/api.d.ts.map +1 -1
  2. package/lib/client/api.js +14 -3
  3. package/lib/client/api.js.map +1 -1
  4. package/lib/client/response-parser.d.ts.map +1 -1
  5. package/lib/client/response-parser.js +14 -2
  6. package/lib/client/response-parser.js.map +1 -1
  7. package/lib/debug/error-recorder.d.ts +22 -0
  8. package/lib/debug/error-recorder.d.ts.map +1 -0
  9. package/lib/debug/error-recorder.js +106 -0
  10. package/lib/debug/error-recorder.js.map +1 -0
  11. package/lib/patch/spec-schema.d.ts +65 -0
  12. package/lib/patch/spec-schema.d.ts.map +1 -1
  13. package/lib/patch/spec-schema.js +31 -0
  14. package/lib/patch/spec-schema.js.map +1 -1
  15. package/lib/services/bedrock-agentcore-control.d.ts +3 -0
  16. package/lib/services/bedrock-agentcore-control.d.ts.map +1 -1
  17. package/lib/services/bedrock-agentcore-control.js +5 -1
  18. package/lib/services/bedrock-agentcore-control.js.map +1 -1
  19. package/lib/services/cloudfront.d.ts +83 -83
  20. package/lib/services/cloudfront.d.ts.map +1 -1
  21. package/lib/services/cloudfront.js +160 -157
  22. package/lib/services/cloudfront.js.map +1 -1
  23. package/lib/services/ec2.d.ts +1530 -920
  24. package/lib/services/ec2.d.ts.map +1 -1
  25. package/lib/services/ec2.js +1313 -622
  26. package/lib/services/ec2.js.map +1 -1
  27. package/lib/services/glue.d.ts +587 -478
  28. package/lib/services/glue.d.ts.map +1 -1
  29. package/lib/services/glue.js +1644 -1509
  30. package/lib/services/glue.js.map +1 -1
  31. package/lib/services/iam.d.ts +6 -1
  32. package/lib/services/iam.d.ts.map +1 -1
  33. package/lib/services/iam.js +3 -1
  34. package/lib/services/iam.js.map +1 -1
  35. package/lib/services/medialive.d.ts +33 -0
  36. package/lib/services/medialive.d.ts.map +1 -1
  37. package/lib/services/medialive.js +11 -0
  38. package/lib/services/medialive.js.map +1 -1
  39. package/lib/services/s3.d.ts +74 -59
  40. package/lib/services/s3.d.ts.map +1 -1
  41. package/lib/services/s3.js +76 -53
  42. package/lib/services/s3.js.map +1 -1
  43. package/lib/services/sqs.d.ts +1 -1
  44. package/lib/services/sqs.d.ts.map +1 -1
  45. package/lib/services/sqs.js +1 -0
  46. package/lib/services/sqs.js.map +1 -1
  47. package/package.json +6 -4
  48. package/src/client/api.ts +22 -2
  49. package/src/client/response-parser.ts +15 -2
  50. package/src/debug/error-recorder.ts +143 -0
  51. package/src/patch/spec-schema.ts +35 -0
  52. package/src/services/bedrock-agentcore-control.ts +7 -1
  53. package/src/services/cloudfront.ts +300 -294
  54. package/src/services/ec2.ts +2868 -1482
  55. package/src/services/glue.ts +3550 -3250
  56. package/src/services/iam.ts +9 -2
  57. package/src/services/medialive.ts +53 -0
  58. package/src/services/s3.ts +159 -108
  59. package/src/services/sqs.ts +2 -0
@@ -722,6 +722,8 @@ export interface MediaPackageOutputDestinationSettings {
722
722
  ChannelId?: string;
723
723
  ChannelGroup?: string;
724
724
  ChannelName?: string;
725
+ ChannelEndpointId?: string;
726
+ MediaPackageRegionName?: string;
725
727
  }
726
728
  export declare const MediaPackageOutputDestinationSettings: S.Schema<MediaPackageOutputDestinationSettings, MediaPackageOutputDestinationSettings, never>;
727
729
  export type __listOfMediaPackageOutputDestinationSettings = MediaPackageOutputDestinationSettings[];
@@ -2159,6 +2161,12 @@ export type CmafTimedMetadataId3Frame = "NONE" | "PRIV" | "TDRL" | (string & {})
2159
2161
  export declare const CmafTimedMetadataId3Frame: typeof S.String;
2160
2162
  export type CmafTimedMetadataPassthrough = "DISABLED" | "ENABLED" | (string & {});
2161
2163
  export declare const CmafTimedMetadataPassthrough: typeof S.String;
2164
+ export interface MediaPackageAdditionalDestinations {
2165
+ Destination?: OutputLocationRef;
2166
+ }
2167
+ export declare const MediaPackageAdditionalDestinations: S.Schema<MediaPackageAdditionalDestinations, MediaPackageAdditionalDestinations, never>;
2168
+ export type __listOfMediaPackageAdditionalDestinations = MediaPackageAdditionalDestinations[];
2169
+ export declare const __listOfMediaPackageAdditionalDestinations: S.Array$<S.Schema<MediaPackageAdditionalDestinations, MediaPackageAdditionalDestinations, never>>;
2162
2170
  export interface MediaPackageV2GroupSettings {
2163
2171
  CaptionLanguageMappings?: CaptionLanguageMapping[];
2164
2172
  Id3Behavior?: CmafId3Behavior;
@@ -2170,6 +2178,7 @@ export interface MediaPackageV2GroupSettings {
2170
2178
  TimedMetadataId3Frame?: CmafTimedMetadataId3Frame;
2171
2179
  TimedMetadataId3Period?: number;
2172
2180
  TimedMetadataPassthrough?: CmafTimedMetadataPassthrough;
2181
+ AdditionalDestinations?: MediaPackageAdditionalDestinations[];
2173
2182
  }
2174
2183
  export declare const MediaPackageV2GroupSettings: S.Schema<MediaPackageV2GroupSettings, MediaPackageV2GroupSettings, never>;
2175
2184
  export interface MediaPackageGroupSettings {
@@ -3367,6 +3376,9 @@ export interface DescribeChannelResponse {
3367
3376
  LanguageCode: __stringMin3Max3;
3368
3377
  LanguageDescription: __stringMin1;
3369
3378
  })[];
3379
+ AdditionalDestinations: (MediaPackageAdditionalDestinations & {
3380
+ Destination: OutputLocationRef;
3381
+ })[];
3370
3382
  };
3371
3383
  };
3372
3384
  MsSmoothGroupSettings: MsSmoothGroupSettings & {
@@ -4368,6 +4380,9 @@ export interface RestartChannelPipelinesResponse {
4368
4380
  LanguageCode: __stringMin3Max3;
4369
4381
  LanguageDescription: __stringMin1;
4370
4382
  })[];
4383
+ AdditionalDestinations: (MediaPackageAdditionalDestinations & {
4384
+ Destination: OutputLocationRef;
4385
+ })[];
4371
4386
  };
4372
4387
  };
4373
4388
  MsSmoothGroupSettings: MsSmoothGroupSettings & {
@@ -4675,6 +4690,9 @@ export interface StartChannelResponse {
4675
4690
  LanguageCode: __stringMin3Max3;
4676
4691
  LanguageDescription: __stringMin1;
4677
4692
  })[];
4693
+ AdditionalDestinations: (MediaPackageAdditionalDestinations & {
4694
+ Destination: OutputLocationRef;
4695
+ })[];
4678
4696
  };
4679
4697
  };
4680
4698
  MsSmoothGroupSettings: MsSmoothGroupSettings & {
@@ -5137,6 +5155,9 @@ export interface StopChannelResponse {
5137
5155
  LanguageCode: __stringMin3Max3;
5138
5156
  LanguageDescription: __stringMin1;
5139
5157
  })[];
5158
+ AdditionalDestinations: (MediaPackageAdditionalDestinations & {
5159
+ Destination: OutputLocationRef;
5160
+ })[];
5140
5161
  };
5141
5162
  };
5142
5163
  MsSmoothGroupSettings: MsSmoothGroupSettings & {
@@ -6504,6 +6525,9 @@ export interface UpdateChannelResponse {
6504
6525
  LanguageCode: __stringMin3Max3;
6505
6526
  LanguageDescription: __stringMin1;
6506
6527
  })[];
6528
+ AdditionalDestinations: (MediaPackageAdditionalDestinations & {
6529
+ Destination: OutputLocationRef;
6530
+ })[];
6507
6531
  };
6508
6532
  };
6509
6533
  MsSmoothGroupSettings: MsSmoothGroupSettings & {
@@ -6791,6 +6815,9 @@ export interface UpdateChannelClassResponse {
6791
6815
  LanguageCode: __stringMin3Max3;
6792
6816
  LanguageDescription: __stringMin1;
6793
6817
  })[];
6818
+ AdditionalDestinations: (MediaPackageAdditionalDestinations & {
6819
+ Destination: OutputLocationRef;
6820
+ })[];
6794
6821
  };
6795
6822
  };
6796
6823
  MsSmoothGroupSettings: MsSmoothGroupSettings & {
@@ -7249,6 +7276,9 @@ export interface DeleteChannelResponse {
7249
7276
  LanguageCode: __stringMin3Max3;
7250
7277
  LanguageDescription: __stringMin1;
7251
7278
  })[];
7279
+ AdditionalDestinations: (MediaPackageAdditionalDestinations & {
7280
+ Destination: OutputLocationRef;
7281
+ })[];
7252
7282
  };
7253
7283
  };
7254
7284
  MsSmoothGroupSettings: MsSmoothGroupSettings & {
@@ -7821,6 +7851,9 @@ export interface CreateChannelResponse {
7821
7851
  LanguageCode: __stringMin3Max3;
7822
7852
  LanguageDescription: __stringMin1;
7823
7853
  })[];
7854
+ AdditionalDestinations: (MediaPackageAdditionalDestinations & {
7855
+ Destination: OutputLocationRef;
7856
+ })[];
7824
7857
  };
7825
7858
  };
7826
7859
  MsSmoothGroupSettings: MsSmoothGroupSettings & {