cdk-comprehend-s3olap 2.0.70 → 2.0.73
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 +4 -4
- 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 +22 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appmesh-2019-01-25.min.json +220 -167
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +464 -31
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +119 -39
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +9 -0
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +227 -33
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +601 -558
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +114 -85
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +98 -66
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +135 -111
- package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +54 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +405 -123
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +104 -22
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.paginators.json +11 -0
- package/node_modules/aws-sdk/apis/networkmanager-2019-07-05.min.json +52 -51
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +11 -5
- package/node_modules/aws-sdk/clients/appmesh.d.ts +70 -3
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +472 -43
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +100 -2
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +2 -2
- package/node_modules/aws-sdk/clients/connect.d.ts +246 -160
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +276 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +53 -0
- package/node_modules/aws-sdk/clients/ivschat.d.ts +5 -5
- package/node_modules/aws-sdk/clients/kendra.d.ts +93 -56
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +48 -2
- package/node_modules/aws-sdk/clients/lambda.d.ts +45 -17
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +290 -2
- package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +72 -3
- package/node_modules/aws-sdk/clients/networkmanager.d.ts +5 -0
- package/node_modules/aws-sdk/clients/rds.d.ts +36 -12
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +11 -11
- 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 +18 -18
- package/node_modules/aws-sdk/dist/aws-sdk.js +1225 -771
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +74 -74
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +252 -2
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +8 -8
@@ -1087,11 +1087,48 @@ declare namespace LexModelsV2 {
|
|
1087
1087
|
export interface CodeHookSpecification {
|
1088
1088
|
lambdaCodeHook: LambdaCodeHook;
|
1089
1089
|
}
|
1090
|
+
export interface Condition {
|
1091
|
+
/**
|
1092
|
+
* The expression string that is evaluated.
|
1093
|
+
*/
|
1094
|
+
expressionString: ConditionExpression;
|
1095
|
+
}
|
1096
|
+
export type ConditionExpression = string;
|
1090
1097
|
export type ConditionKey = string;
|
1091
1098
|
export type ConditionKeyValueMap = {[key: string]: ConditionValue};
|
1092
1099
|
export type ConditionMap = {[key: string]: ConditionKeyValueMap};
|
1093
1100
|
export type ConditionOperator = string;
|
1094
1101
|
export type ConditionValue = string;
|
1102
|
+
export interface ConditionalBranch {
|
1103
|
+
/**
|
1104
|
+
* The name of the branch.
|
1105
|
+
*/
|
1106
|
+
name: Name;
|
1107
|
+
/**
|
1108
|
+
* Contains the expression to evaluate. If the condition is true, the branch's actions are taken.
|
1109
|
+
*/
|
1110
|
+
condition: Condition;
|
1111
|
+
/**
|
1112
|
+
* The next step in the conversation.
|
1113
|
+
*/
|
1114
|
+
nextStep: DialogState;
|
1115
|
+
response?: ResponseSpecification;
|
1116
|
+
}
|
1117
|
+
export type ConditionalBranches = ConditionalBranch[];
|
1118
|
+
export interface ConditionalSpecification {
|
1119
|
+
/**
|
1120
|
+
* Determines whether a conditional branch is active. When active is false, the conditions are not evaluated.
|
1121
|
+
*/
|
1122
|
+
active: BoxedBoolean;
|
1123
|
+
/**
|
1124
|
+
* A list of conditional branches. A conditional branch is made up of a condition, a response and a next step. The response and next step are executed when the condition is true.
|
1125
|
+
*/
|
1126
|
+
conditionalBranches: ConditionalBranches;
|
1127
|
+
/**
|
1128
|
+
* The conditional branch that should be followed when the conditions for other branches are not satisfied. A conditional branch is made up of a condition, a response and a next step.
|
1129
|
+
*/
|
1130
|
+
defaultBranch: DefaultConditionalBranch;
|
1131
|
+
}
|
1095
1132
|
export type ConfidenceThreshold = number;
|
1096
1133
|
export type ContextTimeToLiveInSeconds = number;
|
1097
1134
|
export type ContextTurnsToLive = number;
|
@@ -1449,6 +1486,10 @@ declare namespace LexModelsV2 {
|
|
1449
1486
|
* The identifier of the language and locale where this intent is used. All of the bots, slot types, and slots used by the intent must have the same locale. For more information, see Supported languages.
|
1450
1487
|
*/
|
1451
1488
|
localeId: LocaleId;
|
1489
|
+
/**
|
1490
|
+
* Configuration settings for the response that is sent to the user at the beginning of a conversation, before eliciting slot values.
|
1491
|
+
*/
|
1492
|
+
initialResponseSetting?: InitialResponseSetting;
|
1452
1493
|
}
|
1453
1494
|
export interface CreateIntentResponse {
|
1454
1495
|
/**
|
@@ -1515,6 +1556,10 @@ declare namespace LexModelsV2 {
|
|
1515
1556
|
* A timestamp of the date and time that the intent was created.
|
1516
1557
|
*/
|
1517
1558
|
creationDateTime?: Timestamp;
|
1559
|
+
/**
|
1560
|
+
* Configuration settings for the response that is sent to the user at the beginning of a conversation, before eliciting slot values.
|
1561
|
+
*/
|
1562
|
+
initialResponseSetting?: InitialResponseSetting;
|
1518
1563
|
}
|
1519
1564
|
export interface CreateResourcePolicyRequest {
|
1520
1565
|
/**
|
@@ -1816,6 +1861,13 @@ declare namespace LexModelsV2 {
|
|
1816
1861
|
*/
|
1817
1862
|
endDateTime: Timestamp;
|
1818
1863
|
}
|
1864
|
+
export interface DefaultConditionalBranch {
|
1865
|
+
/**
|
1866
|
+
* The next step in the conversation.
|
1867
|
+
*/
|
1868
|
+
nextStep?: DialogState;
|
1869
|
+
response?: ResponseSpecification;
|
1870
|
+
}
|
1819
1871
|
export interface DeleteBotAliasRequest {
|
1820
1872
|
/**
|
1821
1873
|
* The unique identifier of the bot alias to delete.
|
@@ -2622,6 +2674,10 @@ declare namespace LexModelsV2 {
|
|
2622
2674
|
* A timestamp of the date and time that the intent was last updated.
|
2623
2675
|
*/
|
2624
2676
|
lastUpdatedDateTime?: Timestamp;
|
2677
|
+
/**
|
2678
|
+
*
|
2679
|
+
*/
|
2680
|
+
initialResponseSetting?: InitialResponseSetting;
|
2625
2681
|
}
|
2626
2682
|
export interface DescribeResourcePolicyRequest {
|
2627
2683
|
/**
|
@@ -2785,14 +2841,65 @@ declare namespace LexModelsV2 {
|
|
2785
2841
|
externalSourceSetting?: ExternalSourceSetting;
|
2786
2842
|
}
|
2787
2843
|
export type Description = string;
|
2844
|
+
export interface DialogAction {
|
2845
|
+
/**
|
2846
|
+
* The action that the bot should execute.
|
2847
|
+
*/
|
2848
|
+
type: DialogActionType;
|
2849
|
+
/**
|
2850
|
+
* If the dialog action is ElicitSlot, defines the slot to elicit from the user.
|
2851
|
+
*/
|
2852
|
+
slotToElicit?: Name;
|
2853
|
+
/**
|
2854
|
+
* When true the next message for the intent is not used.
|
2855
|
+
*/
|
2856
|
+
suppressNextMessage?: BoxedBoolean;
|
2857
|
+
}
|
2858
|
+
export type DialogActionType = "ElicitIntent"|"StartIntent"|"ElicitSlot"|"EvaluateConditional"|"InvokeDialogCodeHook"|"ConfirmIntent"|"FulfillIntent"|"CloseIntent"|"EndConversation"|string;
|
2859
|
+
export interface DialogCodeHookInvocationSetting {
|
2860
|
+
/**
|
2861
|
+
* Indicates whether a Lambda function should be invoked for the dialog.
|
2862
|
+
*/
|
2863
|
+
enableCodeHookInvocation: BoxedBoolean;
|
2864
|
+
/**
|
2865
|
+
* Determines whether a dialog code hook is used when the intent is activated.
|
2866
|
+
*/
|
2867
|
+
active: BoxedBoolean;
|
2868
|
+
/**
|
2869
|
+
* A label that indicates the dialog step from which the dialog code hook is happening.
|
2870
|
+
*/
|
2871
|
+
invocationLabel?: Name;
|
2872
|
+
/**
|
2873
|
+
* Contains the responses and actions that Amazon Lex takes after the Lambda function is complete.
|
2874
|
+
*/
|
2875
|
+
postCodeHookSpecification: PostDialogCodeHookInvocationSpecification;
|
2876
|
+
}
|
2788
2877
|
export interface DialogCodeHookSettings {
|
2789
2878
|
/**
|
2790
2879
|
* Enables the dialog code hook so that it processes user requests.
|
2791
2880
|
*/
|
2792
2881
|
enabled: Boolean;
|
2793
2882
|
}
|
2883
|
+
export interface DialogState {
|
2884
|
+
dialogAction?: DialogAction;
|
2885
|
+
intent?: IntentOverride;
|
2886
|
+
/**
|
2887
|
+
* Map of key/value pairs representing session-specific context information. It contains application information passed between Amazon Lex and a client application.
|
2888
|
+
*/
|
2889
|
+
sessionAttributes?: StringMap;
|
2890
|
+
}
|
2794
2891
|
export type DraftBotVersion = string;
|
2795
2892
|
export type Effect = "Allow"|"Deny"|string;
|
2893
|
+
export interface ElicitationCodeHookInvocationSetting {
|
2894
|
+
/**
|
2895
|
+
* Indicates whether a Lambda function should be invoked for the dialog.
|
2896
|
+
*/
|
2897
|
+
enableCodeHookInvocation: BoxedBoolean;
|
2898
|
+
/**
|
2899
|
+
* A label that indicates the dialog step from which the dialog code hook is happening.
|
2900
|
+
*/
|
2901
|
+
invocationLabel?: Name;
|
2902
|
+
}
|
2796
2903
|
export interface EncryptionSetting {
|
2797
2904
|
/**
|
2798
2905
|
* The KMS key ARN used to encrypt the metadata associated with the bot recommendation.
|
@@ -2901,6 +3008,10 @@ declare namespace LexModelsV2 {
|
|
2901
3008
|
* Provides settings for update messages sent to the user for long-running Lambda fulfillment functions. Fulfillment updates can be used only with streaming conversations.
|
2902
3009
|
*/
|
2903
3010
|
fulfillmentUpdatesSpecification?: FulfillmentUpdatesSpecification;
|
3011
|
+
/**
|
3012
|
+
* Determines whether the fulfillment code hook is used. When active is false, the code hook doesn't run.
|
3013
|
+
*/
|
3014
|
+
active?: BoxedBoolean;
|
2904
3015
|
}
|
2905
3016
|
export type FulfillmentStartResponseDelay = number;
|
2906
3017
|
export interface FulfillmentStartResponseSpecification {
|
@@ -3070,6 +3181,15 @@ declare namespace LexModelsV2 {
|
|
3070
3181
|
}
|
3071
3182
|
export type ImportSummaryList = ImportSummary[];
|
3072
3183
|
export type ImportedResourceId = string;
|
3184
|
+
export interface InitialResponseSetting {
|
3185
|
+
initialResponse?: ResponseSpecification;
|
3186
|
+
/**
|
3187
|
+
* The next step in the conversation.
|
3188
|
+
*/
|
3189
|
+
nextStep?: DialogState;
|
3190
|
+
conditional?: ConditionalSpecification;
|
3191
|
+
codeHook?: DialogCodeHookInvocationSetting;
|
3192
|
+
}
|
3073
3193
|
export interface InputContext {
|
3074
3194
|
/**
|
3075
3195
|
* The name of the context.
|
@@ -3081,11 +3201,19 @@ declare namespace LexModelsV2 {
|
|
3081
3201
|
/**
|
3082
3202
|
* The response that Amazon Lex sends to the user when the intent is complete.
|
3083
3203
|
*/
|
3084
|
-
closingResponse
|
3204
|
+
closingResponse?: ResponseSpecification;
|
3085
3205
|
/**
|
3086
3206
|
* Specifies whether an intent's closing response is used. When this field is false, the closing response isn't sent to the user. If the active field isn't specified, the default is true.
|
3087
3207
|
*/
|
3088
3208
|
active?: BoxedBoolean;
|
3209
|
+
/**
|
3210
|
+
* Specifies the next step that the bot executes after playing the intent's closing response.
|
3211
|
+
*/
|
3212
|
+
nextStep?: DialogState;
|
3213
|
+
/**
|
3214
|
+
* A list of conditional branches associated with the intent's closing response. These branches are executed when the nextStep attribute is set to EvalutateConditional.
|
3215
|
+
*/
|
3216
|
+
conditional?: ConditionalSpecification;
|
3089
3217
|
}
|
3090
3218
|
export interface IntentConfirmationSetting {
|
3091
3219
|
/**
|
@@ -3095,11 +3223,42 @@ declare namespace LexModelsV2 {
|
|
3095
3223
|
/**
|
3096
3224
|
* When the user answers "no" to the question defined in promptSpecification, Amazon Lex responds with this response to acknowledge that the intent was canceled.
|
3097
3225
|
*/
|
3098
|
-
declinationResponse
|
3226
|
+
declinationResponse?: ResponseSpecification;
|
3099
3227
|
/**
|
3100
3228
|
* Specifies whether the intent's confirmation is sent to the user. When this field is false, confirmation and declination responses aren't sent. If the active field isn't specified, the default is true.
|
3101
3229
|
*/
|
3102
3230
|
active?: BoxedBoolean;
|
3231
|
+
confirmationResponse?: ResponseSpecification;
|
3232
|
+
/**
|
3233
|
+
* Specifies the next step that the bot executes when the customer confirms the intent.
|
3234
|
+
*/
|
3235
|
+
confirmationNextStep?: DialogState;
|
3236
|
+
/**
|
3237
|
+
* A list of conditional branches to evaluate after the intent is closed.
|
3238
|
+
*/
|
3239
|
+
confirmationConditional?: ConditionalSpecification;
|
3240
|
+
/**
|
3241
|
+
* Specifies the next step that the bot executes when the customer declines the intent.
|
3242
|
+
*/
|
3243
|
+
declinationNextStep?: DialogState;
|
3244
|
+
/**
|
3245
|
+
* A list of conditional branches to evaluate after the intent is declined.
|
3246
|
+
*/
|
3247
|
+
declinationConditional?: ConditionalSpecification;
|
3248
|
+
failureResponse?: ResponseSpecification;
|
3249
|
+
/**
|
3250
|
+
* The next step to take in the conversation if the confirmation step fails.
|
3251
|
+
*/
|
3252
|
+
failureNextStep?: DialogState;
|
3253
|
+
failureConditional?: ConditionalSpecification;
|
3254
|
+
/**
|
3255
|
+
* The DialogCodeHookInvocationSetting object associated with intent's confirmation step. The dialog code hook is triggered based on these invocation settings when the confirmation next step or declination next step or failure next step is InvokeDialogCodeHook.
|
3256
|
+
*/
|
3257
|
+
codeHook?: DialogCodeHookInvocationSetting;
|
3258
|
+
/**
|
3259
|
+
* The DialogCodeHookInvocationSetting used when the code hook is invoked during confirmation prompt retries.
|
3260
|
+
*/
|
3261
|
+
elicitationCodeHook?: ElicitationCodeHookInvocationSetting;
|
3103
3262
|
}
|
3104
3263
|
export interface IntentFilter {
|
3105
3264
|
/**
|
@@ -3118,6 +3277,16 @@ declare namespace LexModelsV2 {
|
|
3118
3277
|
export type IntentFilterName = "IntentName"|string;
|
3119
3278
|
export type IntentFilterOperator = "CO"|"EQ"|string;
|
3120
3279
|
export type IntentFilters = IntentFilter[];
|
3280
|
+
export interface IntentOverride {
|
3281
|
+
/**
|
3282
|
+
* The name of the intent. Only required when you're switching intents.
|
3283
|
+
*/
|
3284
|
+
name?: Name;
|
3285
|
+
/**
|
3286
|
+
* A map of all of the slot value overrides for the intent. The name of the slot maps to the value of the slot. Slots that are not included in the map aren't overridden.,
|
3287
|
+
*/
|
3288
|
+
slots?: SlotValueOverrideMap;
|
3289
|
+
}
|
3121
3290
|
export type IntentSignature = string;
|
3122
3291
|
export type IntentSortAttribute = "IntentName"|"LastUpdatedDateTime"|string;
|
3123
3292
|
export interface IntentSortBy {
|
@@ -3898,6 +4067,7 @@ declare namespace LexModelsV2 {
|
|
3898
4067
|
export type Name = string;
|
3899
4068
|
export type NextIndex = number;
|
3900
4069
|
export type NextToken = string;
|
4070
|
+
export type NonEmptyString = string;
|
3901
4071
|
export type NumericalBotVersion = string;
|
3902
4072
|
export interface ObfuscationSetting {
|
3903
4073
|
/**
|
@@ -3939,10 +4109,63 @@ declare namespace LexModelsV2 {
|
|
3939
4109
|
}
|
3940
4110
|
export type PlainTextMessageValue = string;
|
3941
4111
|
export type Policy = string;
|
4112
|
+
export interface PostDialogCodeHookInvocationSpecification {
|
4113
|
+
successResponse?: ResponseSpecification;
|
4114
|
+
/**
|
4115
|
+
* Specifics the next step the bot runs after the dialog code hook finishes successfully.
|
4116
|
+
*/
|
4117
|
+
successNextStep?: DialogState;
|
4118
|
+
/**
|
4119
|
+
* A list of conditional branches to evaluate after the dialog code hook finishes successfully.
|
4120
|
+
*/
|
4121
|
+
successConditional?: ConditionalSpecification;
|
4122
|
+
failureResponse?: ResponseSpecification;
|
4123
|
+
/**
|
4124
|
+
* Specifies the next step the bot runs after the dialog code hook throws an exception or returns with the State field of the Intent object set to Failed.
|
4125
|
+
*/
|
4126
|
+
failureNextStep?: DialogState;
|
4127
|
+
/**
|
4128
|
+
* A list of conditional branches to evaluate after the dialog code hook throws an exception or returns with the State field of the Intent object set to Failed.
|
4129
|
+
*/
|
4130
|
+
failureConditional?: ConditionalSpecification;
|
4131
|
+
timeoutResponse?: ResponseSpecification;
|
4132
|
+
/**
|
4133
|
+
* Specifies the next step that the bot runs when the code hook times out.
|
4134
|
+
*/
|
4135
|
+
timeoutNextStep?: DialogState;
|
4136
|
+
/**
|
4137
|
+
* A list of conditional branches to evaluate if the code hook times out.
|
4138
|
+
*/
|
4139
|
+
timeoutConditional?: ConditionalSpecification;
|
4140
|
+
}
|
3942
4141
|
export interface PostFulfillmentStatusSpecification {
|
3943
4142
|
successResponse?: ResponseSpecification;
|
3944
4143
|
failureResponse?: ResponseSpecification;
|
3945
4144
|
timeoutResponse?: ResponseSpecification;
|
4145
|
+
/**
|
4146
|
+
* Specifies the next step in the conversation that Amazon Lex invokes when the fulfillment code hook completes successfully.
|
4147
|
+
*/
|
4148
|
+
successNextStep?: DialogState;
|
4149
|
+
/**
|
4150
|
+
* A list of conditional branches to evaluate after the fulfillment code hook finishes successfully.
|
4151
|
+
*/
|
4152
|
+
successConditional?: ConditionalSpecification;
|
4153
|
+
/**
|
4154
|
+
* Specifies the next step the bot runs after the fulfillment code hook throws an exception or returns with the State field of the Intent object set to Failed.
|
4155
|
+
*/
|
4156
|
+
failureNextStep?: DialogState;
|
4157
|
+
/**
|
4158
|
+
* A list of conditional branches to evaluate after the fulfillment code hook throws an exception or returns with the State field of the Intent object set to Failed.
|
4159
|
+
*/
|
4160
|
+
failureConditional?: ConditionalSpecification;
|
4161
|
+
/**
|
4162
|
+
* Specifies the next step that the bot runs when the fulfillment code hook times out.
|
4163
|
+
*/
|
4164
|
+
timeoutNextStep?: DialogState;
|
4165
|
+
/**
|
4166
|
+
* A list of conditional branches to evaluate if the fulfillment code hook times out.
|
4167
|
+
*/
|
4168
|
+
timeoutConditional?: ConditionalSpecification;
|
3946
4169
|
}
|
3947
4170
|
export type PresignedS3Url = string;
|
3948
4171
|
export interface Principal {
|
@@ -4154,6 +4377,34 @@ declare namespace LexModelsV2 {
|
|
4154
4377
|
export type SessionId = string;
|
4155
4378
|
export type SessionTTL = number;
|
4156
4379
|
export type SkipResourceInUseCheck = boolean;
|
4380
|
+
export interface SlotCaptureSetting {
|
4381
|
+
captureResponse?: ResponseSpecification;
|
4382
|
+
/**
|
4383
|
+
* Specifies the next step that the bot runs when the slot value is captured before the code hook times out.
|
4384
|
+
*/
|
4385
|
+
captureNextStep?: DialogState;
|
4386
|
+
/**
|
4387
|
+
* A list of conditional branches to evaluate after the slot value is captured.
|
4388
|
+
*/
|
4389
|
+
captureConditional?: ConditionalSpecification;
|
4390
|
+
failureResponse?: ResponseSpecification;
|
4391
|
+
/**
|
4392
|
+
* Specifies the next step that the bot runs when the slot value code is not recognized.
|
4393
|
+
*/
|
4394
|
+
failureNextStep?: DialogState;
|
4395
|
+
/**
|
4396
|
+
* A list of conditional branches to evaluate when the slot value isn't captured.
|
4397
|
+
*/
|
4398
|
+
failureConditional?: ConditionalSpecification;
|
4399
|
+
/**
|
4400
|
+
* Code hook called after Amazon Lex successfully captures a slot value.
|
4401
|
+
*/
|
4402
|
+
codeHook?: DialogCodeHookInvocationSetting;
|
4403
|
+
/**
|
4404
|
+
* Code hook called when Amazon Lex doesn't capture a slot value.
|
4405
|
+
*/
|
4406
|
+
elicitationCodeHook?: ElicitationCodeHookInvocationSetting;
|
4407
|
+
}
|
4157
4408
|
export type SlotConstraint = "Required"|"Optional"|string;
|
4158
4409
|
export interface SlotDefaultValue {
|
4159
4410
|
/**
|
@@ -4197,6 +4448,7 @@ declare namespace LexModelsV2 {
|
|
4197
4448
|
*/
|
4198
4449
|
slotId: Id;
|
4199
4450
|
}
|
4451
|
+
export type SlotShape = "Scalar"|"List"|string;
|
4200
4452
|
export type SlotSortAttribute = "SlotName"|"LastUpdatedDateTime"|string;
|
4201
4453
|
export interface SlotSortBy {
|
4202
4454
|
/**
|
@@ -4313,6 +4565,12 @@ declare namespace LexModelsV2 {
|
|
4313
4565
|
synonyms?: SynonymList;
|
4314
4566
|
}
|
4315
4567
|
export type SlotTypeValues = SlotTypeValue[];
|
4568
|
+
export interface SlotValue {
|
4569
|
+
/**
|
4570
|
+
* The value that Amazon Lex determines for the slot. The actual value depends on the setting of the value selection strategy for the bot. You can choose to use the value entered by the user, or you can have Amazon Lex choose the first value in the resolvedValues list.
|
4571
|
+
*/
|
4572
|
+
interpretedValue?: NonEmptyString;
|
4573
|
+
}
|
4316
4574
|
export interface SlotValueElicitationSetting {
|
4317
4575
|
/**
|
4318
4576
|
* A list of default values for a slot. Default values are used when Amazon Lex hasn't determined a value for a slot. You can specify default values from context variables, session attributes, and defined values.
|
@@ -4331,7 +4589,26 @@ declare namespace LexModelsV2 {
|
|
4331
4589
|
*/
|
4332
4590
|
sampleUtterances?: SampleUtterancesList;
|
4333
4591
|
waitAndContinueSpecification?: WaitAndContinueSpecification;
|
4592
|
+
/**
|
4593
|
+
* Specifies the settings that Amazon Lex uses when a slot value is successfully entered by a user.
|
4594
|
+
*/
|
4595
|
+
slotCaptureSetting?: SlotCaptureSetting;
|
4334
4596
|
}
|
4597
|
+
export interface SlotValueOverride {
|
4598
|
+
/**
|
4599
|
+
* When the shape value is List, it indicates that the values field contains a list of slot values. When the value is Scalar, it indicates that the value field contains a single value.
|
4600
|
+
*/
|
4601
|
+
shape?: SlotShape;
|
4602
|
+
/**
|
4603
|
+
* The current value of the slot.
|
4604
|
+
*/
|
4605
|
+
value?: SlotValue;
|
4606
|
+
/**
|
4607
|
+
* A list of one or more values that the user provided for the slot. For example, for a slot that elicits pizza toppings, the values might be "pepperoni" and "pineapple."
|
4608
|
+
*/
|
4609
|
+
values?: SlotValues;
|
4610
|
+
}
|
4611
|
+
export type SlotValueOverrideMap = {[key: string]: SlotValueOverride};
|
4335
4612
|
export interface SlotValueRegexFilter {
|
4336
4613
|
/**
|
4337
4614
|
* A regular expression used to validate the value of a slot. Use a standard regular expression. Amazon Lex supports the following characters in the regular expression: A-Z, a-z 0-9 Unicode characters ("\ u<Unicode>") Represent Unicode characters with four digits, for example "\u0041" or "\u005A". The following regular expression operators are not supported: Infinite repeaters: *, +, or {x,} with no upper bound. Wild card (.)
|
@@ -4353,6 +4630,7 @@ declare namespace LexModelsV2 {
|
|
4353
4630
|
*/
|
4354
4631
|
advancedRecognitionSetting?: AdvancedRecognitionSetting;
|
4355
4632
|
}
|
4633
|
+
export type SlotValues = SlotValueOverride[];
|
4356
4634
|
export type SortOrder = "Ascending"|"Descending"|string;
|
4357
4635
|
export interface StartBotRecommendationRequest {
|
4358
4636
|
/**
|
@@ -4470,6 +4748,8 @@ declare namespace LexModelsV2 {
|
|
4470
4748
|
allowInterrupt?: BoxedBoolean;
|
4471
4749
|
}
|
4472
4750
|
export type StillWaitingResponseTimeout = number;
|
4751
|
+
export type String = string;
|
4752
|
+
export type StringMap = {[key: string]: String};
|
4473
4753
|
export type SynonymList = SampleValue[];
|
4474
4754
|
export type TagKey = string;
|
4475
4755
|
export type TagKeyList = TagKey[];
|
@@ -4905,6 +5185,10 @@ declare namespace LexModelsV2 {
|
|
4905
5185
|
* The identifier of the language and locale where this intent is used. The string must match one of the supported locales. For more information, see Supported languages.
|
4906
5186
|
*/
|
4907
5187
|
localeId: LocaleId;
|
5188
|
+
/**
|
5189
|
+
*
|
5190
|
+
*/
|
5191
|
+
initialResponseSetting?: InitialResponseSetting;
|
4908
5192
|
}
|
4909
5193
|
export interface UpdateIntentResponse {
|
4910
5194
|
/**
|
@@ -4979,6 +5263,10 @@ declare namespace LexModelsV2 {
|
|
4979
5263
|
* A timestamp of the last time that the intent was modified.
|
4980
5264
|
*/
|
4981
5265
|
lastUpdatedDateTime?: Timestamp;
|
5266
|
+
/**
|
5267
|
+
*
|
5268
|
+
*/
|
5269
|
+
initialResponseSetting?: InitialResponseSetting;
|
4982
5270
|
}
|
4983
5271
|
export interface UpdateResourcePolicyRequest {
|
4984
5272
|
/**
|
@@ -123,6 +123,14 @@ declare class LookoutMetrics extends Service {
|
|
123
123
|
* Returns details about a group of anomalous metrics.
|
124
124
|
*/
|
125
125
|
getAnomalyGroup(callback?: (err: AWSError, data: LookoutMetrics.Types.GetAnomalyGroupResponse) => void): Request<LookoutMetrics.Types.GetAnomalyGroupResponse, AWSError>;
|
126
|
+
/**
|
127
|
+
* Returns details about the requested data quality metrics.
|
128
|
+
*/
|
129
|
+
getDataQualityMetrics(params: LookoutMetrics.Types.GetDataQualityMetricsRequest, callback?: (err: AWSError, data: LookoutMetrics.Types.GetDataQualityMetricsResponse) => void): Request<LookoutMetrics.Types.GetDataQualityMetricsResponse, AWSError>;
|
130
|
+
/**
|
131
|
+
* Returns details about the requested data quality metrics.
|
132
|
+
*/
|
133
|
+
getDataQualityMetrics(callback?: (err: AWSError, data: LookoutMetrics.Types.GetDataQualityMetricsResponse) => void): Request<LookoutMetrics.Types.GetDataQualityMetricsResponse, AWSError>;
|
126
134
|
/**
|
127
135
|
* Get feedback for an anomaly group.
|
128
136
|
*/
|
@@ -377,6 +385,17 @@ declare namespace LookoutMetrics {
|
|
377
385
|
*/
|
378
386
|
AnomalyDetectorFrequency?: Frequency;
|
379
387
|
}
|
388
|
+
export interface AnomalyDetectorDataQualityMetric {
|
389
|
+
/**
|
390
|
+
* The start time for the data quality metrics collection.
|
391
|
+
*/
|
392
|
+
StartTimestamp?: Timestamp;
|
393
|
+
/**
|
394
|
+
* An array of DataQualityMetricList objects. Each object in the array contains information about a data quality metric.
|
395
|
+
*/
|
396
|
+
MetricSetDataQualityMetricList?: MetricSetDataQualityMetricList;
|
397
|
+
}
|
398
|
+
export type AnomalyDetectorDataQualityMetricList = AnomalyDetectorDataQualityMetric[];
|
380
399
|
export type AnomalyDetectorDescription = string;
|
381
400
|
export type AnomalyDetectorFailureType = "ACTIVATION_FAILURE"|"BACK_TEST_ACTIVATION_FAILURE"|"DELETION_FAILURE"|"DEACTIVATION_FAILURE"|string;
|
382
401
|
export type AnomalyDetectorName = string;
|
@@ -706,7 +725,7 @@ declare namespace LookoutMetrics {
|
|
706
725
|
*/
|
707
726
|
MetricList: MetricList;
|
708
727
|
/**
|
709
|
-
* After an interval ends, the amount of seconds that the detector waits before importing data. Offset is only supported for S3 and
|
728
|
+
* After an interval ends, the amount of seconds that the detector waits before importing data. Offset is only supported for S3, Redshift, Athena and datasources.
|
710
729
|
*/
|
711
730
|
Offset?: Offset;
|
712
731
|
/**
|
@@ -767,6 +786,27 @@ declare namespace LookoutMetrics {
|
|
767
786
|
QuoteSymbol?: QuoteSymbol;
|
768
787
|
}
|
769
788
|
export type DataItem = string;
|
789
|
+
export interface DataQualityMetric {
|
790
|
+
/**
|
791
|
+
* The name of the data quality metric.
|
792
|
+
*/
|
793
|
+
MetricType?: DataQualityMetricType;
|
794
|
+
/**
|
795
|
+
* A description of the data quality metric.
|
796
|
+
*/
|
797
|
+
MetricDescription?: DataQualityMetricDescription;
|
798
|
+
/**
|
799
|
+
* The column that is being monitored.
|
800
|
+
*/
|
801
|
+
RelatedColumnName?: RelatedColumnName;
|
802
|
+
/**
|
803
|
+
* The value of the data quality metric.
|
804
|
+
*/
|
805
|
+
MetricValue?: Double;
|
806
|
+
}
|
807
|
+
export type DataQualityMetricDescription = string;
|
808
|
+
export type DataQualityMetricList = DataQualityMetric[];
|
809
|
+
export type DataQualityMetricType = "COLUMN_COMPLETENESS"|"DIMENSION_UNIQUENESS"|"TIME_SERIES_COUNT"|"ROWS_PROCESSED"|"ROWS_PARTIAL_COMPLIANCE"|"INVALID_ROWS_COMPLIANCE"|"BACKTEST_TRAINING_DATA_START_TIME_STAMP"|"BACKTEST_TRAINING_DATA_END_TIME_STAMP"|"BACKTEST_INFERENCE_DATA_START_TIME_STAMP"|"BACKTEST_INFERENCE_DATA_END_TIME_STAMP"|string;
|
770
810
|
export type DatabaseHost = string;
|
771
811
|
export type DatabasePort = number;
|
772
812
|
export type DateTimeFormat = string;
|
@@ -915,7 +955,7 @@ declare namespace LookoutMetrics {
|
|
915
955
|
*/
|
916
956
|
LastModificationTime?: Timestamp;
|
917
957
|
/**
|
918
|
-
*
|
958
|
+
* After an interval ends, the amount of seconds that the detector waits before importing data. Offset is only supported for S3, Redshift, Athena and datasources.
|
919
959
|
*/
|
920
960
|
Offset?: Offset;
|
921
961
|
/**
|
@@ -1092,6 +1132,7 @@ declare namespace LookoutMetrics {
|
|
1092
1132
|
}
|
1093
1133
|
export type DimensionValueContributionList = DimensionValueContribution[];
|
1094
1134
|
export type DimensionValueList = DimensionValue[];
|
1135
|
+
export type Double = number;
|
1095
1136
|
export type ErrorMessage = string;
|
1096
1137
|
export type ExecutionList = ExecutionStatus[];
|
1097
1138
|
export interface ExecutionStatus {
|
@@ -1136,6 +1177,22 @@ declare namespace LookoutMetrics {
|
|
1136
1177
|
*/
|
1137
1178
|
AnomalyGroup?: AnomalyGroup;
|
1138
1179
|
}
|
1180
|
+
export interface GetDataQualityMetricsRequest {
|
1181
|
+
/**
|
1182
|
+
* The Amazon Resource Name (ARN) of the anomaly detector that you want to investigate.
|
1183
|
+
*/
|
1184
|
+
AnomalyDetectorArn: Arn;
|
1185
|
+
/**
|
1186
|
+
* The Amazon Resource Name (ARN) of a specific data quality metric set.
|
1187
|
+
*/
|
1188
|
+
MetricSetArn?: Arn;
|
1189
|
+
}
|
1190
|
+
export interface GetDataQualityMetricsResponse {
|
1191
|
+
/**
|
1192
|
+
* A list of the data quality metrics for the AnomalyDetectorArn that you requested.
|
1193
|
+
*/
|
1194
|
+
AnomalyDetectorDataQualityMetricList?: AnomalyDetectorDataQualityMetricList;
|
1195
|
+
}
|
1139
1196
|
export interface GetFeedbackRequest {
|
1140
1197
|
/**
|
1141
1198
|
* The Amazon Resource Name (ARN) of the anomaly detector.
|
@@ -1461,6 +1518,17 @@ declare namespace LookoutMetrics {
|
|
1461
1518
|
export type MetricList = Metric[];
|
1462
1519
|
export type MetricName = string;
|
1463
1520
|
export type MetricNameList = MetricName[];
|
1521
|
+
export interface MetricSetDataQualityMetric {
|
1522
|
+
/**
|
1523
|
+
* The Amazon Resource Name (ARN) of the data quality metric array.
|
1524
|
+
*/
|
1525
|
+
MetricSetArn?: Arn;
|
1526
|
+
/**
|
1527
|
+
* The array of data quality metrics contained in the data quality metric set.
|
1528
|
+
*/
|
1529
|
+
DataQualityMetricList?: DataQualityMetricList;
|
1530
|
+
}
|
1531
|
+
export type MetricSetDataQualityMetricList = MetricSetDataQualityMetric[];
|
1464
1532
|
export type MetricSetDescription = string;
|
1465
1533
|
export type MetricSetName = string;
|
1466
1534
|
export interface MetricSetSummary {
|
@@ -1610,6 +1678,7 @@ declare namespace LookoutMetrics {
|
|
1610
1678
|
*/
|
1611
1679
|
VpcConfiguration?: VpcConfiguration;
|
1612
1680
|
}
|
1681
|
+
export type RelatedColumnName = string;
|
1613
1682
|
export type RelationshipType = "CAUSE_OF_INPUT_ANOMALY_GROUP"|"EFFECT_OF_INPUT_ANOMALY_GROUP"|string;
|
1614
1683
|
export interface S3SourceConfig {
|
1615
1684
|
/**
|
@@ -1808,7 +1877,7 @@ declare namespace LookoutMetrics {
|
|
1808
1877
|
*/
|
1809
1878
|
MetricList?: MetricList;
|
1810
1879
|
/**
|
1811
|
-
* After an interval ends, the amount of seconds that the detector waits before importing data. Offset is only supported for S3 and
|
1880
|
+
* After an interval ends, the amount of seconds that the detector waits before importing data. Offset is only supported for S3, Redshift, Athena and datasources.
|
1812
1881
|
*/
|
1813
1882
|
Offset?: Offset;
|
1814
1883
|
/**
|
@@ -3783,7 +3783,12 @@ declare namespace NetworkManager {
|
|
3783
3783
|
* The ARN of the transit gateway.
|
3784
3784
|
*/
|
3785
3785
|
TransitGatewayArn?: TransitGatewayArn;
|
3786
|
+
/**
|
3787
|
+
* The ID of the transit gateway peering attachment.
|
3788
|
+
*/
|
3789
|
+
TransitGatewayPeeringAttachmentId?: TransitGatewayPeeringAttachmentId;
|
3786
3790
|
}
|
3791
|
+
export type TransitGatewayPeeringAttachmentId = string;
|
3787
3792
|
export interface TransitGatewayRegistration {
|
3788
3793
|
/**
|
3789
3794
|
* The ID of the global network.
|