aws-sdk 2.1640.0 → 2.1642.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 (34) hide show
  1. package/README.md +1 -1
  2. package/apis/cloudhsmv2-2017-04-28.min.json +26 -19
  3. package/apis/datazone-2018-05-10.min.json +792 -403
  4. package/apis/datazone-2018-05-10.paginators.json +6 -0
  5. package/apis/glue-2017-03-31.min.json +99 -98
  6. package/apis/iotwireless-2020-11-22.min.json +4 -1
  7. package/apis/kms-2014-11-01.examples.json +29 -0
  8. package/apis/kms-2014-11-01.min.json +76 -23
  9. package/apis/macie2-2020-01-01.min.json +254 -143
  10. package/apis/macie2-2020-01-01.paginators.json +6 -0
  11. package/apis/mediaconvert-2017-08-29.min.json +57 -5
  12. package/apis/mediaconvert-2017-08-29.paginators.json +6 -0
  13. package/apis/mediapackagev2-2022-12-25.examples.json +1271 -0
  14. package/apis/mediapackagev2-2022-12-25.min.json +108 -71
  15. package/apis/route53domains-2014-05-15.min.json +7 -1
  16. package/clients/cloudhsmv2.d.ts +18 -1
  17. package/clients/datazone.d.ts +398 -4
  18. package/clients/ec2.d.ts +258 -258
  19. package/clients/glue.d.ts +6 -1
  20. package/clients/iotwireless.d.ts +1 -1
  21. package/clients/kms.d.ts +80 -14
  22. package/clients/macie2.d.ts +149 -44
  23. package/clients/mediaconvert.d.ts +46 -2
  24. package/clients/mediapackagev2.d.ts +57 -4
  25. package/dist/aws-sdk-core-react-native.js +1 -1
  26. package/dist/aws-sdk-react-native.js +22 -13
  27. package/dist/aws-sdk.js +121 -46
  28. package/dist/aws-sdk.min.js +61 -61
  29. package/lib/core.js +1 -1
  30. package/lib/credentials/cognito_identity_credentials.js +9 -0
  31. package/lib/shared-ini/ini-loader.d.ts +24 -1
  32. package/lib/shared-ini/ini-loader.js +0 -6
  33. package/package.json +1 -1
  34. package/scripts/region-checker/allowlist.js +3 -3
@@ -257,6 +257,10 @@ declare namespace MediaPackageV2 {
257
257
  * Any descriptive information that you want to add to the channel for future identification purposes.
258
258
  */
259
259
  Description?: ResourceDescription;
260
+ /**
261
+ * The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. The allowed values are: HLS - The HLS streaming specification (which defines M3U8 manifests and TS segments). CMAF - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).
262
+ */
263
+ InputType?: InputType;
260
264
  }
261
265
  export type CmafEncryptionMethod = "CENC"|"CBCS"|string;
262
266
  export type ContainerType = "TS"|"CMAF"|string;
@@ -325,6 +329,10 @@ declare namespace MediaPackageV2 {
325
329
  * A unique, case-sensitive token that you provide to ensure the idempotency of the request.
326
330
  */
327
331
  ClientToken?: IdempotencyToken;
332
+ /**
333
+ * The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. The allowed values are: HLS - The HLS streaming specification (which defines M3U8 manifests and TS segments). CMAF - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).
334
+ */
335
+ InputType?: InputType;
328
336
  /**
329
337
  * Enter any descriptive text that helps you to identify the channel.
330
338
  */
@@ -360,6 +368,10 @@ declare namespace MediaPackageV2 {
360
368
  */
361
369
  Description?: ResourceDescription;
362
370
  IngestEndpoints?: IngestEndpointList;
371
+ /**
372
+ * The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. The allowed values are: HLS - The HLS streaming specification (which defines M3U8 manifests and TS segments). CMAF - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).
373
+ */
374
+ InputType?: InputType;
363
375
  /**
364
376
  * The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.
365
377
  */
@@ -508,6 +520,10 @@ declare namespace MediaPackageV2 {
508
520
  * A DASH manifest configuration.
509
521
  */
510
522
  DashManifests?: CreateDashManifests;
523
+ /**
524
+ * The failover settings for the endpoint.
525
+ */
526
+ ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
511
527
  /**
512
528
  * A comma-separated list of tag key:value pairs that you define. For example: "Key1": "Value1", "Key2": "Value2"
513
529
  */
@@ -567,6 +583,10 @@ declare namespace MediaPackageV2 {
567
583
  * A DASH manifest configuration.
568
584
  */
569
585
  DashManifests?: GetDashManifests;
586
+ /**
587
+ * The failover settings for the endpoint.
588
+ */
589
+ ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
570
590
  /**
571
591
  * The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.
572
592
  */
@@ -697,6 +717,8 @@ declare namespace MediaPackageV2 {
697
717
  */
698
718
  CmafEncryptionMethod?: CmafEncryptionMethod;
699
719
  }
720
+ export type EndpointErrorCondition = "STALE_MANIFEST"|"INCOMPLETE_MANIFEST"|"MISSING_DRM_KEY"|"SLATE_INPUT"|string;
721
+ export type EndpointErrorConditions = EndpointErrorCondition[];
700
722
  export type EntityTag = string;
701
723
  export interface FilterConfiguration {
702
724
  /**
@@ -718,6 +740,12 @@ declare namespace MediaPackageV2 {
718
740
  }
719
741
  export type FilterConfigurationManifestFilterString = string;
720
742
  export type FilterConfigurationTimeDelaySecondsInteger = number;
743
+ export interface ForceEndpointErrorConfiguration {
744
+ /**
745
+ * The failover conditions for the endpoint. The options are: STALE_MANIFEST - The manifest stalled and there are no new segments or parts. INCOMPLETE_MANIFEST - There is a gap in the manifest. MISSING_DRM_KEY - Key rotation is enabled but we're unable to fetch the key for the current key period. SLATE_INPUT - The segments which contain slate content are considered to be missing content.
746
+ */
747
+ EndpointErrorConditions?: EndpointErrorConditions;
748
+ }
721
749
  export interface GetChannelGroupRequest {
722
750
  /**
723
751
  * The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.
@@ -818,6 +846,10 @@ declare namespace MediaPackageV2 {
818
846
  */
819
847
  Description?: ResourceDescription;
820
848
  IngestEndpoints?: IngestEndpointList;
849
+ /**
850
+ * The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. The allowed values are: HLS - The HLS streaming specification (which defines M3U8 manifests and TS segments). CMAF - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).
851
+ */
852
+ InputType?: InputType;
821
853
  /**
822
854
  * The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.
823
855
  */
@@ -1017,6 +1049,14 @@ declare namespace MediaPackageV2 {
1017
1049
  * A low-latency HLS manifest configuration.
1018
1050
  */
1019
1051
  LowLatencyHlsManifests?: GetLowLatencyHlsManifests;
1052
+ /**
1053
+ * A DASH manifest configuration.
1054
+ */
1055
+ DashManifests?: GetDashManifests;
1056
+ /**
1057
+ * The failover settings for the endpoint.
1058
+ */
1059
+ ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
1020
1060
  /**
1021
1061
  * The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.
1022
1062
  */
@@ -1025,10 +1065,6 @@ declare namespace MediaPackageV2 {
1025
1065
  * The comma-separated list of tag key:value pairs assigned to the origin endpoint.
1026
1066
  */
1027
1067
  Tags?: TagMap;
1028
- /**
1029
- * A DASH manifest configuration.
1030
- */
1031
- DashManifests?: GetDashManifests;
1032
1068
  }
1033
1069
  export type IdempotencyToken = string;
1034
1070
  export interface IngestEndpoint {
@@ -1042,6 +1078,7 @@ declare namespace MediaPackageV2 {
1042
1078
  Url?: String;
1043
1079
  }
1044
1080
  export type IngestEndpointList = IngestEndpoint[];
1081
+ export type InputType = "HLS"|"CMAF"|string;
1045
1082
  export type Integer = number;
1046
1083
  export interface ListChannelGroupsRequest {
1047
1084
  /**
@@ -1215,6 +1252,10 @@ declare namespace MediaPackageV2 {
1215
1252
  * A DASH manifest configuration.
1216
1253
  */
1217
1254
  DashManifests?: ListDashManifests;
1255
+ /**
1256
+ * The failover settings for the endpoint.
1257
+ */
1258
+ ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
1218
1259
  }
1219
1260
  export type OriginEndpointsList = OriginEndpointListConfiguration[];
1220
1261
  export type PolicyText = string;
@@ -1453,6 +1494,10 @@ declare namespace MediaPackageV2 {
1453
1494
  */
1454
1495
  Description?: ResourceDescription;
1455
1496
  IngestEndpoints?: IngestEndpointList;
1497
+ /**
1498
+ * The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. The allowed values are: HLS - The HLS streaming specification (which defines M3U8 manifests and TS segments). CMAF - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).
1499
+ */
1500
+ InputType?: InputType;
1456
1501
  /**
1457
1502
  * The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.
1458
1503
  */
@@ -1503,6 +1548,10 @@ declare namespace MediaPackageV2 {
1503
1548
  * A DASH manifest configuration.
1504
1549
  */
1505
1550
  DashManifests?: CreateDashManifests;
1551
+ /**
1552
+ * The failover settings for the endpoint.
1553
+ */
1554
+ ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
1506
1555
  /**
1507
1556
  * The expected current Entity Tag (ETag) for the resource. If the specified ETag does not match the resource's current entity tag, the update request will be rejected.
1508
1557
  */
@@ -1558,6 +1607,10 @@ declare namespace MediaPackageV2 {
1558
1607
  * A low-latency HLS manifest configuration.
1559
1608
  */
1560
1609
  LowLatencyHlsManifests?: GetLowLatencyHlsManifests;
1610
+ /**
1611
+ * The failover settings for the endpoint.
1612
+ */
1613
+ ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration;
1561
1614
  /**
1562
1615
  * The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.
1563
1616
  */
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1640.0',
86
+ VERSION: '2.1642.0',
87
87
 
88
88
  /**
89
89
  * @api private