cdk-lambda-subminute 2.0.256 → 2.0.258
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +16 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appconfig-2019-10-09.min.json +69 -60
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +119 -97
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +7186 -0
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +130 -0
- package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +53 -30
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +219 -169
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +58 -44
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.min.json +250 -83
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1080 -1063
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +801 -151
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.paginators.json +15 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/appconfig.d.ts +31 -4
- package/node_modules/aws-sdk/clients/connect.d.ts +58 -21
- package/node_modules/aws-sdk/clients/datazone.d.ts +8000 -0
- package/node_modules/aws-sdk/clients/datazone.js +18 -0
- package/node_modules/aws-sdk/clients/location.d.ts +29 -2
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +62 -9
- package/node_modules/aws-sdk/clients/mediatailor.d.ts +11 -0
- package/node_modules/aws-sdk/clients/mgn.d.ts +187 -0
- package/node_modules/aws-sdk/clients/oam.d.ts +3 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +25 -2
- package/node_modules/aws-sdk/clients/wellarchitected.d.ts +586 -16
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +8 -5
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +63 -20
- package/node_modules/aws-sdk/dist/aws-sdk.js +178 -130
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +71 -71
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/has/package.json +1 -4
- package/node_modules/has/src/index.js +5 -2
- package/node_modules/has/test/index.js +6 -0
- package/package.json +3 -3
@@ -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['datazone'] = {};
|
7
|
+
AWS.DataZone = Service.defineService('datazone', ['2018-05-10']);
|
8
|
+
Object.defineProperty(apiLoader.services['datazone'], '2018-05-10', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/datazone-2018-05-10.min.json');
|
11
|
+
model.paginators = require('../apis/datazone-2018-05-10.paginators.json').pagination;
|
12
|
+
return model;
|
13
|
+
},
|
14
|
+
enumerable: true,
|
15
|
+
configurable: true
|
16
|
+
});
|
17
|
+
|
18
|
+
module.exports = AWS.DataZone;
|
@@ -1157,6 +1157,10 @@ declare namespace Location {
|
|
1157
1157
|
* Whether to enable position UPDATE events from this tracker to be sent to EventBridge. You do not need enable this feature to get ENTER and EXIT events for geofences with this tracker. Those events are always sent to EventBridge.
|
1158
1158
|
*/
|
1159
1159
|
EventBridgeEnabled?: Boolean;
|
1160
|
+
/**
|
1161
|
+
* Enables GeospatialQueries for a tracker that uses a Amazon Web Services KMS customer managed key. This parameter is only used if you are using a KMS customer managed key. If you wish to encrypt your data using your own KMS customer managed key, then the Bounding Polygon Queries feature will be disabled by default. This is because by using this feature, a representation of your device positions will not be encrypted using the your KMS managed key. The exact device position, however; is still encrypted using your managed key. You can choose to opt-in to the Bounding Polygon Quseries feature. This is done by setting the KmsKeyEnableGeospatialQueries parameter to true when creating or updating a Tracker.
|
1162
|
+
*/
|
1163
|
+
KmsKeyEnableGeospatialQueries?: Boolean;
|
1160
1164
|
/**
|
1161
1165
|
* A key identifier for an Amazon Web Services KMS customer managed key. Enter a key ID, key ARN, alias name, or alias ARN.
|
1162
1166
|
*/
|
@@ -1273,6 +1277,10 @@ declare namespace Location {
|
|
1273
1277
|
* The optional description for the geofence collection.
|
1274
1278
|
*/
|
1275
1279
|
Description: ResourceDescription;
|
1280
|
+
/**
|
1281
|
+
* The number of geofences in the geofence collection.
|
1282
|
+
*/
|
1283
|
+
GeofenceCount?: DescribeGeofenceCollectionResponseGeofenceCountInteger;
|
1276
1284
|
/**
|
1277
1285
|
* A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource
|
1278
1286
|
*/
|
@@ -1294,6 +1302,7 @@ declare namespace Location {
|
|
1294
1302
|
*/
|
1295
1303
|
UpdateTime: Timestamp;
|
1296
1304
|
}
|
1305
|
+
export type DescribeGeofenceCollectionResponseGeofenceCountInteger = number;
|
1297
1306
|
export interface DescribeKeyRequest {
|
1298
1307
|
/**
|
1299
1308
|
* The name of the API key resource.
|
@@ -1482,6 +1491,10 @@ declare namespace Location {
|
|
1482
1491
|
* Whether UPDATE events from this tracker in EventBridge are enabled. If set to true these events will be sent to EventBridge.
|
1483
1492
|
*/
|
1484
1493
|
EventBridgeEnabled?: Boolean;
|
1494
|
+
/**
|
1495
|
+
* Enables GeospatialQueries for a tracker that uses a Amazon Web Services KMS customer managed key. This parameter is only used if you are using a KMS customer managed key. If you wish to encrypt your data using your own KMS customer managed key, then the Bounding Polygon Queries feature will be disabled by default. This is because by using this feature, a representation of your device positions will not be encrypted using the your KMS managed key. The exact device position, however; is still encrypted using your managed key. You can choose to opt-in to the Bounding Polygon Quseries feature. This is done by setting the KmsKeyEnableGeospatialQueries parameter to true when creating or updating a Tracker.
|
1496
|
+
*/
|
1497
|
+
KmsKeyEnableGeospatialQueries?: Boolean;
|
1485
1498
|
/**
|
1486
1499
|
* A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource.
|
1487
1500
|
*/
|
@@ -1702,7 +1715,7 @@ declare namespace Location {
|
|
1702
1715
|
}
|
1703
1716
|
export interface GetMapGlyphsRequest {
|
1704
1717
|
/**
|
1705
|
-
* A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid
|
1718
|
+
* A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid font stacks for Esri styles: VectorEsriDarkGrayCanvas – Ubuntu Medium Italic | Ubuntu Medium | Ubuntu Italic | Ubuntu Regular | Ubuntu Bold VectorEsriLightGrayCanvas – Ubuntu Italic | Ubuntu Regular | Ubuntu Light | Ubuntu Bold VectorEsriTopographic – Noto Sans Italic | Noto Sans Regular | Noto Sans Bold | Noto Serif Regular | Roboto Condensed Light Italic VectorEsriStreets – Arial Regular | Arial Italic | Arial Bold VectorEsriNavigation – Arial Regular | Arial Italic | Arial Bold Valid font stacks for HERE Technologies styles: VectorHereContrast – Fira GO Regular | Fira GO Bold VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic | Fira GO Map | Fira GO Map Bold | Noto Sans CJK JP Bold | Noto Sans CJK JP Light | Noto Sans CJK JP Regular Valid font stacks for GrabMaps styles: VectorGrabStandardLight, VectorGrabStandardDark – Noto Sans Regular | Noto Sans Medium | Noto Sans Bold Valid font stacks for Open Data styles: VectorOpenDataStandardLight, VectorOpenDataStandardDark, VectorOpenDataVisualizationLight, VectorOpenDataVisualizationDark – Amazon Ember Regular,Noto Sans Regular | Amazon Ember Bold,Noto Sans Bold | Amazon Ember Medium,Noto Sans Medium | Amazon Ember Regular Italic,Noto Sans Italic | Amazon Ember Condensed RC Regular,Noto Sans Regular | Amazon Ember Condensed RC Bold,Noto Sans Bold | Amazon Ember Regular,Noto Sans Regular,Noto Sans Arabic Regular | Amazon Ember Condensed RC Bold,Noto Sans Bold,Noto Sans Arabic Condensed Bold | Amazon Ember Bold,Noto Sans Bold,Noto Sans Arabic Bold | Amazon Ember Regular Italic,Noto Sans Italic,Noto Sans Arabic Regular | Amazon Ember Condensed RC Regular,Noto Sans Regular,Noto Sans Arabic Condensed Regular | Amazon Ember Medium,Noto Sans Medium,Noto Sans Arabic Medium The fonts used by the Open Data map styles are combined fonts that use Amazon Ember for most glyphs but Noto Sans for glyphs unsupported by Amazon Ember.
|
1706
1719
|
*/
|
1707
1720
|
FontStack: String;
|
1708
1721
|
/**
|
@@ -1893,6 +1906,10 @@ declare namespace Location {
|
|
1893
1906
|
export type LinearRing = Position[];
|
1894
1907
|
export type LinearRings = LinearRing[];
|
1895
1908
|
export interface ListDevicePositionsRequest {
|
1909
|
+
/**
|
1910
|
+
* The geomerty used to filter device positions.
|
1911
|
+
*/
|
1912
|
+
FilterGeometry?: TrackingFilterGeometry;
|
1896
1913
|
/**
|
1897
1914
|
* An optional limit for the number of entries returned in a single call. Default value: 100
|
1898
1915
|
*/
|
@@ -1909,7 +1926,7 @@ declare namespace Location {
|
|
1909
1926
|
export type ListDevicePositionsRequestMaxResultsInteger = number;
|
1910
1927
|
export interface ListDevicePositionsResponse {
|
1911
1928
|
/**
|
1912
|
-
* Contains details about each device's last known position.
|
1929
|
+
* Contains details about each device's last known position.
|
1913
1930
|
*/
|
1914
1931
|
Entries: ListDevicePositionsResponseEntryList;
|
1915
1932
|
/**
|
@@ -2821,6 +2838,12 @@ declare namespace Location {
|
|
2821
2838
|
}
|
2822
2839
|
export type Timestamp = Date;
|
2823
2840
|
export type Token = string;
|
2841
|
+
export interface TrackingFilterGeometry {
|
2842
|
+
/**
|
2843
|
+
* The set of arrays which define the polygon. A polygon can have between 4 and 1000 vertices.
|
2844
|
+
*/
|
2845
|
+
Polygon?: LinearRings;
|
2846
|
+
}
|
2824
2847
|
export type TravelMode = "Car"|"Truck"|"Walking"|"Bicycle"|"Motorcycle"|string;
|
2825
2848
|
export interface TruckDimensions {
|
2826
2849
|
/**
|
@@ -3039,6 +3062,10 @@ declare namespace Location {
|
|
3039
3062
|
* Whether to enable position UPDATE events from this tracker to be sent to EventBridge. You do not need enable this feature to get ENTER and EXIT events for geofences with this tracker. Those events are always sent to EventBridge.
|
3040
3063
|
*/
|
3041
3064
|
EventBridgeEnabled?: Boolean;
|
3065
|
+
/**
|
3066
|
+
* Enables GeospatialQueries for a tracker that uses a Amazon Web Services KMS customer managed key. This parameter is only used if you are using a KMS customer managed key.
|
3067
|
+
*/
|
3068
|
+
KmsKeyEnableGeospatialQueries?: Boolean;
|
3042
3069
|
/**
|
3043
3070
|
* Updates the position filtering for the tracker resource. Valid values: TimeBased - Location updates are evaluated against linked geofence collections, but not every location update is stored. If your update frequency is more often than 30 seconds, only one update per 30 seconds is stored for each unique device ID. DistanceBased - If the device has moved less than 30 m (98.4 ft), location updates are ignored. Location updates within this distance are neither evaluated against linked geofence collections, nor stored. This helps control costs by reducing the number of geofence evaluations and historical device positions to paginate through. Distance-based filtering can also reduce the effects of GPS noise when displaying device trajectories on a map. AccuracyBased - If the device has moved less than the measured accuracy, location updates are ignored. For example, if two consecutive updates from a device have a horizontal accuracy of 5 m and 10 m, the second update is ignored if the device has moved less than 15 m. Ignored location updates are neither evaluated against linked geofence collections, nor stored. This helps educe the effects of GPS noise when displaying device trajectories on a map, and can help control costs by reducing the number of geofence evaluations.
|
3044
3071
|
*/
|
@@ -2428,6 +2428,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2428
2428
|
export type H264CodecLevel = "AUTO"|"LEVEL_1"|"LEVEL_1_1"|"LEVEL_1_2"|"LEVEL_1_3"|"LEVEL_2"|"LEVEL_2_1"|"LEVEL_2_2"|"LEVEL_3"|"LEVEL_3_1"|"LEVEL_3_2"|"LEVEL_4"|"LEVEL_4_1"|"LEVEL_4_2"|"LEVEL_5"|"LEVEL_5_1"|"LEVEL_5_2"|string;
|
2429
2429
|
export type H264CodecProfile = "BASELINE"|"HIGH"|"HIGH_10BIT"|"HIGH_422"|"HIGH_422_10BIT"|"MAIN"|string;
|
2430
2430
|
export type H264DynamicSubGop = "ADAPTIVE"|"STATIC"|string;
|
2431
|
+
export type H264EndOfStreamMarkers = "INCLUDE"|"SUPPRESS"|string;
|
2431
2432
|
export type H264EntropyEncoding = "CABAC"|"CAVLC"|string;
|
2432
2433
|
export type H264FieldEncoding = "PAFF"|"FORCE_FIELD"|"MBAFF"|string;
|
2433
2434
|
export type H264FlickerAdaptiveQuantization = "DISABLED"|"ENABLED"|string;
|
@@ -2481,6 +2482,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2481
2482
|
* Specify whether to allow the number of B-frames in your output GOP structure to vary or not depending on your input video content. To improve the subjective video quality of your output that has high-motion content: Leave blank or keep the default value Adaptive. MediaConvert will use fewer B-frames for high-motion video content than low-motion content. The maximum number of B- frames is limited by the value that you choose for B-frames between reference frames. To use the same number B-frames for all types of content: Choose Static.
|
2482
2483
|
*/
|
2483
2484
|
DynamicSubGop?: H264DynamicSubGop;
|
2485
|
+
/**
|
2486
|
+
* Optionally include or suppress markers at the end of your output that signal the end of the video stream. To include end of stream markers: Leave blank or keep the default value, Include. To not include end of stream markers: Choose Suppress. This is useful when your output will be inserted into another stream.
|
2487
|
+
*/
|
2488
|
+
EndOfStreamMarkers?: H264EndOfStreamMarkers;
|
2484
2489
|
/**
|
2485
2490
|
* Entropy encoding mode. Use CABAC (must be in Main or High profile) or CAVLC.
|
2486
2491
|
*/
|
@@ -2637,6 +2642,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2637
2642
|
export type H265CodecLevel = "AUTO"|"LEVEL_1"|"LEVEL_2"|"LEVEL_2_1"|"LEVEL_3"|"LEVEL_3_1"|"LEVEL_4"|"LEVEL_4_1"|"LEVEL_5"|"LEVEL_5_1"|"LEVEL_5_2"|"LEVEL_6"|"LEVEL_6_1"|"LEVEL_6_2"|string;
|
2638
2643
|
export type H265CodecProfile = "MAIN_MAIN"|"MAIN_HIGH"|"MAIN10_MAIN"|"MAIN10_HIGH"|"MAIN_422_8BIT_MAIN"|"MAIN_422_8BIT_HIGH"|"MAIN_422_10BIT_MAIN"|"MAIN_422_10BIT_HIGH"|string;
|
2639
2644
|
export type H265DynamicSubGop = "ADAPTIVE"|"STATIC"|string;
|
2645
|
+
export type H265EndOfStreamMarkers = "INCLUDE"|"SUPPRESS"|string;
|
2640
2646
|
export type H265FlickerAdaptiveQuantization = "DISABLED"|"ENABLED"|string;
|
2641
2647
|
export type H265FramerateControl = "INITIALIZE_FROM_SOURCE"|"SPECIFIED"|string;
|
2642
2648
|
export type H265FramerateConversionAlgorithm = "DUPLICATE_DROP"|"INTERPOLATE"|"FRAMEFORMER"|string;
|
@@ -2692,6 +2698,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
2692
2698
|
* Specify whether to allow the number of B-frames in your output GOP structure to vary or not depending on your input video content. To improve the subjective video quality of your output that has high-motion content: Leave blank or keep the default value Adaptive. MediaConvert will use fewer B-frames for high-motion video content than low-motion content. The maximum number of B- frames is limited by the value that you choose for B-frames between reference frames. To use the same number B-frames for all types of content: Choose Static.
|
2693
2699
|
*/
|
2694
2700
|
DynamicSubGop?: H265DynamicSubGop;
|
2701
|
+
/**
|
2702
|
+
* Optionally include or suppress markers at the end of your output that signal the end of the video stream. To include end of stream markers: Leave blank or keep the default value, Include. To not include end of stream markers: Choose Suppress. This is useful when your output will be inserted into another stream.
|
2703
|
+
*/
|
2704
|
+
EndOfStreamMarkers?: H265EndOfStreamMarkers;
|
2695
2705
|
/**
|
2696
2706
|
* Enable this setting to have the encoder reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. This setting is disabled by default. Related setting: In addition to enabling this setting, you must also set adaptiveQuantization to a value other than Off.
|
2697
2707
|
*/
|
@@ -3328,6 +3338,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3328
3338
|
* When you include Video generator, MediaConvert creates a video input with black frames. Use this setting if you do not have a video input or if you want to add black video frames before, or after, other inputs. You can specify Video generator, or you can specify an Input file, but you cannot specify both. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-generator.html
|
3329
3339
|
*/
|
3330
3340
|
VideoGenerator?: InputVideoGenerator;
|
3341
|
+
/**
|
3342
|
+
* Contains an array of video overlays.
|
3343
|
+
*/
|
3344
|
+
VideoOverlays?: __listOfVideoOverlay;
|
3331
3345
|
/**
|
3332
3346
|
* Input video selectors contain the video settings for the input. Each of your inputs can have up to one video selector.
|
3333
3347
|
*/
|
@@ -3448,6 +3462,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3448
3462
|
* Specify the timecode that you want the service to use for this input's initial frame. To use this setting, you must set the Timecode source setting, located under the input settings, to Specified start. For more information about timecodes, see https://docs.aws.amazon.com/console/mediaconvert/timecode.
|
3449
3463
|
*/
|
3450
3464
|
TimecodeStart?: __stringMin11Max11Pattern01D20305D205D;
|
3465
|
+
/**
|
3466
|
+
* Contains an array of video overlays.
|
3467
|
+
*/
|
3468
|
+
VideoOverlays?: __listOfVideoOverlay;
|
3451
3469
|
/**
|
3452
3470
|
* Input video selectors contain the video settings for the input. Each of your inputs can have up to one video selector.
|
3453
3471
|
*/
|
@@ -3644,10 +3662,6 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3644
3662
|
* If your source content has EIA-608 Line 21 Data Services, enable this feature to specify what MediaConvert does with the Extended Data Services (XDS) packets. You can choose to pass through XDS packets, or remove them from the output. For more information about XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
|
3645
3663
|
*/
|
3646
3664
|
ExtendedDataServices?: ExtendedDataServices;
|
3647
|
-
/**
|
3648
|
-
* Specifies which input metadata to use for the default "Follow input" option for the following settings: resolution, frame rate, and pixel aspect ratio. In the simplest case, specify which input is used based on its index in the job. For example if you specify 3, then the fourth input will be used from each input. If the job does not have a fourth input, then the first input will be used. If no followInputIndex is specified, then 0 will be chosen automatically.
|
3649
|
-
*/
|
3650
|
-
FollowInputIndex?: __integerMin0Max149;
|
3651
3665
|
/**
|
3652
3666
|
* Use Inputs to define source file used in the transcode job. There can be multiple inputs add in a job. These inputs will be concantenated together to create the output.
|
3653
3667
|
*/
|
@@ -3754,10 +3768,6 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3754
3768
|
* If your source content has EIA-608 Line 21 Data Services, enable this feature to specify what MediaConvert does with the Extended Data Services (XDS) packets. You can choose to pass through XDS packets, or remove them from the output. For more information about XDS, see EIA-608 Line Data Services, section 9.5.1.5 05h Content Advisory.
|
3755
3769
|
*/
|
3756
3770
|
ExtendedDataServices?: ExtendedDataServices;
|
3757
|
-
/**
|
3758
|
-
* Specifies which input metadata to use for the default "Follow input" option for the following settings: resolution, frame rate, and pixel aspect ratio. In the simplest case, specify which input is used based on its index in the job. For example if you specify 3, then the fourth input will be used from each input. If the job does not have a fourth input, then the first input will be used. If no followInputIndex is specified, then 0 will be chosen automatically.
|
3759
|
-
*/
|
3760
|
-
FollowInputIndex?: __integerMin0Max149;
|
3761
3771
|
/**
|
3762
3772
|
* Use Inputs to define the source file used in the transcode job. There can only be one input in a job template. Using the API, you can include multiple inputs when referencing a job template.
|
3763
3773
|
*/
|
@@ -5768,6 +5778,48 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
5768
5778
|
*/
|
5769
5779
|
WidthInPx?: __integer;
|
5770
5780
|
}
|
5781
|
+
export interface VideoOverlay {
|
5782
|
+
/**
|
5783
|
+
* Enter the end timecode in the underlying input video for this overlay. Your overlay will be active through this frame. To display your video overlay for the duration of the underlying video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for the underlying Input timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to end ten minutes into the video, enter 01:10:00:00.
|
5784
|
+
*/
|
5785
|
+
EndTimecode?: __stringPattern010920405090509092;
|
5786
|
+
/**
|
5787
|
+
* Input settings for Video overlay. You can include one or more video overlays in sequence at different times that you specify.
|
5788
|
+
*/
|
5789
|
+
Input?: VideoOverlayInput;
|
5790
|
+
/**
|
5791
|
+
* Enter the start timecode in the underlying input video for this overlay. Your overlay will be active starting with this frame. To display your video overlay starting at the beginning of the underlying video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for the underlying Input timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to begin five minutes into the video, enter 01:05:00:00.
|
5792
|
+
*/
|
5793
|
+
StartTimecode?: __stringPattern010920405090509092;
|
5794
|
+
}
|
5795
|
+
export interface VideoOverlayInput {
|
5796
|
+
/**
|
5797
|
+
* Specify the input file S3, HTTP, or HTTPS URI for your video overlay. For consistency in color and formatting in your output video image, we recommend that you specify a video with similar characteristics as the underlying input video.
|
5798
|
+
*/
|
5799
|
+
FileInput?: __stringPatternS3Https;
|
5800
|
+
/**
|
5801
|
+
* Specify one or more clips to use from your video overlay. When you include an input clip, you must also specify its start timecode, end timecode, or both start and end timecode.
|
5802
|
+
*/
|
5803
|
+
InputClippings?: __listOfVideoOverlayInputClipping;
|
5804
|
+
/**
|
5805
|
+
* Specify the starting timecode for your video overlay. To use the timecode present in your video overlay: Choose Embedded. To use a zerobased timecode: Choose Start at 0. To choose a timecode: Choose Specified start. When you do, enter the starting timecode in Start timecode. If you don't specify a value for Timecode source, MediaConvert uses Embedded by default.
|
5806
|
+
*/
|
5807
|
+
TimecodeSource?: InputTimecodeSource;
|
5808
|
+
/**
|
5809
|
+
* Specify the starting timecode for this video overlay. To use this setting, you must set Timecode source to Specified start.
|
5810
|
+
*/
|
5811
|
+
TimecodeStart?: __stringMin11Max11Pattern01D20305D205D;
|
5812
|
+
}
|
5813
|
+
export interface VideoOverlayInputClipping {
|
5814
|
+
/**
|
5815
|
+
* Specify the timecode of the last frame to include in your video overlay's clip. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.
|
5816
|
+
*/
|
5817
|
+
EndTimecode?: __stringPattern010920405090509092;
|
5818
|
+
/**
|
5819
|
+
* Specify the timecode of the first frame to include in your video overlay's clip. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.
|
5820
|
+
*/
|
5821
|
+
StartTimecode?: __stringPattern010920405090509092;
|
5822
|
+
}
|
5771
5823
|
export interface VideoPreprocessor {
|
5772
5824
|
/**
|
5773
5825
|
* Use these settings to convert the color space or to modify properties such as hue and contrast for this output. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/converting-the-color-space.html.
|
@@ -6233,7 +6285,6 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
6233
6285
|
export type __integerMin0Max1152000000 = number;
|
6234
6286
|
export type __integerMin0Max128 = number;
|
6235
6287
|
export type __integerMin0Max1466400000 = number;
|
6236
|
-
export type __integerMin0Max149 = number;
|
6237
6288
|
export type __integerMin0Max15 = number;
|
6238
6289
|
export type __integerMin0Max16 = number;
|
6239
6290
|
export type __integerMin0Max2147483647 = number;
|
@@ -6354,6 +6405,8 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
|
|
6354
6405
|
export type __listOfQueue = Queue[];
|
6355
6406
|
export type __listOfQueueTransition = QueueTransition[];
|
6356
6407
|
export type __listOfTeletextPageType = TeletextPageType[];
|
6408
|
+
export type __listOfVideoOverlay = VideoOverlay[];
|
6409
|
+
export type __listOfVideoOverlayInputClipping = VideoOverlayInputClipping[];
|
6357
6410
|
export type __listOfWarningGroup = WarningGroup[];
|
6358
6411
|
export type __listOf__doubleMinNegative60Max6 = __doubleMinNegative60Max6[];
|
6359
6412
|
export type __listOf__integerMin1Max2147483647 = __integerMin1Max2147483647[];
|
@@ -403,6 +403,13 @@ declare namespace MediaTailor {
|
|
403
403
|
TimeSignalMessage?: TimeSignalMessage;
|
404
404
|
}
|
405
405
|
export type AdBreakMetadataList = KeyValuePair[];
|
406
|
+
export type AdBreakOpportunities = AdBreakOpportunity[];
|
407
|
+
export interface AdBreakOpportunity {
|
408
|
+
/**
|
409
|
+
* The offset in milliseconds from the start of the VOD source at which an ad marker was detected.
|
410
|
+
*/
|
411
|
+
OffsetMillis: __long;
|
412
|
+
}
|
406
413
|
export interface AdMarkerPassthrough {
|
407
414
|
/**
|
408
415
|
* Enables ad marker passthrough for your configuration.
|
@@ -1259,6 +1266,10 @@ declare namespace MediaTailor {
|
|
1259
1266
|
VodSourceName: __string;
|
1260
1267
|
}
|
1261
1268
|
export interface DescribeVodSourceResponse {
|
1269
|
+
/**
|
1270
|
+
* The ad break opportunities within the VOD source.
|
1271
|
+
*/
|
1272
|
+
AdBreakOpportunities?: AdBreakOpportunities;
|
1262
1273
|
/**
|
1263
1274
|
* The ARN of the VOD source.
|
1264
1275
|
*/
|
@@ -59,6 +59,14 @@ declare class Mgn extends Service {
|
|
59
59
|
* Create application.
|
60
60
|
*/
|
61
61
|
createApplication(callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
|
62
|
+
/**
|
63
|
+
* Create Connector.
|
64
|
+
*/
|
65
|
+
createConnector(params: Mgn.Types.CreateConnectorRequest, callback?: (err: AWSError, data: Mgn.Types.Connector) => void): Request<Mgn.Types.Connector, AWSError>;
|
66
|
+
/**
|
67
|
+
* Create Connector.
|
68
|
+
*/
|
69
|
+
createConnector(callback?: (err: AWSError, data: Mgn.Types.Connector) => void): Request<Mgn.Types.Connector, AWSError>;
|
62
70
|
/**
|
63
71
|
* Creates a new Launch Configuration Template.
|
64
72
|
*/
|
@@ -91,6 +99,14 @@ declare class Mgn extends Service {
|
|
91
99
|
* Delete application.
|
92
100
|
*/
|
93
101
|
deleteApplication(callback?: (err: AWSError, data: Mgn.Types.DeleteApplicationResponse) => void): Request<Mgn.Types.DeleteApplicationResponse, AWSError>;
|
102
|
+
/**
|
103
|
+
* Delete Connector.
|
104
|
+
*/
|
105
|
+
deleteConnector(params: Mgn.Types.DeleteConnectorRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
106
|
+
/**
|
107
|
+
* Delete Connector.
|
108
|
+
*/
|
109
|
+
deleteConnector(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
94
110
|
/**
|
95
111
|
* Deletes a single Job by ID.
|
96
112
|
*/
|
@@ -251,6 +267,14 @@ declare class Mgn extends Service {
|
|
251
267
|
* Retrieves all applications or multiple applications by ID.
|
252
268
|
*/
|
253
269
|
listApplications(callback?: (err: AWSError, data: Mgn.Types.ListApplicationsResponse) => void): Request<Mgn.Types.ListApplicationsResponse, AWSError>;
|
270
|
+
/**
|
271
|
+
* List Connectors.
|
272
|
+
*/
|
273
|
+
listConnectors(params: Mgn.Types.ListConnectorsRequest, callback?: (err: AWSError, data: Mgn.Types.ListConnectorsResponse) => void): Request<Mgn.Types.ListConnectorsResponse, AWSError>;
|
274
|
+
/**
|
275
|
+
* List Connectors.
|
276
|
+
*/
|
277
|
+
listConnectors(callback?: (err: AWSError, data: Mgn.Types.ListConnectorsResponse) => void): Request<Mgn.Types.ListConnectorsResponse, AWSError>;
|
254
278
|
/**
|
255
279
|
* List export errors.
|
256
280
|
*/
|
@@ -483,6 +507,14 @@ declare class Mgn extends Service {
|
|
483
507
|
* Update application.
|
484
508
|
*/
|
485
509
|
updateApplication(callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
|
510
|
+
/**
|
511
|
+
* Update Connector.
|
512
|
+
*/
|
513
|
+
updateConnector(params: Mgn.Types.UpdateConnectorRequest, callback?: (err: AWSError, data: Mgn.Types.Connector) => void): Request<Mgn.Types.Connector, AWSError>;
|
514
|
+
/**
|
515
|
+
* Update Connector.
|
516
|
+
*/
|
517
|
+
updateConnector(callback?: (err: AWSError, data: Mgn.Types.Connector) => void): Request<Mgn.Types.Connector, AWSError>;
|
486
518
|
/**
|
487
519
|
* Updates multiple LaunchConfigurations by Source Server ID.
|
488
520
|
*/
|
@@ -515,6 +547,14 @@ declare class Mgn extends Service {
|
|
515
547
|
* Updates multiple ReplicationConfigurationTemplates by ID.
|
516
548
|
*/
|
517
549
|
updateReplicationConfigurationTemplate(callback?: (err: AWSError, data: Mgn.Types.ReplicationConfigurationTemplate) => void): Request<Mgn.Types.ReplicationConfigurationTemplate, AWSError>;
|
550
|
+
/**
|
551
|
+
* Update Source Server.
|
552
|
+
*/
|
553
|
+
updateSourceServer(params: Mgn.Types.UpdateSourceServerRequest, callback?: (err: AWSError, data: Mgn.Types.SourceServer) => void): Request<Mgn.Types.SourceServer, AWSError>;
|
554
|
+
/**
|
555
|
+
* Update Source Server.
|
556
|
+
*/
|
557
|
+
updateSourceServer(callback?: (err: AWSError, data: Mgn.Types.SourceServer) => void): Request<Mgn.Types.SourceServer, AWSError>;
|
518
558
|
/**
|
519
559
|
* Allows you to change between the AGENT_BASED replication type and the SNAPSHOT_SHIPPING replication type.
|
520
560
|
*/
|
@@ -698,6 +738,55 @@ declare namespace Mgn {
|
|
698
738
|
export type ChangeServerLifeCycleStateSourceServerLifecycleState = "READY_FOR_TEST"|"READY_FOR_CUTOVER"|"CUTOVER"|string;
|
699
739
|
export type ClientIdempotencyToken = string;
|
700
740
|
export type CloudWatchLogGroupName = string;
|
741
|
+
export interface Connector {
|
742
|
+
/**
|
743
|
+
* Connector arn.
|
744
|
+
*/
|
745
|
+
arn?: ARN;
|
746
|
+
/**
|
747
|
+
* Connector ID.
|
748
|
+
*/
|
749
|
+
connectorID?: ConnectorID;
|
750
|
+
/**
|
751
|
+
* Connector name.
|
752
|
+
*/
|
753
|
+
name?: ConnectorName;
|
754
|
+
/**
|
755
|
+
* Connector SSM command config.
|
756
|
+
*/
|
757
|
+
ssmCommandConfig?: ConnectorSsmCommandConfig;
|
758
|
+
/**
|
759
|
+
* Connector SSM instance ID.
|
760
|
+
*/
|
761
|
+
ssmInstanceID?: SsmInstanceID;
|
762
|
+
/**
|
763
|
+
* Connector tags.
|
764
|
+
*/
|
765
|
+
tags?: TagsMap;
|
766
|
+
}
|
767
|
+
export type ConnectorArn = string;
|
768
|
+
export type ConnectorID = string;
|
769
|
+
export type ConnectorIDsFilter = ConnectorID[];
|
770
|
+
export type ConnectorName = string;
|
771
|
+
export interface ConnectorSsmCommandConfig {
|
772
|
+
/**
|
773
|
+
* Connector SSM command config CloudWatch log group name.
|
774
|
+
*/
|
775
|
+
cloudWatchLogGroupName?: CloudWatchLogGroupName;
|
776
|
+
/**
|
777
|
+
* Connector SSM command config CloudWatch output enabled.
|
778
|
+
*/
|
779
|
+
cloudWatchOutputEnabled: Boolean;
|
780
|
+
/**
|
781
|
+
* Connector SSM command config output S3 bucket name.
|
782
|
+
*/
|
783
|
+
outputS3BucketName?: S3BucketName;
|
784
|
+
/**
|
785
|
+
* Connector SSM command config S3 output enabled.
|
786
|
+
*/
|
787
|
+
s3OutputEnabled: Boolean;
|
788
|
+
}
|
789
|
+
export type ConnectorsList = Connector[];
|
701
790
|
export type Cpus = CPU[];
|
702
791
|
export interface CreateApplicationRequest {
|
703
792
|
/**
|
@@ -717,6 +806,24 @@ declare namespace Mgn {
|
|
717
806
|
*/
|
718
807
|
tags?: TagsMap;
|
719
808
|
}
|
809
|
+
export interface CreateConnectorRequest {
|
810
|
+
/**
|
811
|
+
* Create Connector request name.
|
812
|
+
*/
|
813
|
+
name: ConnectorName;
|
814
|
+
/**
|
815
|
+
* Create Connector request SSM command config.
|
816
|
+
*/
|
817
|
+
ssmCommandConfig?: ConnectorSsmCommandConfig;
|
818
|
+
/**
|
819
|
+
* Create Connector request SSM instance ID.
|
820
|
+
*/
|
821
|
+
ssmInstanceID: SsmInstanceID;
|
822
|
+
/**
|
823
|
+
* Create Connector request tags.
|
824
|
+
*/
|
825
|
+
tags?: TagsMap;
|
826
|
+
}
|
720
827
|
export interface CreateLaunchConfigurationTemplateRequest {
|
721
828
|
/**
|
722
829
|
* Associate public Ip address.
|
@@ -952,6 +1059,12 @@ declare namespace Mgn {
|
|
952
1059
|
}
|
953
1060
|
export interface DeleteApplicationResponse {
|
954
1061
|
}
|
1062
|
+
export interface DeleteConnectorRequest {
|
1063
|
+
/**
|
1064
|
+
* Delete Connector request connector ID.
|
1065
|
+
*/
|
1066
|
+
connectorID: ConnectorID;
|
1067
|
+
}
|
955
1068
|
export interface DeleteJobRequest {
|
956
1069
|
/**
|
957
1070
|
* Request to delete Job from service by Account ID.
|
@@ -1917,6 +2030,36 @@ declare namespace Mgn {
|
|
1917
2030
|
*/
|
1918
2031
|
nextToken?: PaginationToken;
|
1919
2032
|
}
|
2033
|
+
export interface ListConnectorsRequest {
|
2034
|
+
/**
|
2035
|
+
* List Connectors Request filters.
|
2036
|
+
*/
|
2037
|
+
filters?: ListConnectorsRequestFilters;
|
2038
|
+
/**
|
2039
|
+
* List Connectors Request max results.
|
2040
|
+
*/
|
2041
|
+
maxResults?: MaxResultsType;
|
2042
|
+
/**
|
2043
|
+
* List Connectors Request next token.
|
2044
|
+
*/
|
2045
|
+
nextToken?: PaginationToken;
|
2046
|
+
}
|
2047
|
+
export interface ListConnectorsRequestFilters {
|
2048
|
+
/**
|
2049
|
+
* List Connectors Request Filters connector IDs.
|
2050
|
+
*/
|
2051
|
+
connectorIDs?: ConnectorIDsFilter;
|
2052
|
+
}
|
2053
|
+
export interface ListConnectorsResponse {
|
2054
|
+
/**
|
2055
|
+
* List connectors response items.
|
2056
|
+
*/
|
2057
|
+
items?: ConnectorsList;
|
2058
|
+
/**
|
2059
|
+
* List connectors response next token.
|
2060
|
+
*/
|
2061
|
+
nextToken?: PaginationToken;
|
2062
|
+
}
|
1920
2063
|
export interface ListExportErrorsRequest {
|
1921
2064
|
/**
|
1922
2065
|
* List export errors request export id.
|
@@ -2606,6 +2749,7 @@ declare namespace Mgn {
|
|
2606
2749
|
}
|
2607
2750
|
export type S3Key = string;
|
2608
2751
|
export type S3LogBucketName = string;
|
2752
|
+
export type SecretArn = string;
|
2609
2753
|
export type SecurityGroupID = string;
|
2610
2754
|
export type SmallBoundedString = string;
|
2611
2755
|
export interface SourceProperties {
|
@@ -2651,6 +2795,10 @@ declare namespace Mgn {
|
|
2651
2795
|
* Source server ARN.
|
2652
2796
|
*/
|
2653
2797
|
arn?: ARN;
|
2798
|
+
/**
|
2799
|
+
* Source Server connector action.
|
2800
|
+
*/
|
2801
|
+
connectorAction?: SourceServerConnectorAction;
|
2654
2802
|
/**
|
2655
2803
|
* Source server data replication info.
|
2656
2804
|
*/
|
@@ -2753,6 +2901,16 @@ declare namespace Mgn {
|
|
2753
2901
|
*/
|
2754
2902
|
actionIDs?: ActionIDs;
|
2755
2903
|
}
|
2904
|
+
export interface SourceServerConnectorAction {
|
2905
|
+
/**
|
2906
|
+
* Source Server connector action connector arn.
|
2907
|
+
*/
|
2908
|
+
connectorArn?: ConnectorArn;
|
2909
|
+
/**
|
2910
|
+
* Source Server connector action credentials secret arn.
|
2911
|
+
*/
|
2912
|
+
credentialsSecretArn?: SecretArn;
|
2913
|
+
}
|
2756
2914
|
export type SourceServerID = string;
|
2757
2915
|
export type SourceServersList = SourceServer[];
|
2758
2916
|
export interface SsmDocument {
|
@@ -2793,6 +2951,7 @@ declare namespace Mgn {
|
|
2793
2951
|
*/
|
2794
2952
|
dynamicPath?: JmesPathString;
|
2795
2953
|
}
|
2954
|
+
export type SsmInstanceID = string;
|
2796
2955
|
export interface SsmParameterStoreParameter {
|
2797
2956
|
/**
|
2798
2957
|
* AWS Systems Manager Parameter Store parameter name.
|
@@ -3052,6 +3211,20 @@ declare namespace Mgn {
|
|
3052
3211
|
*/
|
3053
3212
|
name?: ApplicationName;
|
3054
3213
|
}
|
3214
|
+
export interface UpdateConnectorRequest {
|
3215
|
+
/**
|
3216
|
+
* Update Connector request connector ID.
|
3217
|
+
*/
|
3218
|
+
connectorID: ConnectorID;
|
3219
|
+
/**
|
3220
|
+
* Update Connector request name.
|
3221
|
+
*/
|
3222
|
+
name?: ConnectorName;
|
3223
|
+
/**
|
3224
|
+
* Update Connector request SSM command config.
|
3225
|
+
*/
|
3226
|
+
ssmCommandConfig?: ConnectorSsmCommandConfig;
|
3227
|
+
}
|
3055
3228
|
export interface UpdateLaunchConfigurationRequest {
|
3056
3229
|
/**
|
3057
3230
|
* Update Launch configuration Account ID.
|
@@ -3300,6 +3473,20 @@ declare namespace Mgn {
|
|
3300
3473
|
*/
|
3301
3474
|
sourceServerID: SourceServerID;
|
3302
3475
|
}
|
3476
|
+
export interface UpdateSourceServerRequest {
|
3477
|
+
/**
|
3478
|
+
* Update Source Server request account ID.
|
3479
|
+
*/
|
3480
|
+
accountID?: AccountID;
|
3481
|
+
/**
|
3482
|
+
* Update Source Server request connector action.
|
3483
|
+
*/
|
3484
|
+
connectorAction?: SourceServerConnectorAction;
|
3485
|
+
/**
|
3486
|
+
* Update Source Server request source server ID.
|
3487
|
+
*/
|
3488
|
+
sourceServerID: SourceServerID;
|
3489
|
+
}
|
3303
3490
|
export interface UpdateWaveRequest {
|
3304
3491
|
/**
|
3305
3492
|
* Account ID.
|
@@ -100,11 +100,11 @@ declare class OAM extends Service {
|
|
100
100
|
*/
|
101
101
|
listTagsForResource(callback?: (err: AWSError, data: OAM.Types.ListTagsForResourceOutput) => void): Request<OAM.Types.ListTagsForResourceOutput, AWSError>;
|
102
102
|
/**
|
103
|
-
* Creates or updates the resource policy that grants permissions to source accounts to link to the monitoring account sink. When you create a sink policy, you can grant permissions to all accounts in an organization or to individual accounts. You can also use a sink policy to limit the types of data that is shared. The three types that you can allow or deny are: Metrics - Specify with AWS::CloudWatch::Metric Log groups - Specify with AWS::Logs::LogGroup Traces - Specify with AWS::XRay::Trace See the examples in this section to see how to specify permitted source accounts and data types.
|
103
|
+
* Creates or updates the resource policy that grants permissions to source accounts to link to the monitoring account sink. When you create a sink policy, you can grant permissions to all accounts in an organization or to individual accounts. You can also use a sink policy to limit the types of data that is shared. The three types that you can allow or deny are: Metrics - Specify with AWS::CloudWatch::Metric Log groups - Specify with AWS::Logs::LogGroup Traces - Specify with AWS::XRay::Trace Application Insights - Applications - Specify with AWS::ApplicationInsights::Application See the examples in this section to see how to specify permitted source accounts and data types.
|
104
104
|
*/
|
105
105
|
putSinkPolicy(params: OAM.Types.PutSinkPolicyInput, callback?: (err: AWSError, data: OAM.Types.PutSinkPolicyOutput) => void): Request<OAM.Types.PutSinkPolicyOutput, AWSError>;
|
106
106
|
/**
|
107
|
-
* Creates or updates the resource policy that grants permissions to source accounts to link to the monitoring account sink. When you create a sink policy, you can grant permissions to all accounts in an organization or to individual accounts. You can also use a sink policy to limit the types of data that is shared. The three types that you can allow or deny are: Metrics - Specify with AWS::CloudWatch::Metric Log groups - Specify with AWS::Logs::LogGroup Traces - Specify with AWS::XRay::Trace See the examples in this section to see how to specify permitted source accounts and data types.
|
107
|
+
* Creates or updates the resource policy that grants permissions to source accounts to link to the monitoring account sink. When you create a sink policy, you can grant permissions to all accounts in an organization or to individual accounts. You can also use a sink policy to limit the types of data that is shared. The three types that you can allow or deny are: Metrics - Specify with AWS::CloudWatch::Metric Log groups - Specify with AWS::Logs::LogGroup Traces - Specify with AWS::XRay::Trace Application Insights - Applications - Specify with AWS::ApplicationInsights::Application See the examples in this section to see how to specify permitted source accounts and data types.
|
108
108
|
*/
|
109
109
|
putSinkPolicy(callback?: (err: AWSError, data: OAM.Types.PutSinkPolicyOutput) => void): Request<OAM.Types.PutSinkPolicyOutput, AWSError>;
|
110
110
|
/**
|
@@ -465,7 +465,7 @@ declare namespace OAM {
|
|
465
465
|
Policy?: String;
|
466
466
|
}
|
467
467
|
export type ResourceIdentifier = string;
|
468
|
-
export type ResourceType = "AWS::CloudWatch::Metric"|"AWS::Logs::LogGroup"|"AWS::XRay::Trace"|string;
|
468
|
+
export type ResourceType = "AWS::CloudWatch::Metric"|"AWS::Logs::LogGroup"|"AWS::XRay::Trace"|"AWS::ApplicationInsights::Application"|string;
|
469
469
|
export type ResourceTypesInput = ResourceType[];
|
470
470
|
export type ResourceTypesOutput = String[];
|
471
471
|
export type SinkName = string;
|