@aws-sdk/client-medialive 3.541.0 → 3.549.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-cjs/index.js +116 -15
- package/dist-es/models/models_0.js +47 -15
- package/dist-es/models/models_1.js +15 -0
- package/dist-es/protocols/Aws_restJson1.js +42 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +38 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +19 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +19 -0
- package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +19 -0
- package/dist-types/commands/StartChannelCommand.d.ts +19 -0
- package/dist-types/commands/StopChannelCommand.d.ts +19 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +19 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +38 -0
- package/dist-types/models/models_0.d.ts +167 -156
- package/dist-types/models/models_1.d.ts +162 -269
- package/dist-types/models/models_2.d.ts +270 -2
- package/dist-types/ts3.4/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +73 -48
- package/dist-types/ts3.4/models/models_1.d.ts +51 -66
- package/dist-types/ts3.4/models/models_2.d.ts +67 -0
- package/package.json +6 -6
|
@@ -1,7 +1,163 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
3
3
|
import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
|
|
4
|
-
import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ColorCorrection, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers,
|
|
4
|
+
import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, CmafIngestGroupSettings, ColorCorrection, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers, HlsCaptionLanguageSetting, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsDiscontinuityTags, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceSettings, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexState, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, S3CannedAcl, VpcOutputSettingsDescription } from "./models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* @enum
|
|
8
|
+
*/
|
|
9
|
+
export declare const HlsEncryptionType: {
|
|
10
|
+
readonly AES128: "AES128";
|
|
11
|
+
readonly SAMPLE_AES: "SAMPLE_AES";
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export type HlsEncryptionType = (typeof HlsEncryptionType)[keyof typeof HlsEncryptionType];
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
* @enum
|
|
20
|
+
*/
|
|
21
|
+
export declare const HlsAkamaiHttpTransferMode: {
|
|
22
|
+
readonly CHUNKED: "CHUNKED";
|
|
23
|
+
readonly NON_CHUNKED: "NON_CHUNKED";
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export type HlsAkamaiHttpTransferMode = (typeof HlsAkamaiHttpTransferMode)[keyof typeof HlsAkamaiHttpTransferMode];
|
|
29
|
+
/**
|
|
30
|
+
* Hls Akamai Settings
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export interface HlsAkamaiSettings {
|
|
34
|
+
/**
|
|
35
|
+
* Number of seconds to wait before retrying connection to the CDN if the connection is lost.
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
ConnectionRetryInterval?: number;
|
|
39
|
+
/**
|
|
40
|
+
* Size in seconds of file cache for streaming outputs.
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
FilecacheDuration?: number;
|
|
44
|
+
/**
|
|
45
|
+
* Specify whether or not to use chunked transfer encoding to Akamai. User should contact Akamai to enable this feature.
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
HttpTransferMode?: HlsAkamaiHttpTransferMode;
|
|
49
|
+
/**
|
|
50
|
+
* Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
NumRetries?: number;
|
|
54
|
+
/**
|
|
55
|
+
* If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
RestartDelay?: number;
|
|
59
|
+
/**
|
|
60
|
+
* Salt for authenticated Akamai.
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
Salt?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Token parameter for authenticated akamai. If not specified, _gda_ is used.
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
Token?: string;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Hls Basic Put Settings
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export interface HlsBasicPutSettings {
|
|
75
|
+
/**
|
|
76
|
+
* Number of seconds to wait before retrying connection to the CDN if the connection is lost.
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
ConnectionRetryInterval?: number;
|
|
80
|
+
/**
|
|
81
|
+
* Size in seconds of file cache for streaming outputs.
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
FilecacheDuration?: number;
|
|
85
|
+
/**
|
|
86
|
+
* Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
NumRetries?: number;
|
|
90
|
+
/**
|
|
91
|
+
* If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
RestartDelay?: number;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
* @enum
|
|
99
|
+
*/
|
|
100
|
+
export declare const HlsMediaStoreStorageClass: {
|
|
101
|
+
readonly TEMPORAL: "TEMPORAL";
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
export type HlsMediaStoreStorageClass = (typeof HlsMediaStoreStorageClass)[keyof typeof HlsMediaStoreStorageClass];
|
|
107
|
+
/**
|
|
108
|
+
* Hls Media Store Settings
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export interface HlsMediaStoreSettings {
|
|
112
|
+
/**
|
|
113
|
+
* Number of seconds to wait before retrying connection to the CDN if the connection is lost.
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
ConnectionRetryInterval?: number;
|
|
117
|
+
/**
|
|
118
|
+
* Size in seconds of file cache for streaming outputs.
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
FilecacheDuration?: number;
|
|
122
|
+
/**
|
|
123
|
+
* When set to temporal, output files are stored in non-persistent memory for faster reading and writing.
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
MediaStoreStorageClass?: HlsMediaStoreStorageClass;
|
|
127
|
+
/**
|
|
128
|
+
* Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
NumRetries?: number;
|
|
132
|
+
/**
|
|
133
|
+
* If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
RestartDelay?: number;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Hls S3 Settings
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
export interface HlsS3Settings {
|
|
143
|
+
/**
|
|
144
|
+
* Specify the canned ACL to apply to each S3 request. Defaults to none.
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
147
|
+
CannedAcl?: S3CannedAcl;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
* @enum
|
|
152
|
+
*/
|
|
153
|
+
export declare const HlsWebdavHttpTransferMode: {
|
|
154
|
+
readonly CHUNKED: "CHUNKED";
|
|
155
|
+
readonly NON_CHUNKED: "NON_CHUNKED";
|
|
156
|
+
};
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
export type HlsWebdavHttpTransferMode = (typeof HlsWebdavHttpTransferMode)[keyof typeof HlsWebdavHttpTransferMode];
|
|
5
161
|
/**
|
|
6
162
|
* Hls Webdav Settings
|
|
7
163
|
* @public
|
|
@@ -1007,6 +1163,11 @@ export interface OutputGroupSettings {
|
|
|
1007
1163
|
* @public
|
|
1008
1164
|
*/
|
|
1009
1165
|
UdpGroupSettings?: UdpGroupSettings;
|
|
1166
|
+
/**
|
|
1167
|
+
* Cmaf Ingest Group Settings
|
|
1168
|
+
* @public
|
|
1169
|
+
*/
|
|
1170
|
+
CmafIngestGroupSettings?: CmafIngestGroupSettings;
|
|
1010
1171
|
}
|
|
1011
1172
|
/**
|
|
1012
1173
|
* Output groups for this Live Event. Output groups contain information about where streams should be distributed.
|
|
@@ -6374,274 +6535,6 @@ export interface DescribeMultiplexResponse {
|
|
|
6374
6535
|
*/
|
|
6375
6536
|
Tags?: Record<string, string>;
|
|
6376
6537
|
}
|
|
6377
|
-
/**
|
|
6378
|
-
* Placeholder documentation for DescribeMultiplexProgramRequest
|
|
6379
|
-
* @public
|
|
6380
|
-
*/
|
|
6381
|
-
export interface DescribeMultiplexProgramRequest {
|
|
6382
|
-
/**
|
|
6383
|
-
* The ID of the multiplex that the program belongs to.
|
|
6384
|
-
* @public
|
|
6385
|
-
*/
|
|
6386
|
-
MultiplexId: string | undefined;
|
|
6387
|
-
/**
|
|
6388
|
-
* The name of the program.
|
|
6389
|
-
* @public
|
|
6390
|
-
*/
|
|
6391
|
-
ProgramName: string | undefined;
|
|
6392
|
-
}
|
|
6393
|
-
/**
|
|
6394
|
-
* Placeholder documentation for DescribeMultiplexProgramResponse
|
|
6395
|
-
* @public
|
|
6396
|
-
*/
|
|
6397
|
-
export interface DescribeMultiplexProgramResponse {
|
|
6398
|
-
/**
|
|
6399
|
-
* The MediaLive channel associated with the program.
|
|
6400
|
-
* @public
|
|
6401
|
-
*/
|
|
6402
|
-
ChannelId?: string;
|
|
6403
|
-
/**
|
|
6404
|
-
* The settings for this multiplex program.
|
|
6405
|
-
* @public
|
|
6406
|
-
*/
|
|
6407
|
-
MultiplexProgramSettings?: MultiplexProgramSettings;
|
|
6408
|
-
/**
|
|
6409
|
-
* The packet identifier map for this multiplex program.
|
|
6410
|
-
* @public
|
|
6411
|
-
*/
|
|
6412
|
-
PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
|
|
6413
|
-
/**
|
|
6414
|
-
* Contains information about the current sources for the specified program in the specified multiplex. Keep in mind that each multiplex pipeline connects to both pipelines in a given source channel (the channel identified by the program). But only one of those channel pipelines is ever active at one time.
|
|
6415
|
-
* @public
|
|
6416
|
-
*/
|
|
6417
|
-
PipelineDetails?: MultiplexProgramPipelineDetail[];
|
|
6418
|
-
/**
|
|
6419
|
-
* The name of the multiplex program.
|
|
6420
|
-
* @public
|
|
6421
|
-
*/
|
|
6422
|
-
ProgramName?: string;
|
|
6423
|
-
}
|
|
6424
|
-
/**
|
|
6425
|
-
* Placeholder documentation for DescribeOfferingRequest
|
|
6426
|
-
* @public
|
|
6427
|
-
*/
|
|
6428
|
-
export interface DescribeOfferingRequest {
|
|
6429
|
-
/**
|
|
6430
|
-
* Unique offering ID, e.g. '87654321'
|
|
6431
|
-
* @public
|
|
6432
|
-
*/
|
|
6433
|
-
OfferingId: string | undefined;
|
|
6434
|
-
}
|
|
6435
|
-
/**
|
|
6436
|
-
* Placeholder documentation for DescribeOfferingResponse
|
|
6437
|
-
* @public
|
|
6438
|
-
*/
|
|
6439
|
-
export interface DescribeOfferingResponse {
|
|
6440
|
-
/**
|
|
6441
|
-
* Unique offering ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:offering:87654321'
|
|
6442
|
-
* @public
|
|
6443
|
-
*/
|
|
6444
|
-
Arn?: string;
|
|
6445
|
-
/**
|
|
6446
|
-
* Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
|
|
6447
|
-
* @public
|
|
6448
|
-
*/
|
|
6449
|
-
CurrencyCode?: string;
|
|
6450
|
-
/**
|
|
6451
|
-
* Lease duration, e.g. '12'
|
|
6452
|
-
* @public
|
|
6453
|
-
*/
|
|
6454
|
-
Duration?: number;
|
|
6455
|
-
/**
|
|
6456
|
-
* Units for duration, e.g. 'MONTHS'
|
|
6457
|
-
* @public
|
|
6458
|
-
*/
|
|
6459
|
-
DurationUnits?: OfferingDurationUnits;
|
|
6460
|
-
/**
|
|
6461
|
-
* One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
|
|
6462
|
-
* @public
|
|
6463
|
-
*/
|
|
6464
|
-
FixedPrice?: number;
|
|
6465
|
-
/**
|
|
6466
|
-
* Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
|
|
6467
|
-
* @public
|
|
6468
|
-
*/
|
|
6469
|
-
OfferingDescription?: string;
|
|
6470
|
-
/**
|
|
6471
|
-
* Unique offering ID, e.g. '87654321'
|
|
6472
|
-
* @public
|
|
6473
|
-
*/
|
|
6474
|
-
OfferingId?: string;
|
|
6475
|
-
/**
|
|
6476
|
-
* Offering type, e.g. 'NO_UPFRONT'
|
|
6477
|
-
* @public
|
|
6478
|
-
*/
|
|
6479
|
-
OfferingType?: OfferingType;
|
|
6480
|
-
/**
|
|
6481
|
-
* AWS region, e.g. 'us-west-2'
|
|
6482
|
-
* @public
|
|
6483
|
-
*/
|
|
6484
|
-
Region?: string;
|
|
6485
|
-
/**
|
|
6486
|
-
* Resource configuration details
|
|
6487
|
-
* @public
|
|
6488
|
-
*/
|
|
6489
|
-
ResourceSpecification?: ReservationResourceSpecification;
|
|
6490
|
-
/**
|
|
6491
|
-
* Recurring usage charge for each reserved resource, e.g. '157.0'
|
|
6492
|
-
* @public
|
|
6493
|
-
*/
|
|
6494
|
-
UsagePrice?: number;
|
|
6495
|
-
}
|
|
6496
|
-
/**
|
|
6497
|
-
* Placeholder documentation for DescribeReservationRequest
|
|
6498
|
-
* @public
|
|
6499
|
-
*/
|
|
6500
|
-
export interface DescribeReservationRequest {
|
|
6501
|
-
/**
|
|
6502
|
-
* Unique reservation ID, e.g. '1234567'
|
|
6503
|
-
* @public
|
|
6504
|
-
*/
|
|
6505
|
-
ReservationId: string | undefined;
|
|
6506
|
-
}
|
|
6507
|
-
/**
|
|
6508
|
-
* Placeholder documentation for DescribeReservationResponse
|
|
6509
|
-
* @public
|
|
6510
|
-
*/
|
|
6511
|
-
export interface DescribeReservationResponse {
|
|
6512
|
-
/**
|
|
6513
|
-
* Unique reservation ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:reservation:1234567'
|
|
6514
|
-
* @public
|
|
6515
|
-
*/
|
|
6516
|
-
Arn?: string;
|
|
6517
|
-
/**
|
|
6518
|
-
* Number of reserved resources
|
|
6519
|
-
* @public
|
|
6520
|
-
*/
|
|
6521
|
-
Count?: number;
|
|
6522
|
-
/**
|
|
6523
|
-
* Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
|
|
6524
|
-
* @public
|
|
6525
|
-
*/
|
|
6526
|
-
CurrencyCode?: string;
|
|
6527
|
-
/**
|
|
6528
|
-
* Lease duration, e.g. '12'
|
|
6529
|
-
* @public
|
|
6530
|
-
*/
|
|
6531
|
-
Duration?: number;
|
|
6532
|
-
/**
|
|
6533
|
-
* Units for duration, e.g. 'MONTHS'
|
|
6534
|
-
* @public
|
|
6535
|
-
*/
|
|
6536
|
-
DurationUnits?: OfferingDurationUnits;
|
|
6537
|
-
/**
|
|
6538
|
-
* Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
|
|
6539
|
-
* @public
|
|
6540
|
-
*/
|
|
6541
|
-
End?: string;
|
|
6542
|
-
/**
|
|
6543
|
-
* One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
|
|
6544
|
-
* @public
|
|
6545
|
-
*/
|
|
6546
|
-
FixedPrice?: number;
|
|
6547
|
-
/**
|
|
6548
|
-
* User specified reservation name
|
|
6549
|
-
* @public
|
|
6550
|
-
*/
|
|
6551
|
-
Name?: string;
|
|
6552
|
-
/**
|
|
6553
|
-
* Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
|
|
6554
|
-
* @public
|
|
6555
|
-
*/
|
|
6556
|
-
OfferingDescription?: string;
|
|
6557
|
-
/**
|
|
6558
|
-
* Unique offering ID, e.g. '87654321'
|
|
6559
|
-
* @public
|
|
6560
|
-
*/
|
|
6561
|
-
OfferingId?: string;
|
|
6562
|
-
/**
|
|
6563
|
-
* Offering type, e.g. 'NO_UPFRONT'
|
|
6564
|
-
* @public
|
|
6565
|
-
*/
|
|
6566
|
-
OfferingType?: OfferingType;
|
|
6567
|
-
/**
|
|
6568
|
-
* AWS region, e.g. 'us-west-2'
|
|
6569
|
-
* @public
|
|
6570
|
-
*/
|
|
6571
|
-
Region?: string;
|
|
6572
|
-
/**
|
|
6573
|
-
* Renewal settings for the reservation
|
|
6574
|
-
* @public
|
|
6575
|
-
*/
|
|
6576
|
-
RenewalSettings?: RenewalSettings;
|
|
6577
|
-
/**
|
|
6578
|
-
* Unique reservation ID, e.g. '1234567'
|
|
6579
|
-
* @public
|
|
6580
|
-
*/
|
|
6581
|
-
ReservationId?: string;
|
|
6582
|
-
/**
|
|
6583
|
-
* Resource configuration details
|
|
6584
|
-
* @public
|
|
6585
|
-
*/
|
|
6586
|
-
ResourceSpecification?: ReservationResourceSpecification;
|
|
6587
|
-
/**
|
|
6588
|
-
* Reservation UTC start date and time in ISO-8601 format, e.g. '2018-03-01T00:00:00'
|
|
6589
|
-
* @public
|
|
6590
|
-
*/
|
|
6591
|
-
Start?: string;
|
|
6592
|
-
/**
|
|
6593
|
-
* Current state of reservation, e.g. 'ACTIVE'
|
|
6594
|
-
* @public
|
|
6595
|
-
*/
|
|
6596
|
-
State?: ReservationState;
|
|
6597
|
-
/**
|
|
6598
|
-
* A collection of key-value pairs
|
|
6599
|
-
* @public
|
|
6600
|
-
*/
|
|
6601
|
-
Tags?: Record<string, string>;
|
|
6602
|
-
/**
|
|
6603
|
-
* Recurring usage charge for each reserved resource, e.g. '157.0'
|
|
6604
|
-
* @public
|
|
6605
|
-
*/
|
|
6606
|
-
UsagePrice?: number;
|
|
6607
|
-
}
|
|
6608
|
-
/**
|
|
6609
|
-
* Placeholder documentation for DescribeScheduleRequest
|
|
6610
|
-
* @public
|
|
6611
|
-
*/
|
|
6612
|
-
export interface DescribeScheduleRequest {
|
|
6613
|
-
/**
|
|
6614
|
-
* Id of the channel whose schedule is being updated.
|
|
6615
|
-
* @public
|
|
6616
|
-
*/
|
|
6617
|
-
ChannelId: string | undefined;
|
|
6618
|
-
/**
|
|
6619
|
-
* Placeholder documentation for MaxResults
|
|
6620
|
-
* @public
|
|
6621
|
-
*/
|
|
6622
|
-
MaxResults?: number;
|
|
6623
|
-
/**
|
|
6624
|
-
* Placeholder documentation for __string
|
|
6625
|
-
* @public
|
|
6626
|
-
*/
|
|
6627
|
-
NextToken?: string;
|
|
6628
|
-
}
|
|
6629
|
-
/**
|
|
6630
|
-
* Placeholder documentation for DescribeScheduleResponse
|
|
6631
|
-
* @public
|
|
6632
|
-
*/
|
|
6633
|
-
export interface DescribeScheduleResponse {
|
|
6634
|
-
/**
|
|
6635
|
-
* The next token; for use in pagination.
|
|
6636
|
-
* @public
|
|
6637
|
-
*/
|
|
6638
|
-
NextToken?: string;
|
|
6639
|
-
/**
|
|
6640
|
-
* The list of actions in the schedule.
|
|
6641
|
-
* @public
|
|
6642
|
-
*/
|
|
6643
|
-
ScheduleActions?: ScheduleAction[];
|
|
6644
|
-
}
|
|
6645
6538
|
/**
|
|
6646
6539
|
* @internal
|
|
6647
6540
|
*/
|