@aws-sdk/client-medialive 3.325.0 → 3.327.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.
- package/dist-types/commands/AcceptInputDeviceTransferCommand.d.ts +4 -0
- package/dist-types/commands/BatchDeleteCommand.d.ts +20 -0
- package/dist-types/commands/BatchStartCommand.d.ts +20 -0
- package/dist-types/commands/BatchStopCommand.d.ts +20 -0
- package/dist-types/commands/BatchUpdateScheduleCommand.d.ts +263 -0
- package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +4 -0
- package/dist-types/commands/ClaimDeviceCommand.d.ts +4 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +1011 -0
- package/dist-types/commands/CreateInputCommand.d.ts +55 -0
- package/dist-types/commands/CreateInputSecurityGroupCommand.d.ts +21 -0
- package/dist-types/commands/CreateMultiplexCommand.d.ts +32 -0
- package/dist-types/commands/CreateMultiplexProgramCommand.d.ts +54 -0
- package/dist-types/commands/CreatePartnerInputCommand.d.ts +55 -0
- package/dist-types/commands/CreateTagsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +1009 -0
- package/dist-types/commands/DeleteInputCommand.d.ts +4 -0
- package/dist-types/commands/DeleteInputSecurityGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMultiplexCommand.d.ts +30 -0
- package/dist-types/commands/DeleteMultiplexProgramCommand.d.ts +52 -0
- package/dist-types/commands/DeleteReservationCommand.d.ts +38 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +1009 -0
- package/dist-types/commands/DescribeInputCommand.d.ts +53 -0
- package/dist-types/commands/DescribeInputDeviceCommand.d.ts +48 -0
- package/dist-types/commands/DescribeInputDeviceThumbnailCommand.d.ts +10 -0
- package/dist-types/commands/DescribeInputSecurityGroupCommand.d.ts +19 -0
- package/dist-types/commands/DescribeMultiplexCommand.d.ts +30 -0
- package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +52 -0
- package/dist-types/commands/DescribeOfferingCommand.d.ts +25 -0
- package/dist-types/commands/DescribeReservationCommand.d.ts +38 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +133 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +208 -0
- package/dist-types/commands/ListInputDeviceTransfersCommand.d.ts +14 -0
- package/dist-types/commands/ListInputDevicesCommand.d.ts +53 -0
- package/dist-types/commands/ListInputSecurityGroupsCommand.d.ts +24 -0
- package/dist-types/commands/ListInputsCommand.d.ts +58 -0
- package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +12 -0
- package/dist-types/commands/ListMultiplexesCommand.d.ts +25 -0
- package/dist-types/commands/ListOfferingsCommand.d.ts +30 -0
- package/dist-types/commands/ListReservationsCommand.d.ts +43 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +40 -0
- package/dist-types/commands/RebootInputDeviceCommand.d.ts +4 -0
- package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +4 -0
- package/dist-types/commands/StartChannelCommand.d.ts +1009 -0
- package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +4 -0
- package/dist-types/commands/StartMultiplexCommand.d.ts +30 -0
- package/dist-types/commands/StopChannelCommand.d.ts +1009 -0
- package/dist-types/commands/StopMultiplexCommand.d.ts +30 -0
- package/dist-types/commands/TransferInputDeviceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +1011 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +1011 -0
- package/dist-types/commands/UpdateInputCommand.d.ts +55 -0
- package/dist-types/commands/UpdateInputDeviceCommand.d.ts +48 -0
- package/dist-types/commands/UpdateInputSecurityGroupCommand.d.ts +21 -0
- package/dist-types/commands/UpdateMultiplexCommand.d.ts +32 -0
- package/dist-types/commands/UpdateMultiplexProgramCommand.d.ts +54 -0
- package/dist-types/commands/UpdateReservationCommand.d.ts +40 -0
- package/package.json +7 -7
|
@@ -70,6 +70,59 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat
|
|
|
70
70
|
* };
|
|
71
71
|
* const command = new CreateInputCommand(input);
|
|
72
72
|
* const response = await client.send(command);
|
|
73
|
+
* // { // CreateInputResponse
|
|
74
|
+
* // Input: { // Input
|
|
75
|
+
* // Arn: "STRING_VALUE",
|
|
76
|
+
* // AttachedChannels: [ // __listOf__string
|
|
77
|
+
* // "STRING_VALUE",
|
|
78
|
+
* // ],
|
|
79
|
+
* // Destinations: [ // __listOfInputDestination
|
|
80
|
+
* // { // InputDestination
|
|
81
|
+
* // Ip: "STRING_VALUE",
|
|
82
|
+
* // Port: "STRING_VALUE",
|
|
83
|
+
* // Url: "STRING_VALUE",
|
|
84
|
+
* // Vpc: { // InputDestinationVpc
|
|
85
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
86
|
+
* // NetworkInterfaceId: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // Id: "STRING_VALUE",
|
|
91
|
+
* // InputClass: "STANDARD" || "SINGLE_PIPELINE",
|
|
92
|
+
* // InputDevices: [ // __listOfInputDeviceSettings
|
|
93
|
+
* // { // InputDeviceSettings
|
|
94
|
+
* // Id: "STRING_VALUE",
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // InputPartnerIds: [
|
|
98
|
+
* // "STRING_VALUE",
|
|
99
|
+
* // ],
|
|
100
|
+
* // InputSourceType: "STATIC" || "DYNAMIC",
|
|
101
|
+
* // MediaConnectFlows: [ // __listOfMediaConnectFlow
|
|
102
|
+
* // { // MediaConnectFlow
|
|
103
|
+
* // FlowArn: "STRING_VALUE",
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // Name: "STRING_VALUE",
|
|
107
|
+
* // RoleArn: "STRING_VALUE",
|
|
108
|
+
* // SecurityGroups: [
|
|
109
|
+
* // "STRING_VALUE",
|
|
110
|
+
* // ],
|
|
111
|
+
* // Sources: [ // __listOfInputSource
|
|
112
|
+
* // { // InputSource
|
|
113
|
+
* // PasswordParam: "STRING_VALUE",
|
|
114
|
+
* // Url: "STRING_VALUE",
|
|
115
|
+
* // Username: "STRING_VALUE",
|
|
116
|
+
* // },
|
|
117
|
+
* // ],
|
|
118
|
+
* // State: "CREATING" || "DETACHED" || "ATTACHED" || "DELETING" || "DELETED",
|
|
119
|
+
* // Tags: { // Tags
|
|
120
|
+
* // "<keys>": "STRING_VALUE",
|
|
121
|
+
* // },
|
|
122
|
+
* // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE",
|
|
123
|
+
* // },
|
|
124
|
+
* // };
|
|
125
|
+
*
|
|
73
126
|
* ```
|
|
74
127
|
*
|
|
75
128
|
* @param CreateInputCommandInput - {@link CreateInputCommandInput}
|
|
@@ -96,6 +149,8 @@ export interface CreateInputCommandOutput extends CreateInputResponse, __Metadat
|
|
|
96
149
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
97
150
|
* Placeholder documentation for TooManyRequestsException
|
|
98
151
|
*
|
|
152
|
+
* @throws {@link MediaLiveServiceException}
|
|
153
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
99
154
|
*
|
|
100
155
|
*/
|
|
101
156
|
export declare class CreateInputCommand extends $Command<CreateInputCommandInput, CreateInputCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -38,6 +38,25 @@ export interface CreateInputSecurityGroupCommandOutput extends CreateInputSecuri
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new CreateInputSecurityGroupCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // CreateInputSecurityGroupResponse
|
|
42
|
+
* // SecurityGroup: { // InputSecurityGroup
|
|
43
|
+
* // Arn: "STRING_VALUE",
|
|
44
|
+
* // Id: "STRING_VALUE",
|
|
45
|
+
* // Inputs: [ // __listOf__string
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // State: "IDLE" || "IN_USE" || "UPDATING" || "DELETED",
|
|
49
|
+
* // Tags: { // Tags
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // WhitelistRules: [ // __listOfInputWhitelistRule
|
|
53
|
+
* // { // InputWhitelistRule
|
|
54
|
+
* // Cidr: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
41
60
|
* ```
|
|
42
61
|
*
|
|
43
62
|
* @param CreateInputSecurityGroupCommandInput - {@link CreateInputSecurityGroupCommandInput}
|
|
@@ -64,6 +83,8 @@ export interface CreateInputSecurityGroupCommandOutput extends CreateInputSecuri
|
|
|
64
83
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
65
84
|
* Placeholder documentation for TooManyRequestsException
|
|
66
85
|
*
|
|
86
|
+
* @throws {@link MediaLiveServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
67
88
|
*
|
|
68
89
|
*/
|
|
69
90
|
export declare class CreateInputSecurityGroupCommand extends $Command<CreateInputSecurityGroupCommandInput, CreateInputSecurityGroupCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -44,6 +44,36 @@ export interface CreateMultiplexCommandOutput extends CreateMultiplexResponse, _
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new CreateMultiplexCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // CreateMultiplexResponse
|
|
48
|
+
* // Multiplex: { // Multiplex
|
|
49
|
+
* // Arn: "STRING_VALUE",
|
|
50
|
+
* // AvailabilityZones: [ // __listOf__string
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // Destinations: [ // __listOfMultiplexOutputDestination
|
|
54
|
+
* // { // MultiplexOutputDestination
|
|
55
|
+
* // MediaConnectSettings: { // MultiplexMediaConnectOutputDestinationSettings
|
|
56
|
+
* // EntitlementArn: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // Id: "STRING_VALUE",
|
|
61
|
+
* // MultiplexSettings: { // MultiplexSettings
|
|
62
|
+
* // MaximumVideoBufferDelayMilliseconds: Number("int"),
|
|
63
|
+
* // TransportStreamBitrate: Number("int"), // required
|
|
64
|
+
* // TransportStreamId: Number("int"), // required
|
|
65
|
+
* // TransportStreamReservedBitrate: Number("int"),
|
|
66
|
+
* // },
|
|
67
|
+
* // Name: "STRING_VALUE",
|
|
68
|
+
* // PipelinesRunningCount: Number("int"),
|
|
69
|
+
* // ProgramCount: Number("int"),
|
|
70
|
+
* // State: "CREATING" || "CREATE_FAILED" || "IDLE" || "STARTING" || "RUNNING" || "RECOVERING" || "STOPPING" || "DELETING" || "DELETED",
|
|
71
|
+
* // Tags: { // Tags
|
|
72
|
+
* // "<keys>": "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // },
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
47
77
|
* ```
|
|
48
78
|
*
|
|
49
79
|
* @param CreateMultiplexCommandInput - {@link CreateMultiplexCommandInput}
|
|
@@ -76,6 +106,8 @@ export interface CreateMultiplexCommandOutput extends CreateMultiplexResponse, _
|
|
|
76
106
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
77
107
|
* Placeholder documentation for UnprocessableEntityException
|
|
78
108
|
*
|
|
109
|
+
* @throws {@link MediaLiveServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
79
111
|
*
|
|
80
112
|
*/
|
|
81
113
|
export declare class CreateMultiplexCommand extends $Command<CreateMultiplexCommandInput, CreateMultiplexCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -49,6 +49,58 @@ export interface CreateMultiplexProgramCommandOutput extends CreateMultiplexProg
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new CreateMultiplexProgramCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // CreateMultiplexProgramResponse
|
|
53
|
+
* // MultiplexProgram: { // MultiplexProgram
|
|
54
|
+
* // ChannelId: "STRING_VALUE",
|
|
55
|
+
* // MultiplexProgramSettings: { // MultiplexProgramSettings
|
|
56
|
+
* // PreferredChannelPipeline: "CURRENTLY_ACTIVE" || "PIPELINE_0" || "PIPELINE_1",
|
|
57
|
+
* // ProgramNumber: Number("int"), // required
|
|
58
|
+
* // ServiceDescriptor: { // MultiplexProgramServiceDescriptor
|
|
59
|
+
* // ProviderName: "STRING_VALUE", // required
|
|
60
|
+
* // ServiceName: "STRING_VALUE", // required
|
|
61
|
+
* // },
|
|
62
|
+
* // VideoSettings: { // MultiplexVideoSettings
|
|
63
|
+
* // ConstantBitrate: Number("int"),
|
|
64
|
+
* // StatmuxSettings: { // MultiplexStatmuxVideoSettings
|
|
65
|
+
* // MaximumBitrate: Number("int"),
|
|
66
|
+
* // MinimumBitrate: Number("int"),
|
|
67
|
+
* // Priority: Number("int"),
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // PacketIdentifiersMap: { // MultiplexProgramPacketIdentifiersMap
|
|
72
|
+
* // AudioPids: [ // __listOf__integer
|
|
73
|
+
* // Number("int"),
|
|
74
|
+
* // ],
|
|
75
|
+
* // DvbSubPids: [
|
|
76
|
+
* // Number("int"),
|
|
77
|
+
* // ],
|
|
78
|
+
* // DvbTeletextPid: Number("int"),
|
|
79
|
+
* // EtvPlatformPid: Number("int"),
|
|
80
|
+
* // EtvSignalPid: Number("int"),
|
|
81
|
+
* // KlvDataPids: [
|
|
82
|
+
* // Number("int"),
|
|
83
|
+
* // ],
|
|
84
|
+
* // PcrPid: Number("int"),
|
|
85
|
+
* // PmtPid: Number("int"),
|
|
86
|
+
* // PrivateMetadataPid: Number("int"),
|
|
87
|
+
* // Scte27Pids: [
|
|
88
|
+
* // Number("int"),
|
|
89
|
+
* // ],
|
|
90
|
+
* // Scte35Pid: Number("int"),
|
|
91
|
+
* // TimedMetadataPid: Number("int"),
|
|
92
|
+
* // VideoPid: Number("int"),
|
|
93
|
+
* // },
|
|
94
|
+
* // PipelineDetails: [ // __listOfMultiplexProgramPipelineDetail
|
|
95
|
+
* // { // MultiplexProgramPipelineDetail
|
|
96
|
+
* // ActiveChannelPipeline: "STRING_VALUE",
|
|
97
|
+
* // PipelineId: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
99
|
+
* // ],
|
|
100
|
+
* // ProgramName: "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // };
|
|
103
|
+
*
|
|
52
104
|
* ```
|
|
53
105
|
*
|
|
54
106
|
* @param CreateMultiplexProgramCommandInput - {@link CreateMultiplexProgramCommandInput}
|
|
@@ -81,6 +133,8 @@ export interface CreateMultiplexProgramCommandOutput extends CreateMultiplexProg
|
|
|
81
133
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
82
134
|
* Placeholder documentation for UnprocessableEntityException
|
|
83
135
|
*
|
|
136
|
+
* @throws {@link MediaLiveServiceException}
|
|
137
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
84
138
|
*
|
|
85
139
|
*/
|
|
86
140
|
export declare class CreateMultiplexProgramCommand extends $Command<CreateMultiplexProgramCommandInput, CreateMultiplexProgramCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -35,6 +35,59 @@ export interface CreatePartnerInputCommandOutput extends CreatePartnerInputRespo
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreatePartnerInputCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CreatePartnerInputResponse
|
|
39
|
+
* // Input: { // Input
|
|
40
|
+
* // Arn: "STRING_VALUE",
|
|
41
|
+
* // AttachedChannels: [ // __listOf__string
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // Destinations: [ // __listOfInputDestination
|
|
45
|
+
* // { // InputDestination
|
|
46
|
+
* // Ip: "STRING_VALUE",
|
|
47
|
+
* // Port: "STRING_VALUE",
|
|
48
|
+
* // Url: "STRING_VALUE",
|
|
49
|
+
* // Vpc: { // InputDestinationVpc
|
|
50
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
51
|
+
* // NetworkInterfaceId: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // Id: "STRING_VALUE",
|
|
56
|
+
* // InputClass: "STANDARD" || "SINGLE_PIPELINE",
|
|
57
|
+
* // InputDevices: [ // __listOfInputDeviceSettings
|
|
58
|
+
* // { // InputDeviceSettings
|
|
59
|
+
* // Id: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // InputPartnerIds: [
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // InputSourceType: "STATIC" || "DYNAMIC",
|
|
66
|
+
* // MediaConnectFlows: [ // __listOfMediaConnectFlow
|
|
67
|
+
* // { // MediaConnectFlow
|
|
68
|
+
* // FlowArn: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // Name: "STRING_VALUE",
|
|
72
|
+
* // RoleArn: "STRING_VALUE",
|
|
73
|
+
* // SecurityGroups: [
|
|
74
|
+
* // "STRING_VALUE",
|
|
75
|
+
* // ],
|
|
76
|
+
* // Sources: [ // __listOfInputSource
|
|
77
|
+
* // { // InputSource
|
|
78
|
+
* // PasswordParam: "STRING_VALUE",
|
|
79
|
+
* // Url: "STRING_VALUE",
|
|
80
|
+
* // Username: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // ],
|
|
83
|
+
* // State: "CREATING" || "DETACHED" || "ATTACHED" || "DELETING" || "DELETED",
|
|
84
|
+
* // Tags: { // Tags
|
|
85
|
+
* // "<keys>": "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE",
|
|
88
|
+
* // },
|
|
89
|
+
* // };
|
|
90
|
+
*
|
|
38
91
|
* ```
|
|
39
92
|
*
|
|
40
93
|
* @param CreatePartnerInputCommandInput - {@link CreatePartnerInputCommandInput}
|
|
@@ -61,6 +114,8 @@ export interface CreatePartnerInputCommandOutput extends CreatePartnerInputRespo
|
|
|
61
114
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
62
115
|
* Placeholder documentation for TooManyRequestsException
|
|
63
116
|
*
|
|
117
|
+
* @throws {@link MediaLiveServiceException}
|
|
118
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
64
119
|
*
|
|
65
120
|
*/
|
|
66
121
|
export declare class CreatePartnerInputCommand extends $Command<CreatePartnerInputCommandInput, CreatePartnerInputCommandOutput, MediaLiveClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new CreateTagsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param CreateTagsCommandInput - {@link CreateTagsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @throws {@link NotFoundException} (client fault)
|
|
55
57
|
* Placeholder documentation for NotFoundException
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link MediaLiveServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from MediaLive service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class CreateTagsCommand extends $Command<CreateTagsCommandInput, CreateTagsCommandOutput, MediaLiveClientResolvedConfig> {
|