cdk-comprehend-s3olap 2.0.69 → 2.0.72

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 (54) hide show
  1. package/.jsii +5 -5
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +20 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appmesh-2019-01-25.min.json +220 -167
  8. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +464 -31
  9. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
  10. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +227 -33
  11. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.paginators.json +5 -0
  12. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +601 -558
  13. package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +105 -77
  14. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +98 -66
  15. package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +135 -111
  16. package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +405 -123
  17. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +104 -22
  18. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.paginators.json +11 -0
  19. package/node_modules/aws-sdk/apis/networkmanager-2019-07-05.min.json +52 -51
  20. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +11 -5
  21. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.examples.json +103 -0
  22. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +252 -141
  23. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.paginators.json +6 -0
  24. package/node_modules/aws-sdk/clients/appmesh.d.ts +70 -3
  25. package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +472 -43
  26. package/node_modules/aws-sdk/clients/cloudwatch.d.ts +100 -2
  27. package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +2 -2
  28. package/node_modules/aws-sdk/clients/dynamodb.d.ts +276 -2
  29. package/node_modules/aws-sdk/clients/ec2.d.ts +53 -0
  30. package/node_modules/aws-sdk/clients/kendra.d.ts +38 -6
  31. package/node_modules/aws-sdk/clients/lakeformation.d.ts +48 -2
  32. package/node_modules/aws-sdk/clients/lambda.d.ts +45 -17
  33. package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +290 -2
  34. package/node_modules/aws-sdk/clients/networkmanager.d.ts +5 -0
  35. package/node_modules/aws-sdk/clients/rds.d.ts +36 -12
  36. package/node_modules/aws-sdk/clients/rekognition.d.ts +170 -3
  37. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +11 -11
  38. package/node_modules/aws-sdk/clients/servicecatalog.d.ts +57 -57
  39. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  40. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +17 -17
  41. package/node_modules/aws-sdk/dist/aws-sdk.js +1355 -873
  42. package/node_modules/aws-sdk/dist/aws-sdk.min.js +71 -71
  43. package/node_modules/aws-sdk/lib/core.js +1 -1
  44. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +252 -2
  45. package/node_modules/aws-sdk/package.json +1 -1
  46. package/node_modules/esbuild/install.js +4 -4
  47. package/node_modules/esbuild/lib/main.js +7 -7
  48. package/node_modules/esbuild/package.json +22 -22
  49. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  50. package/node_modules/esbuild-linux-64/package.json +1 -1
  51. package/node_modules/object.assign/CHANGELOG.md +4 -0
  52. package/node_modules/object.assign/dist/browser.js +944 -0
  53. package/node_modules/object.assign/package.json +3 -2
  54. package/package.json +10 -10
@@ -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: ResponseSpecification;
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: ResponseSpecification;
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
  /**
@@ -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.
@@ -54,11 +54,11 @@ declare class RDS extends Service {
54
54
  */
55
55
  applyPendingMaintenanceAction(callback?: (err: AWSError, data: RDS.Types.ApplyPendingMaintenanceActionResult) => void): Request<RDS.Types.ApplyPendingMaintenanceActionResult, AWSError>;
56
56
  /**
57
- * Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 or VPC security groups can be added to the DBSecurityGroup if the application using the database is running on EC2 or VPC instances. Second, IP ranges are available if the application accessing your database is running on the internet. Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC). You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another. For an overview of CIDR ranges, go to the Wikipedia Tutorial.
57
+ * Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 or VPC security groups can be added to the DBSecurityGroup if the application using the database is running on EC2 or VPC instances. Second, IP ranges are available if the application accessing your database is running on the internet. Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC). You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another. For an overview of CIDR ranges, go to the Wikipedia Tutorial. EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
58
58
  */
59
59
  authorizeDBSecurityGroupIngress(params: RDS.Types.AuthorizeDBSecurityGroupIngressMessage, callback?: (err: AWSError, data: RDS.Types.AuthorizeDBSecurityGroupIngressResult) => void): Request<RDS.Types.AuthorizeDBSecurityGroupIngressResult, AWSError>;
60
60
  /**
61
- * Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 or VPC security groups can be added to the DBSecurityGroup if the application using the database is running on EC2 or VPC instances. Second, IP ranges are available if the application accessing your database is running on the internet. Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC). You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another. For an overview of CIDR ranges, go to the Wikipedia Tutorial.
61
+ * Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 or VPC security groups can be added to the DBSecurityGroup if the application using the database is running on EC2 or VPC instances. Second, IP ranges are available if the application accessing your database is running on the internet. Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC). You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another. For an overview of CIDR ranges, go to the Wikipedia Tutorial. EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
62
62
  */
63
63
  authorizeDBSecurityGroupIngress(callback?: (err: AWSError, data: RDS.Types.AuthorizeDBSecurityGroupIngressResult) => void): Request<RDS.Types.AuthorizeDBSecurityGroupIngressResult, AWSError>;
64
64
  /**
@@ -198,11 +198,11 @@ declare class RDS extends Service {
198
198
  */
199
199
  createDBProxyEndpoint(callback?: (err: AWSError, data: RDS.Types.CreateDBProxyEndpointResponse) => void): Request<RDS.Types.CreateDBProxyEndpointResponse, AWSError>;
200
200
  /**
201
- * Creates a new DB security group. DB security groups control access to a DB instance. A DB security group controls access to EC2-Classic DB instances that are not in a VPC.
201
+ * Creates a new DB security group. DB security groups control access to a DB instance. A DB security group controls access to EC2-Classic DB instances that are not in a VPC. EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
202
202
  */
203
203
  createDBSecurityGroup(params: RDS.Types.CreateDBSecurityGroupMessage, callback?: (err: AWSError, data: RDS.Types.CreateDBSecurityGroupResult) => void): Request<RDS.Types.CreateDBSecurityGroupResult, AWSError>;
204
204
  /**
205
- * Creates a new DB security group. DB security groups control access to a DB instance. A DB security group controls access to EC2-Classic DB instances that are not in a VPC.
205
+ * Creates a new DB security group. DB security groups control access to a DB instance. A DB security group controls access to EC2-Classic DB instances that are not in a VPC. EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
206
206
  */
207
207
  createDBSecurityGroup(callback?: (err: AWSError, data: RDS.Types.CreateDBSecurityGroupResult) => void): Request<RDS.Types.CreateDBSecurityGroupResult, AWSError>;
208
208
  /**
@@ -222,11 +222,11 @@ declare class RDS extends Service {
222
222
  */
223
223
  createDBSubnetGroup(callback?: (err: AWSError, data: RDS.Types.CreateDBSubnetGroupResult) => void): Request<RDS.Types.CreateDBSubnetGroupResult, AWSError>;
224
224
  /**
225
- * Creates an RDS event notification subscription. This operation requires a topic Amazon Resource Name (ARN) created by either the RDS console, the SNS console, or the SNS API. To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console. You can specify the type of source (SourceType) that you want to be notified of and provide a list of RDS sources (SourceIds) that triggers the events. You can also provide a list of event categories (EventCategories) for events that you want to be notified of. For example, you can specify SourceType = db-instance, SourceIds = mydbinstance1, mydbinstance2 and EventCategories = Availability, Backup. If you specify both the SourceType and SourceIds, such as SourceType = db-instance and SourceIds = myDBInstance1, you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify SourceIds, you receive notice of the events for that source type for all your RDS sources. If you don't specify either the SourceType or the SourceIds, you are notified of events generated from all RDS sources belonging to your customer account. RDS event notification is only available for unencrypted SNS topics. If you specify an encrypted SNS topic, event notifications aren't sent for the topic.
225
+ * Creates an RDS event notification subscription. This operation requires a topic Amazon Resource Name (ARN) created by either the RDS console, the SNS console, or the SNS API. To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console. You can specify the type of source (SourceType) that you want to be notified of and provide a list of RDS sources (SourceIds) that triggers the events. You can also provide a list of event categories (EventCategories) for events that you want to be notified of. For example, you can specify SourceType = db-instance, SourceIds = mydbinstance1, mydbinstance2 and EventCategories = Availability, Backup. If you specify both the SourceType and SourceIds, such as SourceType = db-instance and SourceIds = myDBInstance1, you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify SourceIds, you receive notice of the events for that source type for all your RDS sources. If you don't specify either the SourceType or the SourceIds, you are notified of events generated from all RDS sources belonging to your customer account. For more information about subscribing to an event for RDS DB engines, see Subscribing to Amazon RDS event notification in the Amazon RDS User Guide. For more information about subscribing to an event for Aurora DB engines, see Subscribing to Amazon RDS event notification in the Amazon Aurora User Guide.
226
226
  */
227
227
  createEventSubscription(params: RDS.Types.CreateEventSubscriptionMessage, callback?: (err: AWSError, data: RDS.Types.CreateEventSubscriptionResult) => void): Request<RDS.Types.CreateEventSubscriptionResult, AWSError>;
228
228
  /**
229
- * Creates an RDS event notification subscription. This operation requires a topic Amazon Resource Name (ARN) created by either the RDS console, the SNS console, or the SNS API. To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console. You can specify the type of source (SourceType) that you want to be notified of and provide a list of RDS sources (SourceIds) that triggers the events. You can also provide a list of event categories (EventCategories) for events that you want to be notified of. For example, you can specify SourceType = db-instance, SourceIds = mydbinstance1, mydbinstance2 and EventCategories = Availability, Backup. If you specify both the SourceType and SourceIds, such as SourceType = db-instance and SourceIds = myDBInstance1, you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify SourceIds, you receive notice of the events for that source type for all your RDS sources. If you don't specify either the SourceType or the SourceIds, you are notified of events generated from all RDS sources belonging to your customer account. RDS event notification is only available for unencrypted SNS topics. If you specify an encrypted SNS topic, event notifications aren't sent for the topic.
229
+ * Creates an RDS event notification subscription. This operation requires a topic Amazon Resource Name (ARN) created by either the RDS console, the SNS console, or the SNS API. To obtain an ARN with SNS, you must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in the SNS console. You can specify the type of source (SourceType) that you want to be notified of and provide a list of RDS sources (SourceIds) that triggers the events. You can also provide a list of event categories (EventCategories) for events that you want to be notified of. For example, you can specify SourceType = db-instance, SourceIds = mydbinstance1, mydbinstance2 and EventCategories = Availability, Backup. If you specify both the SourceType and SourceIds, such as SourceType = db-instance and SourceIds = myDBInstance1, you are notified of all the db-instance events for the specified source. If you specify a SourceType but do not specify SourceIds, you receive notice of the events for that source type for all your RDS sources. If you don't specify either the SourceType or the SourceIds, you are notified of events generated from all RDS sources belonging to your customer account. For more information about subscribing to an event for RDS DB engines, see Subscribing to Amazon RDS event notification in the Amazon RDS User Guide. For more information about subscribing to an event for Aurora DB engines, see Subscribing to Amazon RDS event notification in the Amazon Aurora User Guide.
230
230
  */
231
231
  createEventSubscription(callback?: (err: AWSError, data: RDS.Types.CreateEventSubscriptionResult) => void): Request<RDS.Types.CreateEventSubscriptionResult, AWSError>;
232
232
  /**
@@ -326,11 +326,11 @@ declare class RDS extends Service {
326
326
  */
327
327
  deleteDBProxyEndpoint(callback?: (err: AWSError, data: RDS.Types.DeleteDBProxyEndpointResponse) => void): Request<RDS.Types.DeleteDBProxyEndpointResponse, AWSError>;
328
328
  /**
329
- * Deletes a DB security group. The specified DB security group must not be associated with any DB instances.
329
+ * Deletes a DB security group. The specified DB security group must not be associated with any DB instances. EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
330
330
  */
331
331
  deleteDBSecurityGroup(params: RDS.Types.DeleteDBSecurityGroupMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
332
332
  /**
333
- * Deletes a DB security group. The specified DB security group must not be associated with any DB instances.
333
+ * Deletes a DB security group. The specified DB security group must not be associated with any DB instances. EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
334
334
  */
335
335
  deleteDBSecurityGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
336
336
  /**
@@ -534,11 +534,11 @@ declare class RDS extends Service {
534
534
  */
535
535
  describeDBProxyTargets(callback?: (err: AWSError, data: RDS.Types.DescribeDBProxyTargetsResponse) => void): Request<RDS.Types.DescribeDBProxyTargetsResponse, AWSError>;
536
536
  /**
537
- * Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DB security group.
537
+ * Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DB security group. EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
538
538
  */
539
539
  describeDBSecurityGroups(params: RDS.Types.DescribeDBSecurityGroupsMessage, callback?: (err: AWSError, data: RDS.Types.DBSecurityGroupMessage) => void): Request<RDS.Types.DBSecurityGroupMessage, AWSError>;
540
540
  /**
541
- * Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DB security group.
541
+ * Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of the specified DB security group. EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
542
542
  */
543
543
  describeDBSecurityGroups(callback?: (err: AWSError, data: RDS.Types.DBSecurityGroupMessage) => void): Request<RDS.Types.DBSecurityGroupMessage, AWSError>;
544
544
  /**
@@ -1022,11 +1022,11 @@ declare class RDS extends Service {
1022
1022
  */
1023
1023
  restoreDBInstanceToPointInTime(callback?: (err: AWSError, data: RDS.Types.RestoreDBInstanceToPointInTimeResult) => void): Request<RDS.Types.RestoreDBInstanceToPointInTimeResult, AWSError>;
1024
1024
  /**
1025
- * Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId).
1025
+ * Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId). EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
1026
1026
  */
1027
1027
  revokeDBSecurityGroupIngress(params: RDS.Types.RevokeDBSecurityGroupIngressMessage, callback?: (err: AWSError, data: RDS.Types.RevokeDBSecurityGroupIngressResult) => void): Request<RDS.Types.RevokeDBSecurityGroupIngressResult, AWSError>;
1028
1028
  /**
1029
- * Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId).
1029
+ * Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId). EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide, the blog EC2-Classic Networking is Retiring – Here’s How to Prepare, and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide.
1030
1030
  */
1031
1031
  revokeDBSecurityGroupIngress(callback?: (err: AWSError, data: RDS.Types.RevokeDBSecurityGroupIngressResult) => void): Request<RDS.Types.RevokeDBSecurityGroupIngressResult, AWSError>;
1032
1032
  /**
@@ -1829,6 +1829,10 @@ declare namespace RDS {
1829
1829
  */
1830
1830
  PerformanceInsightsRetentionPeriod?: IntegerOptional;
1831
1831
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1832
+ /**
1833
+ * The network type of the DB cluster. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. Valid for: Aurora DB clusters only
1834
+ */
1835
+ NetworkType?: String;
1832
1836
  /**
1833
1837
  * The ID of the region that contains the source for the read replica.
1834
1838
  */
@@ -2732,6 +2736,10 @@ declare namespace RDS {
2732
2736
  */
2733
2737
  PerformanceInsightsRetentionPeriod?: IntegerOptional;
2734
2738
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfigurationInfo;
2739
+ /**
2740
+ * The network type of the DB instance. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. This setting is only for Aurora DB clusters.
2741
+ */
2742
+ NetworkType?: String;
2735
2743
  }
2736
2744
  export interface DBClusterBacktrack {
2737
2745
  /**
@@ -5949,6 +5957,10 @@ declare namespace RDS {
5949
5957
  */
5950
5958
  PerformanceInsightsRetentionPeriod?: IntegerOptional;
5951
5959
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
5960
+ /**
5961
+ * The network type of the DB cluster. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. Valid for: Aurora DB clusters only
5962
+ */
5963
+ NetworkType?: String;
5952
5964
  }
5953
5965
  export interface ModifyDBClusterParameterGroupMessage {
5954
5966
  /**
@@ -7478,6 +7490,10 @@ declare namespace RDS {
7478
7490
  */
7479
7491
  DomainIAMRoleName?: String;
7480
7492
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
7493
+ /**
7494
+ * The network type of the DB cluster. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide.
7495
+ */
7496
+ NetworkType?: String;
7481
7497
  }
7482
7498
  export interface RestoreDBClusterFromS3Result {
7483
7499
  DBCluster?: DBCluster;
@@ -7588,6 +7604,10 @@ declare namespace RDS {
7588
7604
  */
7589
7605
  PubliclyAccessible?: BooleanOptional;
7590
7606
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
7607
+ /**
7608
+ * The network type of the DB cluster. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. Valid for: Aurora DB clusters only
7609
+ */
7610
+ NetworkType?: String;
7591
7611
  }
7592
7612
  export interface RestoreDBClusterFromSnapshotResult {
7593
7613
  DBCluster?: DBCluster;
@@ -7691,6 +7711,10 @@ declare namespace RDS {
7691
7711
  */
7692
7712
  Iops?: IntegerOptional;
7693
7713
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
7714
+ /**
7715
+ * The network type of the DB cluster. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. Valid for: Aurora DB clusters only
7716
+ */
7717
+ NetworkType?: String;
7694
7718
  }
7695
7719
  export interface RestoreDBClusterToPointInTimeResult {
7696
7720
  DBCluster?: DBCluster;