cdk-comprehend-s3olap 2.0.124 → 2.0.125
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-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +5 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +93 -86
- package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.min.json +1604 -287
- package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.paginators.json +18 -0
- package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +15 -3
- package/node_modules/aws-sdk/clients/mediaconnect.d.ts +1008 -19
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
@@ -1,5 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"pagination" : {
|
3
|
+
"ListBridges" : {
|
4
|
+
"input_token" : "NextToken",
|
5
|
+
"output_token" : "NextToken",
|
6
|
+
"limit_key" : "MaxResults",
|
7
|
+
"result_key" : "Bridges"
|
8
|
+
},
|
3
9
|
"ListEntitlements" : {
|
4
10
|
"input_token" : "NextToken",
|
5
11
|
"output_token" : "NextToken",
|
@@ -12,6 +18,18 @@
|
|
12
18
|
"limit_key" : "MaxResults",
|
13
19
|
"result_key" : "Flows"
|
14
20
|
},
|
21
|
+
"ListGatewayInstances" : {
|
22
|
+
"input_token" : "NextToken",
|
23
|
+
"output_token" : "NextToken",
|
24
|
+
"limit_key" : "MaxResults",
|
25
|
+
"result_key" : "Instances"
|
26
|
+
},
|
27
|
+
"ListGateways" : {
|
28
|
+
"input_token" : "NextToken",
|
29
|
+
"output_token" : "NextToken",
|
30
|
+
"limit_key" : "MaxResults",
|
31
|
+
"result_key" : "Gateways"
|
32
|
+
},
|
15
33
|
"ListOfferings" : {
|
16
34
|
"input_token" : "NextToken",
|
17
35
|
"output_token" : "NextToken",
|
@@ -1011,6 +1011,10 @@ declare namespace ChimeSDKVoice {
|
|
1011
1011
|
* List of endpoints (Lambda ARNs) specified for the SIP media application.
|
1012
1012
|
*/
|
1013
1013
|
Endpoints: SipMediaApplicationEndpointList;
|
1014
|
+
/**
|
1015
|
+
* The tags assigned to the SIP media application.
|
1016
|
+
*/
|
1017
|
+
Tags?: TagList;
|
1014
1018
|
}
|
1015
1019
|
export interface CreateSipMediaApplicationResponse {
|
1016
1020
|
/**
|
@@ -1075,6 +1079,10 @@ declare namespace ChimeSDKVoice {
|
|
1075
1079
|
* Enables or disables encryption for the Voice Connector.
|
1076
1080
|
*/
|
1077
1081
|
RequireEncryption: Boolean;
|
1082
|
+
/**
|
1083
|
+
* The tags assigned to the Voice Connector.
|
1084
|
+
*/
|
1085
|
+
Tags?: TagList;
|
1078
1086
|
}
|
1079
1087
|
export interface CreateVoiceConnectorResponse {
|
1080
1088
|
/**
|
@@ -1286,7 +1294,7 @@ declare namespace ChimeSDKVoice {
|
|
1286
1294
|
export type GeoMatchLevel = "Country"|"AreaCode"|string;
|
1287
1295
|
export interface GeoMatchParams {
|
1288
1296
|
/**
|
1289
|
-
* The country.
|
1297
|
+
* The country.
|
1290
1298
|
*/
|
1291
1299
|
Country: Country;
|
1292
1300
|
/**
|
@@ -1826,7 +1834,7 @@ declare namespace ChimeSDKVoice {
|
|
1826
1834
|
}
|
1827
1835
|
export interface LoggingConfiguration {
|
1828
1836
|
/**
|
1829
|
-
* Boolean that enables sending SIP message logs to Amazon CloudWatch
|
1837
|
+
* Boolean that enables sending SIP message logs to Amazon CloudWatch.
|
1830
1838
|
*/
|
1831
1839
|
EnableSIPLogs?: Boolean;
|
1832
1840
|
/**
|
@@ -2388,7 +2396,7 @@ declare namespace ChimeSDKVoice {
|
|
2388
2396
|
*/
|
2389
2397
|
Name?: SipMediaApplicationName;
|
2390
2398
|
/**
|
2391
|
-
* List of endpoints for SIP media application. Currently, only one endpoint per SIP media application is permitted.
|
2399
|
+
* List of endpoints for a SIP media application. Currently, only one endpoint per SIP media application is permitted.
|
2392
2400
|
*/
|
2393
2401
|
Endpoints?: SipMediaApplicationEndpointList;
|
2394
2402
|
/**
|
@@ -2399,6 +2407,10 @@ declare namespace ChimeSDKVoice {
|
|
2399
2407
|
* The time at which the SIP media application was updated.
|
2400
2408
|
*/
|
2401
2409
|
UpdatedTimestamp?: Iso8601Timestamp;
|
2410
|
+
/**
|
2411
|
+
* The ARN of the SIP media application.
|
2412
|
+
*/
|
2413
|
+
SipMediaApplicationArn?: NonEmptyString;
|
2402
2414
|
}
|
2403
2415
|
export interface SipMediaApplicationAlexaSkillConfiguration {
|
2404
2416
|
/**
|