Skip to content

Commit

Permalink
feat(client-mediapackagev2): This release adds support for CMAF inges…
Browse files Browse the repository at this point in the history
…t (DASH-IF live media ingest protocol interface 1)
  • Loading branch information
awstools committed Jun 13, 2024
1 parent 06c6041 commit b35cc16
Show file tree
Hide file tree
Showing 11 changed files with 441 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
* ChannelGroupName: "STRING_VALUE", // required
* ChannelName: "STRING_VALUE", // required
* ClientToken: "STRING_VALUE",
* InputType: "HLS" || "CMAF",
* Description: "STRING_VALUE",
* Tags: { // TagMap
* "<keys>": "STRING_VALUE",
Expand All @@ -59,6 +60,7 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
* // Url: "STRING_VALUE",
* // },
* // ],
* // InputType: "HLS" || "CMAF",
* // ETag: "STRING_VALUE",
* // Tags: { // TagMap
* // "<keys>": "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,11 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
* },
* },
* ],
* ForceEndpointErrorConfiguration: { // ForceEndpointErrorConfiguration
* EndpointErrorConditions: [ // EndpointErrorConditions
* "STALE_MANIFEST" || "INCOMPLETE_MANIFEST" || "MISSING_DRM_KEY" || "SLATE_INPUT",
* ],
* },
* Tags: { // TagMap
* "<keys>": "STRING_VALUE",
* },
Expand Down Expand Up @@ -248,6 +253,11 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
* // },
* // },
* // ],
* // ForceEndpointErrorConfiguration: { // ForceEndpointErrorConfiguration
* // EndpointErrorConditions: [ // EndpointErrorConditions
* // "STALE_MANIFEST" || "INCOMPLETE_MANIFEST" || "MISSING_DRM_KEY" || "SLATE_INPUT",
* // ],
* // },
* // ETag: "STRING_VALUE",
* // Tags: { // TagMap
* // "<keys>": "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export interface GetChannelCommandOutput extends GetChannelResponse, __MetadataB
* // Url: "STRING_VALUE",
* // },
* // ],
* // InputType: "HLS" || "CMAF",
* // ETag: "STRING_VALUE",
* // Tags: { // TagMap
* // "<keys>": "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,6 @@ export interface GetOriginEndpointCommandOutput extends GetOriginEndpointRespons
* // },
* // },
* // ],
* // ETag: "STRING_VALUE",
* // Tags: { // TagMap
* // "<keys>": "STRING_VALUE",
* // },
* // DashManifests: [ // GetDashManifests
* // { // GetDashManifestConfiguration
* // ManifestName: "STRING_VALUE", // required
Expand Down Expand Up @@ -152,6 +148,15 @@ export interface GetOriginEndpointCommandOutput extends GetOriginEndpointRespons
* // },
* // },
* // ],
* // ForceEndpointErrorConfiguration: { // ForceEndpointErrorConfiguration
* // EndpointErrorConditions: [ // EndpointErrorConditions
* // "STALE_MANIFEST" || "INCOMPLETE_MANIFEST" || "MISSING_DRM_KEY" || "SLATE_INPUT",
* // ],
* // },
* // ETag: "STRING_VALUE",
* // Tags: { // TagMap
* // "<keys>": "STRING_VALUE",
* // },
* // };
*
* ```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
* // CreatedAt: new Date("TIMESTAMP"), // required
* // ModifiedAt: new Date("TIMESTAMP"), // required
* // Description: "STRING_VALUE",
* // InputType: "HLS" || "CMAF",
* // },
* // ],
* // NextToken: "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes
* // Url: "STRING_VALUE",
* // },
* // ],
* // ForceEndpointErrorConfiguration: { // ForceEndpointErrorConfiguration
* // EndpointErrorConditions: [ // EndpointErrorConditions
* // "STALE_MANIFEST" || "INCOMPLETE_MANIFEST" || "MISSING_DRM_KEY" || "SLATE_INPUT",
* // ],
* // },
* // },
* // ],
* // NextToken: "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
* // Url: "STRING_VALUE",
* // },
* // ],
* // InputType: "HLS" || "CMAF",
* // ETag: "STRING_VALUE",
* // Tags: { // TagMap
* // "<keys>": "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,11 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
* },
* },
* ],
* ForceEndpointErrorConfiguration: { // ForceEndpointErrorConfiguration
* EndpointErrorConditions: [ // EndpointErrorConditions
* "STALE_MANIFEST" || "INCOMPLETE_MANIFEST" || "MISSING_DRM_KEY" || "SLATE_INPUT",
* ],
* },
* ETag: "STRING_VALUE",
* };
* const command = new UpdateOriginEndpointCommand(input);
Expand Down Expand Up @@ -218,6 +223,11 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
* // },
* // },
* // ],
* // ForceEndpointErrorConfiguration: { // ForceEndpointErrorConfiguration
* // EndpointErrorConditions: [ // EndpointErrorConditions
* // "STALE_MANIFEST" || "INCOMPLETE_MANIFEST" || "MISSING_DRM_KEY" || "SLATE_INPUT",
* // ],
* // },
* // ETag: "STRING_VALUE",
* // Tags: { // TagMap
* // "<keys>": "STRING_VALUE",
Expand Down
Loading

0 comments on commit b35cc16

Please sign in to comment.