Skip to content

Commit 9b00708

Browse files
author
awstools
committed
feat(client-medialive): Enables Updating Anywhere Settings on a MediaLive Anywhere Channel.
1 parent e226a41 commit 9b00708

File tree

4 files changed

+39508
-39492
lines changed

4 files changed

+39508
-39492
lines changed

clients/client-medialive/src/commands/UpdateChannelCommand.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,6 +1224,10 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
12241224
* Version: "STRING_VALUE",
12251225
* },
12261226
* DryRun: true || false,
1227+
* AnywhereSettings: { // AnywhereSettings
1228+
* ChannelPlacementGroupId: "STRING_VALUE",
1229+
* ClusterId: "STRING_VALUE",
1230+
* },
12271231
* };
12281232
* const command = new UpdateChannelCommand(input);
12291233
* const response = await client.send(command);

clients/client-medialive/src/models/models_2.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7884,6 +7884,12 @@ export interface UpdateChannelRequest {
78847884
* @public
78857885
*/
78867886
DryRun?: boolean | undefined;
7887+
7888+
/**
7889+
* The Elemental Anywhere settings for this channel.
7890+
* @public
7891+
*/
7892+
AnywhereSettings?: AnywhereSettings | undefined;
78877893
}
78887894

78897895
/**

clients/client-medialive/src/protocols/Aws_restJson1.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2718,6 +2718,7 @@ export const se_UpdateChannelCommand = async (
27182718
let body: any;
27192719
body = JSON.stringify(
27202720
take(input, {
2721+
anywhereSettings: [, (_) => se_AnywhereSettings(_, context), `AnywhereSettings`],
27212722
cdiInputSpecification: [, (_) => se_CdiInputSpecification(_, context), `CdiInputSpecification`],
27222723
channelEngineVersion: [, (_) => se_ChannelEngineVersionRequest(_, context), `ChannelEngineVersion`],
27232724
destinations: [, (_) => se___listOfOutputDestination(_, context), `Destinations`],

0 commit comments

Comments
 (0)