@aws-sdk/client-mediapackagev2 3.775.0 → 3.782.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 (31) hide show
  1. package/dist-types/commands/CancelHarvestJobCommand.d.ts +10 -7
  2. package/dist-types/commands/CreateChannelCommand.d.ts +26 -26
  3. package/dist-types/commands/CreateChannelGroupCommand.d.ts +18 -18
  4. package/dist-types/commands/CreateHarvestJobCommand.d.ts +48 -48
  5. package/dist-types/commands/CreateOriginEndpointCommand.d.ts +290 -291
  6. package/dist-types/commands/DeleteChannelCommand.d.ts +8 -5
  7. package/dist-types/commands/DeleteChannelGroupCommand.d.ts +7 -4
  8. package/dist-types/commands/DeleteChannelPolicyCommand.d.ts +8 -5
  9. package/dist-types/commands/DeleteOriginEndpointCommand.d.ts +9 -6
  10. package/dist-types/commands/DeleteOriginEndpointPolicyCommand.d.ts +9 -6
  11. package/dist-types/commands/GetChannelCommand.d.ts +21 -21
  12. package/dist-types/commands/GetChannelGroupCommand.d.ts +14 -14
  13. package/dist-types/commands/GetChannelPolicyCommand.d.ts +8 -8
  14. package/dist-types/commands/GetHarvestJobCommand.d.ts +34 -34
  15. package/dist-types/commands/GetOriginEndpointCommand.d.ts +72 -72
  16. package/dist-types/commands/GetOriginEndpointPolicyCommand.d.ts +10 -10
  17. package/dist-types/commands/ListChannelGroupsCommand.d.ts +14 -14
  18. package/dist-types/commands/ListChannelsCommand.d.ts +16 -16
  19. package/dist-types/commands/ListHarvestJobsCommand.d.ts +186 -187
  20. package/dist-types/commands/ListOriginEndpointsCommand.d.ts +58 -58
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +7 -7
  22. package/dist-types/commands/PutChannelPolicyCommand.d.ts +9 -6
  23. package/dist-types/commands/PutOriginEndpointPolicyCommand.d.ts +10 -7
  24. package/dist-types/commands/ResetChannelStateCommand.d.ts +9 -9
  25. package/dist-types/commands/ResetOriginEndpointStateCommand.d.ts +11 -11
  26. package/dist-types/commands/TagResourceCommand.d.ts +10 -7
  27. package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
  28. package/dist-types/commands/UpdateChannelCommand.d.ts +22 -22
  29. package/dist-types/commands/UpdateChannelGroupCommand.d.ts +15 -15
  30. package/dist-types/commands/UpdateOriginEndpointCommand.d.ts +124 -124
  31. package/package.json +5 -5
@@ -68,19 +68,22 @@ declare const DeleteChannelCommand_base: {
68
68
  * @throws {@link MediaPackageV2ServiceException}
69
69
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
70
70
  *
71
- * @public
71
+ *
72
72
  * @example Deleting a Channel
73
73
  * ```javascript
74
74
  * //
75
75
  * const input = {
76
- * "ChannelGroupName": "exampleChannelGroup",
77
- * "ChannelName": "exampleChannel"
76
+ * ChannelGroupName: "exampleChannelGroup",
77
+ * ChannelName: "exampleChannel"
78
78
  * };
79
79
  * const command = new DeleteChannelCommand(input);
80
- * await client.send(command);
81
- * // example id: example-1
80
+ * const response = await client.send(command);
81
+ * /* response is
82
+ * { /* empty *\/ }
83
+ * *\/
82
84
  * ```
83
85
  *
86
+ * @public
84
87
  */
85
88
  export declare class DeleteChannelCommand extends DeleteChannelCommand_base {
86
89
  /** @internal type navigation helper, not in runtime. */
@@ -67,18 +67,21 @@ declare const DeleteChannelGroupCommand_base: {
67
67
  * @throws {@link MediaPackageV2ServiceException}
68
68
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
69
69
  *
70
- * @public
70
+ *
71
71
  * @example Deleting a Channel Group
72
72
  * ```javascript
73
73
  * //
74
74
  * const input = {
75
- * "ChannelGroupName": "exampleChannelGroup"
75
+ * ChannelGroupName: "exampleChannelGroup"
76
76
  * };
77
77
  * const command = new DeleteChannelGroupCommand(input);
78
- * await client.send(command);
79
- * // example id: example-1
78
+ * const response = await client.send(command);
79
+ * /* response is
80
+ * { /* empty *\/ }
81
+ * *\/
80
82
  * ```
81
83
  *
84
+ * @public
82
85
  */
83
86
  export declare class DeleteChannelGroupCommand extends DeleteChannelGroupCommand_base {
84
87
  /** @internal type navigation helper, not in runtime. */
@@ -68,19 +68,22 @@ declare const DeleteChannelPolicyCommand_base: {
68
68
  * @throws {@link MediaPackageV2ServiceException}
69
69
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
70
70
  *
71
- * @public
71
+ *
72
72
  * @example Deleting a Channel Policy
73
73
  * ```javascript
74
74
  * //
75
75
  * const input = {
76
- * "ChannelGroupName": "exampleChannelGroup",
77
- * "ChannelName": "exampleChannel"
76
+ * ChannelGroupName: "exampleChannelGroup",
77
+ * ChannelName: "exampleChannel"
78
78
  * };
79
79
  * const command = new DeleteChannelPolicyCommand(input);
80
- * await client.send(command);
81
- * // example id: example-1
80
+ * const response = await client.send(command);
81
+ * /* response is
82
+ * { /* empty *\/ }
83
+ * *\/
82
84
  * ```
83
85
  *
86
+ * @public
84
87
  */
85
88
  export declare class DeleteChannelPolicyCommand extends DeleteChannelPolicyCommand_base {
86
89
  /** @internal type navigation helper, not in runtime. */
@@ -66,20 +66,23 @@ declare const DeleteOriginEndpointCommand_base: {
66
66
  * @throws {@link MediaPackageV2ServiceException}
67
67
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
68
68
  *
69
- * @public
69
+ *
70
70
  * @example Deleting an OriginEndpoint
71
71
  * ```javascript
72
72
  * //
73
73
  * const input = {
74
- * "ChannelGroupName": "exampleChannelGroup",
75
- * "ChannelName": "exampleChannel",
76
- * "OriginEndpointName": "exampleOriginEndpointTS"
74
+ * ChannelGroupName: "exampleChannelGroup",
75
+ * ChannelName: "exampleChannel",
76
+ * OriginEndpointName: "exampleOriginEndpointTS"
77
77
  * };
78
78
  * const command = new DeleteOriginEndpointCommand(input);
79
- * await client.send(command);
80
- * // example id: example-1
79
+ * const response = await client.send(command);
80
+ * /* response is
81
+ * { /* empty *\/ }
82
+ * *\/
81
83
  * ```
82
84
  *
85
+ * @public
83
86
  */
84
87
  export declare class DeleteOriginEndpointCommand extends DeleteOriginEndpointCommand_base {
85
88
  /** @internal type navigation helper, not in runtime. */
@@ -69,20 +69,23 @@ declare const DeleteOriginEndpointPolicyCommand_base: {
69
69
  * @throws {@link MediaPackageV2ServiceException}
70
70
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
71
71
  *
72
- * @public
72
+ *
73
73
  * @example Deleting an Origin Endpoint Policy
74
74
  * ```javascript
75
75
  * //
76
76
  * const input = {
77
- * "ChannelGroupName": "exampleChannelGroup",
78
- * "ChannelName": "exampleChannel",
79
- * "OriginEndpointName": "exampleOriginEndpoint"
77
+ * ChannelGroupName: "exampleChannelGroup",
78
+ * ChannelName: "exampleChannel",
79
+ * OriginEndpointName: "exampleOriginEndpoint"
80
80
  * };
81
81
  * const command = new DeleteOriginEndpointPolicyCommand(input);
82
- * await client.send(command);
83
- * // example id: example-1
82
+ * const response = await client.send(command);
83
+ * /* response is
84
+ * { /* empty *\/ }
85
+ * *\/
84
86
  * ```
85
87
  *
88
+ * @public
86
89
  */
87
90
  export declare class DeleteOriginEndpointPolicyCommand extends DeleteOriginEndpointPolicyCommand_base {
88
91
  /** @internal type navigation helper, not in runtime. */
@@ -93,45 +93,45 @@ declare const GetChannelCommand_base: {
93
93
  * @throws {@link MediaPackageV2ServiceException}
94
94
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
95
95
  *
96
- * @public
96
+ *
97
97
  * @example Getting a Channel
98
98
  * ```javascript
99
99
  * //
100
100
  * const input = {
101
- * "ChannelGroupName": "exampleChannelGroup",
102
- * "ChannelName": "exampleChannel"
101
+ * ChannelGroupName: "exampleChannelGroup",
102
+ * ChannelName: "exampleChannel"
103
103
  * };
104
104
  * const command = new GetChannelCommand(input);
105
105
  * const response = await client.send(command);
106
- * /* response ==
106
+ * /* response is
107
107
  * {
108
- * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel",
109
- * "ChannelGroupName": "exampleChannelGroup",
110
- * "ChannelName": "exampleChannel",
111
- * "CreatedAt": "2022-10-18T09:36:00.00Z",
112
- * "Description": "Description for exampleChannel",
113
- * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
114
- * "IngestEndpoints": [
108
+ * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel",
109
+ * ChannelGroupName: "exampleChannelGroup",
110
+ * ChannelName: "exampleChannel",
111
+ * CreatedAt: "2022-10-18T09:36:00.00Z",
112
+ * Description: "Description for exampleChannel",
113
+ * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
114
+ * IngestEndpoints: [
115
115
  * {
116
- * "Id": "1",
117
- * "Url": "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index"
116
+ * Id: "1",
117
+ * Url: "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index"
118
118
  * },
119
119
  * {
120
- * "Id": "2",
121
- * "Url": "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index"
120
+ * Id: "2",
121
+ * Url: "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleChannel/index"
122
122
  * }
123
123
  * ],
124
- * "InputType": "HLS",
125
- * "ModifiedAt": "2022-10-18T09:36:00.00Z",
126
- * "Tags": {
127
- * "key1": "value1",
128
- * "key2": "value2"
124
+ * InputType: "HLS",
125
+ * ModifiedAt: "2022-10-18T09:36:00.00Z",
126
+ * Tags: {
127
+ * key1: "value1",
128
+ * key2: "value2"
129
129
  * }
130
130
  * }
131
131
  * *\/
132
- * // example id: example-1
133
132
  * ```
134
133
  *
134
+ * @public
135
135
  */
136
136
  export declare class GetChannelCommand extends GetChannelCommand_base {
137
137
  /** @internal type navigation helper, not in runtime. */
@@ -78,33 +78,33 @@ declare const GetChannelGroupCommand_base: {
78
78
  * @throws {@link MediaPackageV2ServiceException}
79
79
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
80
80
  *
81
- * @public
81
+ *
82
82
  * @example Getting a Channel Group
83
83
  * ```javascript
84
84
  * //
85
85
  * const input = {
86
- * "ChannelGroupName": "exampleChannelGroup"
86
+ * ChannelGroupName: "exampleChannelGroup"
87
87
  * };
88
88
  * const command = new GetChannelGroupCommand(input);
89
89
  * const response = await client.send(command);
90
- * /* response ==
90
+ * /* response is
91
91
  * {
92
- * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup",
93
- * "ChannelGroupName": "exampleChannelGroup",
94
- * "CreatedAt": "2022-10-18T09:36:00.00Z",
95
- * "Description": "Description for exampleChannelGroup",
96
- * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
97
- * "EgressDomain": "abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com",
98
- * "ModifiedAt": "2022-10-18T09:36:00.00Z",
99
- * "Tags": {
100
- * "key1": "value1",
101
- * "key2": "value2"
92
+ * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup",
93
+ * ChannelGroupName: "exampleChannelGroup",
94
+ * CreatedAt: "2022-10-18T09:36:00.00Z",
95
+ * Description: "Description for exampleChannelGroup",
96
+ * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
97
+ * EgressDomain: "abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com",
98
+ * ModifiedAt: "2022-10-18T09:36:00.00Z",
99
+ * Tags: {
100
+ * key1: "value1",
101
+ * key2: "value2"
102
102
  * }
103
103
  * }
104
104
  * *\/
105
- * // example id: example-1
106
105
  * ```
107
106
  *
107
+ * @public
108
108
  */
109
109
  export declare class GetChannelGroupCommand extends GetChannelGroupCommand_base {
110
110
  /** @internal type navigation helper, not in runtime. */
@@ -72,26 +72,26 @@ declare const GetChannelPolicyCommand_base: {
72
72
  * @throws {@link MediaPackageV2ServiceException}
73
73
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
74
74
  *
75
- * @public
75
+ *
76
76
  * @example Getting a Channel Policy
77
77
  * ```javascript
78
78
  * //
79
79
  * const input = {
80
- * "ChannelGroupName": "exampleChannelGroup",
81
- * "ChannelName": "exampleChannel"
80
+ * ChannelGroupName: "exampleChannelGroup",
81
+ * ChannelName: "exampleChannel"
82
82
  * };
83
83
  * const command = new GetChannelPolicyCommand(input);
84
84
  * const response = await client.send(command);
85
- * /* response ==
85
+ * /* response is
86
86
  * {
87
- * "ChannelGroupName": "exampleChannelGroup",
88
- * "ChannelName": "exampleChannel",
89
- * "Policy": "{...}"
87
+ * ChannelGroupName: "exampleChannelGroup",
88
+ * ChannelName: "exampleChannel",
89
+ * Policy: "{...}"
90
90
  * }
91
91
  * *\/
92
- * // example id: example-1
93
92
  * ```
94
93
  *
94
+ * @public
95
95
  */
96
96
  export declare class GetChannelPolicyCommand extends GetChannelPolicyCommand_base {
97
97
  /** @internal type navigation helper, not in runtime. */
@@ -112,66 +112,66 @@ declare const GetHarvestJobCommand_base: {
112
112
  * @throws {@link MediaPackageV2ServiceException}
113
113
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
114
114
  *
115
- * @public
115
+ *
116
116
  * @example Getting a Harvest Job
117
117
  * ```javascript
118
118
  * //
119
119
  * const input = {
120
- * "ChannelGroupName": "exampleChannelGroup",
121
- * "ChannelName": "exampleChannelName",
122
- * "HarvestJobName": "HarvestJobName",
123
- * "OriginEndpointName": "exampleOriginEndpointName"
120
+ * ChannelGroupName: "exampleChannelGroup",
121
+ * ChannelName: "exampleChannelName",
122
+ * HarvestJobName: "HarvestJobName",
123
+ * OriginEndpointName: "exampleOriginEndpointName"
124
124
  * };
125
125
  * const command = new GetHarvestJobCommand(input);
126
126
  * const response = await client.send(command);
127
- * /* response ==
127
+ * /* response is
128
128
  * {
129
- * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName",
130
- * "ChannelGroupName": "exampleChannelGroup",
131
- * "ChannelName": "exampleChannelName",
132
- * "CreatedAt": "2024-05-28T09:36:00.00Z",
133
- * "Description": "Example HarvestJob description",
134
- * "Destination": {
135
- * "S3Destination": {
136
- * "BucketName": "harvestJobS3DestinationBucket",
137
- * "DestinationPath": "manifests"
129
+ * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName",
130
+ * ChannelGroupName: "exampleChannelGroup",
131
+ * ChannelName: "exampleChannelName",
132
+ * CreatedAt: "2024-05-28T09:36:00.00Z",
133
+ * Description: "Example HarvestJob description",
134
+ * Destination: {
135
+ * S3Destination: {
136
+ * BucketName: "harvestJobS3DestinationBucket",
137
+ * DestinationPath: "manifests"
138
138
  * }
139
139
  * },
140
- * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
141
- * "HarvestJobName": "HarvestJobName",
142
- * "HarvestedManifests": {
143
- * "DashManifests": [
140
+ * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
141
+ * HarvestJobName: "HarvestJobName",
142
+ * HarvestedManifests: {
143
+ * DashManifests: [
144
144
  * {
145
- * "ManifestName": "DashManifest"
145
+ * ManifestName: "DashManifest"
146
146
  * }
147
147
  * ],
148
- * "HlsManifests": [
148
+ * HlsManifests: [
149
149
  * {
150
- * "ManifestName": "HlsManifest"
150
+ * ManifestName: "HlsManifest"
151
151
  * }
152
152
  * ],
153
- * "LowLatencyHlsManifests": [
153
+ * LowLatencyHlsManifests: [
154
154
  * {
155
- * "ManifestName": "LowLatencyHlsManifest"
155
+ * ManifestName: "LowLatencyHlsManifest"
156
156
  * }
157
157
  * ]
158
158
  * },
159
- * "ModifiedAt": "2024-05-28T09:36:00.00Z",
160
- * "OriginEndpointName": "exampleOriginEndpointName",
161
- * "ScheduleConfiguration": {
162
- * "EndTime": "2024-05-28T12:00:00.00Z",
163
- * "StartTime": "2024-05-28T06:00:00.00Z"
159
+ * ModifiedAt: "2024-05-28T09:36:00.00Z",
160
+ * OriginEndpointName: "exampleOriginEndpointName",
161
+ * ScheduleConfiguration: {
162
+ * EndTime: "2024-05-28T12:00:00.00Z",
163
+ * StartTime: "2024-05-28T06:00:00.00Z"
164
164
  * },
165
- * "Status": "QUEUED",
166
- * "Tags": {
167
- * "key1": "value1",
168
- * "key2": "value2"
165
+ * Status: "QUEUED",
166
+ * Tags: {
167
+ * key1: "value1",
168
+ * key2: "value2"
169
169
  * }
170
170
  * }
171
171
  * *\/
172
- * // example id: example-1
173
172
  * ```
174
173
  *
174
+ * @public
175
175
  */
176
176
  export declare class GetHarvestJobCommand extends GetHarvestJobCommand_base {
177
177
  /** @internal type navigation helper, not in runtime. */
@@ -198,122 +198,122 @@ declare const GetOriginEndpointCommand_base: {
198
198
  * @throws {@link MediaPackageV2ServiceException}
199
199
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
200
200
  *
201
- * @public
201
+ *
202
202
  * @example Getting an OriginEndpoint
203
203
  * ```javascript
204
204
  * //
205
205
  * const input = {
206
- * "ChannelGroupName": "exampleChannelGroup",
207
- * "ChannelName": "exampleChannel",
208
- * "OriginEndpointName": "exampleOriginEndpointTS"
206
+ * ChannelGroupName: "exampleChannelGroup",
207
+ * ChannelName: "exampleChannel",
208
+ * OriginEndpointName: "exampleOriginEndpointTS"
209
209
  * };
210
210
  * const command = new GetOriginEndpointCommand(input);
211
211
  * const response = await client.send(command);
212
- * /* response ==
212
+ * /* response is
213
213
  * {
214
- * "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS",
215
- * "ChannelGroupName": "exampleChannelGroup",
216
- * "ChannelName": "exampleChannel",
217
- * "ContainerType": "TS",
218
- * "CreatedAt": "2022-10-18T09:36:00.00Z",
219
- * "Description": "Description for exampleOriginEndpointTS",
220
- * "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
221
- * "ForceEndpointErrorConfiguration": {
222
- * "EndpointErrorConditions": [
214
+ * Arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel/originEndpoint/exampleOriginEndpointTS",
215
+ * ChannelGroupName: "exampleChannelGroup",
216
+ * ChannelName: "exampleChannel",
217
+ * ContainerType: "TS",
218
+ * CreatedAt: "2022-10-18T09:36:00.00Z",
219
+ * Description: "Description for exampleOriginEndpointTS",
220
+ * ETag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
221
+ * ForceEndpointErrorConfiguration: {
222
+ * EndpointErrorConditions: [
223
223
  * "STALE_MANIFEST",
224
224
  * "INCOMPLETE_MANIFEST",
225
225
  * "MISSING_DRM_KEY",
226
226
  * "SLATE_INPUT"
227
227
  * ]
228
228
  * },
229
- * "HlsManifests": [
229
+ * HlsManifests: [
230
230
  * {
231
- * "ChildManifestName": "exampleChildManifest1",
232
- * "ManifestName": "exampleManifest1",
233
- * "ManifestWindowSeconds": 30,
234
- * "ProgramDateTimeIntervalSeconds": 60,
235
- * "ScteHls": {
236
- * "AdMarkerHls": "DATERANGE"
231
+ * ChildManifestName: "exampleChildManifest1",
232
+ * ManifestName: "exampleManifest1",
233
+ * ManifestWindowSeconds: 30,
234
+ * ProgramDateTimeIntervalSeconds: 60,
235
+ * ScteHls: {
236
+ * AdMarkerHls: "DATERANGE"
237
237
  * },
238
- * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8"
238
+ * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest1.m3u8"
239
239
  * },
240
240
  * {
241
- * "ChildManifestName": "exampleManifest2",
242
- * "ManifestName": "exampleManifest2",
243
- * "ManifestWindowSeconds": 30,
244
- * "ProgramDateTimeIntervalSeconds": 60,
245
- * "ScteHls": {
246
- * "AdMarkerHls": "DATERANGE"
241
+ * ChildManifestName: "exampleManifest2",
242
+ * ManifestName: "exampleManifest2",
243
+ * ManifestWindowSeconds: 30,
244
+ * ProgramDateTimeIntervalSeconds: 60,
245
+ * ScteHls: {
246
+ * AdMarkerHls: "DATERANGE"
247
247
  * },
248
- * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8"
248
+ * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleManifest2.m3u8"
249
249
  * }
250
250
  * ],
251
- * "LowLatencyHlsManifests": [
251
+ * LowLatencyHlsManifests: [
252
252
  * {
253
- * "ChildManifestName": "exampleLLChildManifest1",
254
- * "ManifestName": "exampleLLManifest1",
255
- * "ManifestWindowSeconds": 30,
256
- * "ProgramDateTimeIntervalSeconds": 60,
257
- * "ScteHls": {
258
- * "AdMarkerHls": "DATERANGE"
253
+ * ChildManifestName: "exampleLLChildManifest1",
254
+ * ManifestName: "exampleLLManifest1",
255
+ * ManifestWindowSeconds: 30,
256
+ * ProgramDateTimeIntervalSeconds: 60,
257
+ * ScteHls: {
258
+ * AdMarkerHls: "DATERANGE"
259
259
  * },
260
- * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8"
260
+ * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest1.m3u8"
261
261
  * },
262
262
  * {
263
- * "ChildManifestName": "exampleLLManifest2",
264
- * "ManifestName": "exampleLLManifest2",
265
- * "ManifestWindowSeconds": 30,
266
- * "ProgramDateTimeIntervalSeconds": 60,
267
- * "ScteHls": {
268
- * "AdMarkerHls": "DATERANGE"
263
+ * ChildManifestName: "exampleLLManifest2",
264
+ * ManifestName: "exampleLLManifest2",
265
+ * ManifestWindowSeconds: 30,
266
+ * ProgramDateTimeIntervalSeconds: 60,
267
+ * ScteHls: {
268
+ * AdMarkerHls: "DATERANGE"
269
269
  * },
270
- * "Url": "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8"
270
+ * Url: "https://abcde.egress.vwxyz.mediapackagev2.us-west-2.amazonaws.com/out/v1/exampleChannelGroup/exampleChannel/exampleOriginEndpointTS/exampleLLManifest2.m3u8"
271
271
  * }
272
272
  * ],
273
- * "ModifiedAt": "2022-10-18T09:36:00.00Z",
274
- * "OriginEndpointName": "exampleOriginEndpointTS",
275
- * "Segment": {
276
- * "Encryption": {
277
- * "ConstantInitializationVector": "A382A901F3C1F7718512266CFFBB0B7E",
278
- * "EncryptionMethod": {
279
- * "TsEncryptionMethod": "AES_128"
273
+ * ModifiedAt: "2022-10-18T09:36:00.00Z",
274
+ * OriginEndpointName: "exampleOriginEndpointTS",
275
+ * Segment: {
276
+ * Encryption: {
277
+ * ConstantInitializationVector: "A382A901F3C1F7718512266CFFBB0B7E",
278
+ * EncryptionMethod: {
279
+ * TsEncryptionMethod: "AES_128"
280
280
  * },
281
- * "KeyRotationIntervalSeconds": 300,
282
- * "SpekeKeyProvider": {
283
- * "DrmSystems": [
281
+ * KeyRotationIntervalSeconds: 300,
282
+ * SpekeKeyProvider: {
283
+ * DrmSystems: [
284
284
  * "CLEAR_KEY_AES_128"
285
285
  * ],
286
- * "EncryptionContractConfiguration": {
287
- * "PresetSpeke20Audio": "SHARED",
288
- * "PresetSpeke20Video": "SHARED"
286
+ * EncryptionContractConfiguration: {
287
+ * PresetSpeke20Audio: "SHARED",
288
+ * PresetSpeke20Video: "SHARED"
289
289
  * },
290
- * "ResourceId": "ResourceId",
291
- * "RoleArn": "arn:aws:iam::123456789012:role/empRole",
292
- * "Url": "https://foo.com"
290
+ * ResourceId: "ResourceId",
291
+ * RoleArn: "arn:aws:iam::123456789012:role/empRole",
292
+ * Url: "https://foo.com"
293
293
  * }
294
294
  * },
295
- * "IncludeIframeOnlyStreams": true,
296
- * "Scte": {
297
- * "ScteFilter": [
295
+ * IncludeIframeOnlyStreams: true,
296
+ * Scte: {
297
+ * ScteFilter: [
298
298
  * "SPLICE_INSERT",
299
299
  * "BREAK"
300
300
  * ]
301
301
  * },
302
- * "SegmentDurationSeconds": 6,
303
- * "SegmentName": "segmentName",
304
- * "TsIncludeDvbSubtitles": true,
305
- * "TsUseAudioRenditionGroup": true
302
+ * SegmentDurationSeconds: 6,
303
+ * SegmentName: "segmentName",
304
+ * TsIncludeDvbSubtitles: true,
305
+ * TsUseAudioRenditionGroup: true
306
306
  * },
307
- * "StartoverWindowSeconds": 300,
308
- * "Tags": {
309
- * "key1": "value1",
310
- * "key2": "value2"
307
+ * StartoverWindowSeconds: 300,
308
+ * Tags: {
309
+ * key1: "value1",
310
+ * key2: "value2"
311
311
  * }
312
312
  * }
313
313
  * *\/
314
- * // example id: example-1
315
314
  * ```
316
315
  *
316
+ * @public
317
317
  */
318
318
  export declare class GetOriginEndpointCommand extends GetOriginEndpointCommand_base {
319
319
  /** @internal type navigation helper, not in runtime. */
@@ -74,28 +74,28 @@ declare const GetOriginEndpointPolicyCommand_base: {
74
74
  * @throws {@link MediaPackageV2ServiceException}
75
75
  * <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
76
76
  *
77
- * @public
77
+ *
78
78
  * @example Getting an Origin Endpoint Policy
79
79
  * ```javascript
80
80
  * //
81
81
  * const input = {
82
- * "ChannelGroupName": "exampleChannelGroup",
83
- * "ChannelName": "exampleChannel",
84
- * "OriginEndpointName": "exampleOriginEndpoint"
82
+ * ChannelGroupName: "exampleChannelGroup",
83
+ * ChannelName: "exampleChannel",
84
+ * OriginEndpointName: "exampleOriginEndpoint"
85
85
  * };
86
86
  * const command = new GetOriginEndpointPolicyCommand(input);
87
87
  * const response = await client.send(command);
88
- * /* response ==
88
+ * /* response is
89
89
  * {
90
- * "ChannelGroupName": "exampleChannelGroup",
91
- * "ChannelName": "exampleChannel",
92
- * "OriginEndpointName": "exampleOriginEndpoint",
93
- * "Policy": "{...}"
90
+ * ChannelGroupName: "exampleChannelGroup",
91
+ * ChannelName: "exampleChannel",
92
+ * OriginEndpointName: "exampleOriginEndpoint",
93
+ * Policy: "{...}"
94
94
  * }
95
95
  * *\/
96
- * // example id: example-1
97
96
  * ```
98
97
  *
98
+ * @public
99
99
  */
100
100
  export declare class GetOriginEndpointPolicyCommand extends GetOriginEndpointPolicyCommand_base {
101
101
  /** @internal type navigation helper, not in runtime. */