@cdklabs/cdk-ecs-codedeploy 0.0.11 → 0.0.13

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 (49) hide show
  1. package/.jsii +3 -3
  2. package/lib/ecs-appspec/index.js +1 -1
  3. package/lib/ecs-deployment/index.js +1 -1
  4. package/node_modules/aws-sdk/CHANGELOG.md +20 -1
  5. package/node_modules/aws-sdk/README.md +1 -1
  6. package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +3 -1
  7. package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +6 -0
  8. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +90 -83
  9. package/node_modules/aws-sdk/apis/ec2-2016-11-15.paginators.json +3 -0
  10. package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +178 -159
  11. package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.examples.json +5 -0
  12. package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.min.json +49 -0
  13. package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.paginators.json +4 -0
  14. package/node_modules/aws-sdk/apis/kinesisvideo-2017-09-30.min.json +96 -12
  15. package/node_modules/aws-sdk/apis/kinesisvideo-2017-09-30.paginators.json +6 -0
  16. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +2 -1
  17. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +247 -201
  18. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  19. package/node_modules/aws-sdk/apis/nimble-2020-08-01.min.json +283 -140
  20. package/node_modules/aws-sdk/apis/nimble-2020-08-01.paginators.json +5 -0
  21. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +3 -0
  22. package/node_modules/aws-sdk/apis/route53domains-2014-05-15.min.json +159 -91
  23. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +646 -556
  24. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +6 -0
  25. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  26. package/node_modules/aws-sdk/clients/all.js +2 -1
  27. package/node_modules/aws-sdk/clients/athena.d.ts +4 -4
  28. package/node_modules/aws-sdk/clients/batch.d.ts +13 -5
  29. package/node_modules/aws-sdk/clients/ec2.d.ts +52 -38
  30. package/node_modules/aws-sdk/clients/ecs.d.ts +19 -1
  31. package/node_modules/aws-sdk/clients/kinesisvideo.d.ts +109 -5
  32. package/node_modules/aws-sdk/clients/kinesisvideowebrtcstorage.d.ts +66 -0
  33. package/node_modules/aws-sdk/clients/kinesisvideowebrtcstorage.js +18 -0
  34. package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +4 -0
  35. package/node_modules/aws-sdk/clients/medialive.d.ts +47 -4
  36. package/node_modules/aws-sdk/clients/nimble.d.ts +319 -123
  37. package/node_modules/aws-sdk/clients/rds.d.ts +5 -1
  38. package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +6 -6
  39. package/node_modules/aws-sdk/clients/route53domains.d.ts +227 -37
  40. package/node_modules/aws-sdk/clients/sagemaker.d.ts +202 -21
  41. package/node_modules/aws-sdk/clients/transcribeservice.d.ts +1 -1
  42. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  43. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +56 -19
  44. package/node_modules/aws-sdk/dist/aws-sdk.js +545 -349
  45. package/node_modules/aws-sdk/dist/aws-sdk.min.js +71 -71
  46. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  47. package/node_modules/aws-sdk/lib/core.js +1 -1
  48. package/node_modules/aws-sdk/package.json +1 -1
  49. package/package.json +5 -5
@@ -59,6 +59,22 @@ declare class KinesisVideo extends Service {
59
59
  * Gets the ImageGenerationConfiguration for a given Kinesis video stream.
60
60
  */
61
61
  describeImageGenerationConfiguration(callback?: (err: AWSError, data: KinesisVideo.Types.DescribeImageGenerationConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeImageGenerationConfigurationOutput, AWSError>;
62
+ /**
63
+ * Returns the most current information about the stream. Either streamName or streamARN should be provided in the input. Returns the most current information about the stream. The streamName or streamARN should be provided in the input.
64
+ */
65
+ describeMappedResourceConfiguration(params: KinesisVideo.Types.DescribeMappedResourceConfigurationInput, callback?: (err: AWSError, data: KinesisVideo.Types.DescribeMappedResourceConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeMappedResourceConfigurationOutput, AWSError>;
66
+ /**
67
+ * Returns the most current information about the stream. Either streamName or streamARN should be provided in the input. Returns the most current information about the stream. The streamName or streamARN should be provided in the input.
68
+ */
69
+ describeMappedResourceConfiguration(callback?: (err: AWSError, data: KinesisVideo.Types.DescribeMappedResourceConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeMappedResourceConfigurationOutput, AWSError>;
70
+ /**
71
+ * Returns the most current information about the channel. Specify the ChannelName or ChannelARN in the input.
72
+ */
73
+ describeMediaStorageConfiguration(params: KinesisVideo.Types.DescribeMediaStorageConfigurationInput, callback?: (err: AWSError, data: KinesisVideo.Types.DescribeMediaStorageConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeMediaStorageConfigurationOutput, AWSError>;
74
+ /**
75
+ * Returns the most current information about the channel. Specify the ChannelName or ChannelARN in the input.
76
+ */
77
+ describeMediaStorageConfiguration(callback?: (err: AWSError, data: KinesisVideo.Types.DescribeMediaStorageConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeMediaStorageConfigurationOutput, AWSError>;
62
78
  /**
63
79
  * Gets the NotificationConfiguration for a given Kinesis video stream.
64
80
  */
@@ -132,11 +148,11 @@ declare class KinesisVideo extends Service {
132
148
  */
133
149
  listTagsForStream(callback?: (err: AWSError, data: KinesisVideo.Types.ListTagsForStreamOutput) => void): Request<KinesisVideo.Types.ListTagsForStreamOutput, AWSError>;
134
150
  /**
135
- * An asynchronous API that updates a stream’s existing edge configuration. If this API is invoked for the first time, a new edge configuration will be created for the stream, and the sync status will be set to SYNCING. The Kinesis Video Stream will sync the stream’s edge configuration with the Edge Agent IoT Greengrass component that runs on an IoT Hub Device setup at your premise. The time to sync can vary and depends on the connectivity of the Hub Device. The SyncStatus will be updated as the edge configuration is acknowledged, and synced with the Edge Agent. You will have to wait for the sync status to reach a terminal state such as: IN_SYNC and SYNC_FAILED, before using this API again. If you invoke this API during the syncing process, a ResourceInUseException will be thrown. The connectivity of the stream's edge configuration and the Edge Agent will be retried for 15 minutes. After 15 minutes, the status will transition into the SYNC_FAILED state.
151
+ * An asynchronous API that updates a stream’s existing edge configuration. The Kinesis Video Stream will sync the stream’s edge configuration with the Edge Agent IoT Greengrass component that runs on an IoT Hub Device, setup at your premise. The time to sync can vary and depends on the connectivity of the Hub Device. The SyncStatus will be updated as the edge configuration is acknowledged, and synced with the Edge Agent. If this API is invoked for the first time, a new edge configuration will be created for the stream, and the sync status will be set to SYNCING. You will have to wait for the sync status to reach a terminal state such as: IN_SYNC, or SYNC_FAILED, before using this API again. If you invoke this API during the syncing process, a ResourceInUseException will be thrown. The connectivity of the streams edge configuration and the Edge Agent will be retried for 15 minutes. After 15 minutes, the status will transition into the SYNC_FAILED state.
136
152
  */
137
153
  startEdgeConfigurationUpdate(params: KinesisVideo.Types.StartEdgeConfigurationUpdateInput, callback?: (err: AWSError, data: KinesisVideo.Types.StartEdgeConfigurationUpdateOutput) => void): Request<KinesisVideo.Types.StartEdgeConfigurationUpdateOutput, AWSError>;
138
154
  /**
139
- * An asynchronous API that updates a stream’s existing edge configuration. If this API is invoked for the first time, a new edge configuration will be created for the stream, and the sync status will be set to SYNCING. The Kinesis Video Stream will sync the stream’s edge configuration with the Edge Agent IoT Greengrass component that runs on an IoT Hub Device setup at your premise. The time to sync can vary and depends on the connectivity of the Hub Device. The SyncStatus will be updated as the edge configuration is acknowledged, and synced with the Edge Agent. You will have to wait for the sync status to reach a terminal state such as: IN_SYNC and SYNC_FAILED, before using this API again. If you invoke this API during the syncing process, a ResourceInUseException will be thrown. The connectivity of the stream's edge configuration and the Edge Agent will be retried for 15 minutes. After 15 minutes, the status will transition into the SYNC_FAILED state.
155
+ * An asynchronous API that updates a stream’s existing edge configuration. The Kinesis Video Stream will sync the stream’s edge configuration with the Edge Agent IoT Greengrass component that runs on an IoT Hub Device, setup at your premise. The time to sync can vary and depends on the connectivity of the Hub Device. The SyncStatus will be updated as the edge configuration is acknowledged, and synced with the Edge Agent. If this API is invoked for the first time, a new edge configuration will be created for the stream, and the sync status will be set to SYNCING. You will have to wait for the sync status to reach a terminal state such as: IN_SYNC, or SYNC_FAILED, before using this API again. If you invoke this API during the syncing process, a ResourceInUseException will be thrown. The connectivity of the streams edge configuration and the Edge Agent will be retried for 15 minutes. After 15 minutes, the status will transition into the SYNC_FAILED state.
140
156
  */
141
157
  startEdgeConfigurationUpdate(callback?: (err: AWSError, data: KinesisVideo.Types.StartEdgeConfigurationUpdateOutput) => void): Request<KinesisVideo.Types.StartEdgeConfigurationUpdateOutput, AWSError>;
142
158
  /**
@@ -187,6 +203,14 @@ declare class KinesisVideo extends Service {
187
203
  * Updates the StreamInfo and ImageProcessingConfiguration fields.
188
204
  */
189
205
  updateImageGenerationConfiguration(callback?: (err: AWSError, data: KinesisVideo.Types.UpdateImageGenerationConfigurationOutput) => void): Request<KinesisVideo.Types.UpdateImageGenerationConfigurationOutput, AWSError>;
206
+ /**
207
+ * Associates a SignalingChannel to a stream to store the media. There are two signaling modes that can specified : If the StorageStatus is disabled, no data will be stored, and the StreamARN parameter will not be needed. If the StorageStatus is enabled, the data will be stored in the StreamARN provided.
208
+ */
209
+ updateMediaStorageConfiguration(params: KinesisVideo.Types.UpdateMediaStorageConfigurationInput, callback?: (err: AWSError, data: KinesisVideo.Types.UpdateMediaStorageConfigurationOutput) => void): Request<KinesisVideo.Types.UpdateMediaStorageConfigurationOutput, AWSError>;
210
+ /**
211
+ * Associates a SignalingChannel to a stream to store the media. There are two signaling modes that can specified : If the StorageStatus is disabled, no data will be stored, and the StreamARN parameter will not be needed. If the StorageStatus is enabled, the data will be stored in the StreamARN provided.
212
+ */
213
+ updateMediaStorageConfiguration(callback?: (err: AWSError, data: KinesisVideo.Types.UpdateMediaStorageConfigurationOutput) => void): Request<KinesisVideo.Types.UpdateMediaStorageConfigurationOutput, AWSError>;
190
214
  /**
191
215
  * Updates the notification information for a stream.
192
216
  */
@@ -256,7 +280,7 @@ declare namespace KinesisVideo {
256
280
  */
257
281
  ComparisonValue?: ChannelName;
258
282
  }
259
- export type ChannelProtocol = "WSS"|"HTTPS"|string;
283
+ export type ChannelProtocol = "WSS"|"HTTPS"|"WEBRTC"|string;
260
284
  export type ChannelRole = "MASTER"|"VIEWER"|string;
261
285
  export type ChannelType = "SINGLE_MASTER"|"FULL_MESH"|string;
262
286
  export type ComparisonOperator = "BEGINS_WITH"|string;
@@ -415,6 +439,50 @@ declare namespace KinesisVideo {
415
439
  */
416
440
  ImageGenerationConfiguration?: ImageGenerationConfiguration;
417
441
  }
442
+ export interface DescribeMappedResourceConfigurationInput {
443
+ /**
444
+ * The name of the stream.
445
+ */
446
+ StreamName?: StreamName;
447
+ /**
448
+ * The Amazon Resource Name (ARN) of the stream.
449
+ */
450
+ StreamARN?: ResourceARN;
451
+ /**
452
+ * The maximum number of results to return in the response.
453
+ */
454
+ MaxResults?: MappedResourceConfigurationListLimit;
455
+ /**
456
+ * The token to provide in your next request, to get another batch of results.
457
+ */
458
+ NextToken?: NextToken;
459
+ }
460
+ export interface DescribeMappedResourceConfigurationOutput {
461
+ /**
462
+ * A structure that encapsulates, or contains, the media storage configuration properties.
463
+ */
464
+ MappedResourceConfigurationList?: MappedResourceConfigurationList;
465
+ /**
466
+ * The token that was used in the NextTokenrequest to fetch the next set of results.
467
+ */
468
+ NextToken?: NextToken;
469
+ }
470
+ export interface DescribeMediaStorageConfigurationInput {
471
+ /**
472
+ * The name of the channel.
473
+ */
474
+ ChannelName?: ChannelName;
475
+ /**
476
+ * The Amazon Resource Name (ARN) of the channel.
477
+ */
478
+ ChannelARN?: ResourceARN;
479
+ }
480
+ export interface DescribeMediaStorageConfigurationOutput {
481
+ /**
482
+ * A structure that encapsulates, or contains, the media storage configuration properties.
483
+ */
484
+ MediaStorageConfiguration?: MediaStorageConfiguration;
485
+ }
418
486
  export interface DescribeNotificationConfigurationInput {
419
487
  /**
420
488
  * The name of the stream from which to retrieve the notification configuration. You must specify either the StreamName or the StreamARN.
@@ -477,7 +545,7 @@ declare namespace KinesisVideo {
477
545
  */
478
546
  RecorderConfig: RecorderConfig;
479
547
  /**
480
- * The uploader configuration contains the ScheduleExpression details that are used, to schedule upload jobs for the recorded media files from the Edge Agent, to a Kinesis Video Stream.
548
+ * The uploader configuration contains the ScheduleExpression details that are used to schedule upload jobs for the recorded media files from the Edge Agent to a Kinesis Video Stream.
481
549
  */
482
550
  UploaderConfig?: UploaderConfig;
483
551
  /**
@@ -679,6 +747,18 @@ declare namespace KinesisVideo {
679
747
  */
680
748
  StrategyOnFullSize?: StrategyOnFullSize;
681
749
  }
750
+ export type MappedResourceConfigurationList = MappedResourceConfigurationListItem[];
751
+ export interface MappedResourceConfigurationListItem {
752
+ /**
753
+ * The type of the associated resource for the kinesis video stream.
754
+ */
755
+ Type?: Type;
756
+ /**
757
+ * The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, associated with the stream.
758
+ */
759
+ ARN?: ResourceARN;
760
+ }
761
+ export type MappedResourceConfigurationListLimit = number;
682
762
  export type MaxLocalMediaSizeInMB = number;
683
763
  export interface MediaSourceConfig {
684
764
  /**
@@ -686,10 +766,21 @@ declare namespace KinesisVideo {
686
766
  */
687
767
  MediaUriSecretArn: MediaUriSecretArn;
688
768
  /**
689
- * The Uniform Resource Identifier (Uri) type. The FILE_URI value can be used to stream local media files.
769
+ * The Uniform Resource Identifier (URI) type. The FILE_URI value can be used to stream local media files. Preview only supports the RTSP_URI media source URI format .
690
770
  */
691
771
  MediaUriType: MediaUriType;
692
772
  }
773
+ export interface MediaStorageConfiguration {
774
+ /**
775
+ * The Amazon Resource Name (ARN) of the stream
776
+ */
777
+ StreamARN?: ResourceARN;
778
+ /**
779
+ * The status of the media storage configuration.
780
+ */
781
+ Status: MediaStorageConfigurationStatus;
782
+ }
783
+ export type MediaStorageConfigurationStatus = "ENABLED"|"DISABLED"|string;
693
784
  export type MediaType = string;
694
785
  export type MediaUriSecretArn = string;
695
786
  export type MediaUriType = "RTSP_URI"|"FILE_URI"|string;
@@ -904,6 +995,7 @@ declare namespace KinesisVideo {
904
995
  }
905
996
  export type TagValue = string;
906
997
  export type Timestamp = Date;
998
+ export type Type = string;
907
999
  export interface UntagResourceInput {
908
1000
  /**
909
1001
  * The Amazon Resource Name (ARN) of the signaling channel from which you want to remove tags.
@@ -973,6 +1065,18 @@ declare namespace KinesisVideo {
973
1065
  }
974
1066
  export interface UpdateImageGenerationConfigurationOutput {
975
1067
  }
1068
+ export interface UpdateMediaStorageConfigurationInput {
1069
+ /**
1070
+ * The Amazon Resource Name (ARN) of the channel.
1071
+ */
1072
+ ChannelARN: ResourceARN;
1073
+ /**
1074
+ * A structure that encapsulates, or contains, the media storage configuration properties.
1075
+ */
1076
+ MediaStorageConfiguration: MediaStorageConfiguration;
1077
+ }
1078
+ export interface UpdateMediaStorageConfigurationOutput {
1079
+ }
976
1080
  export interface UpdateNotificationConfigurationInput {
977
1081
  /**
978
1082
  * The name of the stream from which to update the notification configuration. You must specify either the StreamName or the StreamARN.
@@ -0,0 +1,66 @@
1
+ import {Request} from '../lib/request';
2
+ import {Response} from '../lib/response';
3
+ import {AWSError} from '../lib/error';
4
+ import {Service} from '../lib/service';
5
+ import {ServiceConfigurationOptions} from '../lib/service';
6
+ import {ConfigBase as Config} from '../lib/config-base';
7
+ interface Blob {}
8
+ declare class KinesisVideoWebRTCStorage extends Service {
9
+ /**
10
+ * Constructs a service object. This object has one method for each API operation.
11
+ */
12
+ constructor(options?: KinesisVideoWebRTCStorage.Types.ClientConfiguration)
13
+ config: Config & KinesisVideoWebRTCStorage.Types.ClientConfiguration;
14
+ /**
15
+ * Join the ongoing one way-video and/or multi-way audio WebRTC session as a video producing device for an input channel. If there’s no existing session for the channel, a new streaming session needs to be created, and the Amazon Resource Name (ARN) of the signaling channel must be provided. Currently for the SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream, while viewers can only ingest audio. Both a video producing device and viewers can join the session first, and wait for other participants. While participants are having peer to peer conversations through webRTC, the ingested media session will be stored into the Kinesis Video Stream. Multiple viewers are able to playback real-time media. Customers can also use existing Kinesis Video Streams features like HLS or DASH playback, Image generation, and more with ingested WebRTC media. Assume that only one video producing device client can be associated with a session for the channel. If more than one client joins the session of a specific channel as a video producing device, the most recent client request takes precedence.
16
+ */
17
+ joinStorageSession(params: KinesisVideoWebRTCStorage.Types.JoinStorageSessionInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
18
+ /**
19
+ * Join the ongoing one way-video and/or multi-way audio WebRTC session as a video producing device for an input channel. If there’s no existing session for the channel, a new streaming session needs to be created, and the Amazon Resource Name (ARN) of the signaling channel must be provided. Currently for the SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream, while viewers can only ingest audio. Both a video producing device and viewers can join the session first, and wait for other participants. While participants are having peer to peer conversations through webRTC, the ingested media session will be stored into the Kinesis Video Stream. Multiple viewers are able to playback real-time media. Customers can also use existing Kinesis Video Streams features like HLS or DASH playback, Image generation, and more with ingested WebRTC media. Assume that only one video producing device client can be associated with a session for the channel. If more than one client joins the session of a specific channel as a video producing device, the most recent client request takes precedence.
20
+ */
21
+ joinStorageSession(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
22
+ /**
23
+ * Join the ongoing one way-video and/or multi-way audio WebRTC session as a viewer for an input channel. If there’s no existing session for the channel, create a new streaming session and provide the Amazon Resource Name (ARN) of the signaling channel (channelArn) and client id (clientId). Currently for SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream, while viewers can only ingest audio. Both a video producing device and viewers can join a session first and wait for other participants. While participants are having peer to peer conversations through webRTC, the ingested media session will be stored into the Kinesis Video Stream. Multiple viewers are able to playback real-time media. Customers can also use existing Kinesis Video Streams features like HLS or DASH playback, Image generation, and more with ingested WebRTC media. If there’s an existing session with the same clientId that's found in the join session request, the new request takes precedence.
24
+ */
25
+ joinStorageSessionAsViewer(params: KinesisVideoWebRTCStorage.Types.JoinStorageSessionAsViewerInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
26
+ /**
27
+ * Join the ongoing one way-video and/or multi-way audio WebRTC session as a viewer for an input channel. If there’s no existing session for the channel, create a new streaming session and provide the Amazon Resource Name (ARN) of the signaling channel (channelArn) and client id (clientId). Currently for SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream, while viewers can only ingest audio. Both a video producing device and viewers can join a session first and wait for other participants. While participants are having peer to peer conversations through webRTC, the ingested media session will be stored into the Kinesis Video Stream. Multiple viewers are able to playback real-time media. Customers can also use existing Kinesis Video Streams features like HLS or DASH playback, Image generation, and more with ingested WebRTC media. If there’s an existing session with the same clientId that's found in the join session request, the new request takes precedence.
28
+ */
29
+ joinStorageSessionAsViewer(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
30
+ }
31
+ declare namespace KinesisVideoWebRTCStorage {
32
+ export type ChannelArn = string;
33
+ export type ClientId = string;
34
+ export interface JoinStorageSessionAsViewerInput {
35
+ /**
36
+ * The Amazon Resource Name (ARN) of the signaling channel.
37
+ */
38
+ channelArn: ChannelArn;
39
+ /**
40
+ * The unique identifier for the sender client.
41
+ */
42
+ clientId: ClientId;
43
+ }
44
+ export interface JoinStorageSessionInput {
45
+ /**
46
+ * The Amazon Resource Name (ARN) of the signaling channel.
47
+ */
48
+ channelArn: ChannelArn;
49
+ }
50
+ /**
51
+ * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
52
+ */
53
+ export type apiVersion = "2018-05-10"|"latest"|string;
54
+ export interface ClientApiVersions {
55
+ /**
56
+ * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
57
+ */
58
+ apiVersion?: apiVersion;
59
+ }
60
+ export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
61
+ /**
62
+ * Contains interfaces for use with the KinesisVideoWebRTCStorage client.
63
+ */
64
+ export import Types = KinesisVideoWebRTCStorage;
65
+ }
66
+ export = KinesisVideoWebRTCStorage;
@@ -0,0 +1,18 @@
1
+ require('../lib/node_loader');
2
+ var AWS = require('../lib/core');
3
+ var Service = AWS.Service;
4
+ var apiLoader = AWS.apiLoader;
5
+
6
+ apiLoader.services['kinesisvideowebrtcstorage'] = {};
7
+ AWS.KinesisVideoWebRTCStorage = Service.defineService('kinesisvideowebrtcstorage', ['2018-05-10']);
8
+ Object.defineProperty(apiLoader.services['kinesisvideowebrtcstorage'], '2018-05-10', {
9
+ get: function get() {
10
+ var model = require('../apis/kinesis-video-webrtc-storage-2018-05-10.min.json');
11
+ model.paginators = require('../apis/kinesis-video-webrtc-storage-2018-05-10.paginators.json').pagination;
12
+ return model;
13
+ },
14
+ enumerable: true,
15
+ configurable: true
16
+ });
17
+
18
+ module.exports = AWS.KinesisVideoWebRTCStorage;
@@ -1481,6 +1481,10 @@ declare namespace LookoutEquipment {
1481
1481
  * The name of the ML model used by the inference scheduler to be listed.
1482
1482
  */
1483
1483
  ModelName?: ModelName;
1484
+ /**
1485
+ * Specifies the current status of the inference schedulers to list.
1486
+ */
1487
+ Status?: InferenceSchedulerStatus;
1484
1488
  }
1485
1489
  export interface ListInferenceSchedulersResponse {
1486
1490
  /**
@@ -788,6 +788,12 @@ Note that this field and audioType are both ignored if inputType is broadcasterM
788
788
  }
789
789
  export type AudioDescriptionAudioTypeControl = "FOLLOW_INPUT"|"USE_CONFIGURED"|string;
790
790
  export type AudioDescriptionLanguageCodeControl = "FOLLOW_INPUT"|"USE_CONFIGURED"|string;
791
+ export interface AudioDolbyEDecode {
792
+ /**
793
+ * Applies only to Dolby E. Enter the program ID (according to the metadata in the audio) of the Dolby E program to extract from the specified track. One program extracted per audio selector. To select multiple programs, create multiple selectors with the same Track and different Program numbers. “All channels” means to ignore the program IDs and include all the channels in this selector; useful if metadata is known to be incorrect.
794
+ */
795
+ ProgramSelection: DolbyEProgramSelection;
796
+ }
791
797
  export interface AudioHlsRenditionSelection {
792
798
  /**
793
799
  * Specifies the GROUP-ID in the #EXT-X-MEDIA tag of the target HLS audio rendition.
@@ -902,6 +908,10 @@ Alternate rendition that the client will not try to play back by default. Repres
902
908
  * Selects one or more unique audio tracks from within a source.
903
909
  */
904
910
  Tracks: __listOfAudioTrack;
911
+ /**
912
+ * Configure decoding options for Dolby E streams - these should be Dolby E frames carried in PCM streams tagged with SMPTE-337
913
+ */
914
+ DolbyEDecode?: AudioDolbyEDecode;
905
915
  }
906
916
  export type AudioType = "CLEAN_EFFECTS"|"HEARING_IMPAIRED"|"UNDEFINED"|"VISUAL_IMPAIRED_COMMENTARY"|string;
907
917
  export interface AudioWatermarkSettings {
@@ -2449,6 +2459,7 @@ during input switch actions. Presently, this functionality only works with MP4_F
2449
2459
  }
2450
2460
  export type DeviceSettingsSyncState = "SYNCED"|"SYNCING"|string;
2451
2461
  export type DeviceUpdateStatus = "UP_TO_DATE"|"NOT_UP_TO_DATE"|"UPDATING"|string;
2462
+ export type DolbyEProgramSelection = "ALL_CHANNELS"|"PROGRAM_1"|"PROGRAM_2"|"PROGRAM_3"|"PROGRAM_4"|"PROGRAM_5"|"PROGRAM_6"|"PROGRAM_7"|"PROGRAM_8"|string;
2452
2463
  export interface DolbyVision81Settings {
2453
2464
  }
2454
2465
  export interface DvbNitSettings {
@@ -2814,7 +2825,7 @@ You specify only the font family. All other style information (color, bold, posi
2814
2825
  */
2815
2826
  AdAvailOffset?: __integerMinNegative1000Max1000;
2816
2827
  /**
2817
- * Password if credentials are required to access the POIS endpoint. This is a reference to an AWS parameter store name from which the password can be retrieved. AWS Parameter store format: "ssm://"
2828
+ * Documentation update needed
2818
2829
  */
2819
2830
  PasswordParam?: __string;
2820
2831
  /**
@@ -2822,7 +2833,7 @@ You specify only the font family. All other style information (color, bold, posi
2822
2833
  */
2823
2834
  PoisEndpoint: __stringMax2048;
2824
2835
  /**
2825
- * Username if credentials are required to access the POIS endpoint. This can be either a plaintext username, or a reference to an AWS parameter store name from which the username can be retrieved. AWS Parameter store format: "ssm://"
2836
+ * Documentation update needed
2826
2837
  */
2827
2838
  Username?: __string;
2828
2839
  /**
@@ -2944,6 +2955,10 @@ If you disable the feature on an existing schedule, make sure that you first del
2944
2955
  * Unit for the frame capture interval.
2945
2956
  */
2946
2957
  CaptureIntervalUnits?: FrameCaptureIntervalUnit;
2958
+ /**
2959
+ * Timecode burn-in settings
2960
+ */
2961
+ TimecodeBurninSettings?: TimecodeBurninSettings;
2947
2962
  }
2948
2963
  export interface GlobalConfiguration {
2949
2964
  /**
@@ -3198,6 +3213,10 @@ This field is optional; when no value is specified the encoder will choose the n
3198
3213
  - 'picTimingSei': Pass through picture timing SEI messages from the source specified in Timecode Config
3199
3214
  */
3200
3215
  TimecodeInsertion?: H264TimecodeInsertionBehavior;
3216
+ /**
3217
+ * Timecode burn-in settings
3218
+ */
3219
+ TimecodeBurninSettings?: TimecodeBurninSettings;
3201
3220
  }
3202
3221
  export type H264SpatialAq = "DISABLED"|"ENABLED"|string;
3203
3222
  export type H264SubGopLength = "DYNAMIC"|"FIXED"|string;
@@ -3360,6 +3379,10 @@ This field is optional; when no value is specified the encoder will choose the n
3360
3379
  - 'picTimingSei': Pass through picture timing SEI messages from the source specified in Timecode Config
3361
3380
  */
3362
3381
  TimecodeInsertion?: H265TimecodeInsertionBehavior;
3382
+ /**
3383
+ * Timecode burn-in settings
3384
+ */
3385
+ TimecodeBurninSettings?: TimecodeBurninSettings;
3363
3386
  }
3364
3387
  export type H265Tier = "HIGH"|"MAIN"|string;
3365
3388
  export type H265TimecodeInsertionBehavior = "DISABLED"|"PIC_TIMING_SEI"|string;
@@ -3573,7 +3596,7 @@ If this "keep segments" number is too low, the following might happen: the playe
3573
3596
  */
3574
3597
  ManifestDurationFormat?: HlsManifestDurationFormat;
3575
3598
  /**
3576
- * When set, minimumSegmentLength is enforced by looking ahead and back within the specified range for a nearby avail and extending the segment size if needed.
3599
+ * Minimum length of MPEG-2 Transport Stream segments in seconds. When set, minimum segment length is enforced by looking ahead and back within the specified range for a nearby avail and extending the segment size if needed.
3577
3600
  */
3578
3601
  MinSegmentLength?: __integerMin0;
3579
3602
  /**
@@ -3615,7 +3638,7 @@ For an HLS output group with MediaPackage as the destination, the DISABLED behav
3615
3638
  */
3616
3639
  RedundantManifest?: HlsRedundantManifest;
3617
3640
  /**
3618
- * Length of MPEG-2 Transport Stream segments to create (in seconds). Note that segments will end on the next keyframe after this number of seconds, so actual segment length may be longer.
3641
+ * Length of MPEG-2 Transport Stream segments to create in seconds. Note that segments will end on the next keyframe after this duration, so actual segment length may be longer.
3619
3642
  */
3620
3643
  SegmentLength?: __integerMin1;
3621
3644
  /**
@@ -5057,6 +5080,10 @@ DISABLED: do not include timecodes.
5057
5080
  GOP_TIMECODE: Include timecode metadata in the GOP header.
5058
5081
  */
5059
5082
  TimecodeInsertion?: Mpeg2TimecodeInsertionBehavior;
5083
+ /**
5084
+ * Timecode burn-in settings
5085
+ */
5086
+ TimecodeBurninSettings?: TimecodeBurninSettings;
5060
5087
  }
5061
5088
  export type Mpeg2SubGopLength = "DYNAMIC"|"FIXED"|string;
5062
5089
  export type Mpeg2TimecodeInsertionBehavior = "DISABLED"|"GOP_TIMECODE"|string;
@@ -6552,6 +6579,22 @@ one destination per packager.
6552
6579
  Strength?: TemporalFilterStrength;
6553
6580
  }
6554
6581
  export type TemporalFilterStrength = "AUTO"|"STRENGTH_1"|"STRENGTH_2"|"STRENGTH_3"|"STRENGTH_4"|"STRENGTH_5"|"STRENGTH_6"|"STRENGTH_7"|"STRENGTH_8"|"STRENGTH_9"|"STRENGTH_10"|"STRENGTH_11"|"STRENGTH_12"|"STRENGTH_13"|"STRENGTH_14"|"STRENGTH_15"|"STRENGTH_16"|string;
6582
+ export type TimecodeBurninFontSize = "EXTRA_SMALL_10"|"LARGE_48"|"MEDIUM_32"|"SMALL_16"|string;
6583
+ export type TimecodeBurninPosition = "BOTTOM_CENTER"|"BOTTOM_LEFT"|"BOTTOM_RIGHT"|"MIDDLE_CENTER"|"MIDDLE_LEFT"|"MIDDLE_RIGHT"|"TOP_CENTER"|"TOP_LEFT"|"TOP_RIGHT"|string;
6584
+ export interface TimecodeBurninSettings {
6585
+ /**
6586
+ * Choose a timecode burn-in font size
6587
+ */
6588
+ FontSize: TimecodeBurninFontSize;
6589
+ /**
6590
+ * Choose a timecode burn-in output position
6591
+ */
6592
+ Position: TimecodeBurninPosition;
6593
+ /**
6594
+ * Create a timecode burn-in prefix (optional)
6595
+ */
6596
+ Prefix?: __stringMax255;
6597
+ }
6555
6598
  export interface TimecodeConfig {
6556
6599
  /**
6557
6600
  * Identifies the source for the timecode that will be associated with the events outputs.