cdk-comprehend-s3olap 2.0.90 → 2.0.93
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 +7 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +81 -8
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +217 -122
- package/node_modules/aws-sdk/apis/runtime.lex.v2-2020-08-07.min.json +64 -40
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +108 -6
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +90 -2
- package/node_modules/aws-sdk/clients/lexruntimev2.d.ts +25 -3
- package/node_modules/aws-sdk/clients/redshift.d.ts +15 -15
- 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 +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +153 -51
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -146,7 +146,7 @@ declare namespace LexRuntimeV2 {
|
|
146
146
|
}
|
147
147
|
export interface DialogAction {
|
148
148
|
/**
|
149
|
-
* The next action that the bot should take in its interaction with the user. The possible values are: Close - Indicates that there will not be a response from the user. For example, the statement "Your order has been placed" does not require a response. ConfirmIntent - The next action is asking the user if the intent is complete and ready to be fulfilled. This is a yes/no question such as "Place the order?" Delegate - The next action is determined by Amazon Lex V2. ElicitSlot - The next action is to elicit a slot value from the user.
|
149
|
+
* The next action that the bot should take in its interaction with the user. The possible values are: Close - Indicates that there will not be a response from the user. For example, the statement "Your order has been placed" does not require a response. ConfirmIntent - The next action is asking the user if the intent is complete and ready to be fulfilled. This is a yes/no question such as "Place the order?" Delegate - The next action is determined by Amazon Lex V2. ElicitIntent - The next action is to elicit an intent from the user. ElicitSlot - The next action is to elicit a slot value from the user.
|
150
150
|
*/
|
151
151
|
type: DialogActionType;
|
152
152
|
/**
|
@@ -157,9 +157,23 @@ declare namespace LexRuntimeV2 {
|
|
157
157
|
* Configures the slot to use spell-by-letter or spell-by-word style. When you use a style on a slot, users can spell out their input to make it clear to your bot. Spell by letter - "b" "o" "b" Spell by word - "b as in boy" "o as in oscar" "b as in boy" For more information, see Using spelling to enter slot values .
|
158
158
|
*/
|
159
159
|
slotElicitationStyle?: StyleType;
|
160
|
+
/**
|
161
|
+
* The name of the constituent sub slot of the composite slot specified in slotToElicit that should be elicited from the user.
|
162
|
+
*/
|
163
|
+
subSlotToElicit?: ElicitSubSlot;
|
160
164
|
}
|
161
165
|
export type DialogActionType = "Close"|"ConfirmIntent"|"Delegate"|"ElicitIntent"|"ElicitSlot"|"None"|string;
|
162
166
|
export type Double = number;
|
167
|
+
export interface ElicitSubSlot {
|
168
|
+
/**
|
169
|
+
* The name of the slot that should be elicited from the user.
|
170
|
+
*/
|
171
|
+
name: NonEmptyString;
|
172
|
+
/**
|
173
|
+
* The field is not supported.
|
174
|
+
*/
|
175
|
+
subSlotToElicit?: ElicitSubSlot;
|
176
|
+
}
|
163
177
|
export interface GetSessionRequest {
|
164
178
|
/**
|
165
179
|
* The identifier of the bot that contains the session data.
|
@@ -457,7 +471,11 @@ declare namespace LexRuntimeV2 {
|
|
457
471
|
/**
|
458
472
|
* One or more strings that Amazon Lex V2 should look for in the input to the bot. Each phrase is given preference when deciding on slot values.
|
459
473
|
*/
|
460
|
-
runtimeHintValues
|
474
|
+
runtimeHintValues?: RuntimeHintValuesList;
|
475
|
+
/**
|
476
|
+
* A map of constituent sub slot names inside a composite slot in the intent and the phrases that should be added for each sub slot. Inside each composite slot hints, this structure provides a mechanism to add granular sub slot phrases. Only sub slot hints are supported for composite slots. The intent name, composite slot name and the constituent sub slot names must exist.
|
477
|
+
*/
|
478
|
+
subSlotHints?: SlotHintsSlotMap;
|
461
479
|
}
|
462
480
|
export type RuntimeHintPhrase = string;
|
463
481
|
export interface RuntimeHintValue {
|
@@ -527,7 +545,7 @@ declare namespace LexRuntimeV2 {
|
|
527
545
|
*/
|
528
546
|
runtimeHints?: RuntimeHints;
|
529
547
|
}
|
530
|
-
export type Shape = "Scalar"|"List"|string;
|
548
|
+
export type Shape = "Scalar"|"List"|"Composite"|string;
|
531
549
|
export interface Slot {
|
532
550
|
/**
|
533
551
|
* The current value of the slot.
|
@@ -541,6 +559,10 @@ declare namespace LexRuntimeV2 {
|
|
541
559
|
* A list of one or more values that the user provided for the slot. For example, if a for a slot that elicits pizza toppings, the values might be "pepperoni" and "pineapple."
|
542
560
|
*/
|
543
561
|
values?: Values;
|
562
|
+
/**
|
563
|
+
* The constituent sub slots of a composite slot.
|
564
|
+
*/
|
565
|
+
subSlots?: Slots;
|
544
566
|
}
|
545
567
|
export type SlotHintsIntentMap = {[key: string]: SlotHintsSlotMap};
|
546
568
|
export type SlotHintsSlotMap = {[key: string]: RuntimeHintDetails};
|
@@ -721,11 +721,11 @@ declare class Redshift extends Service {
|
|
721
721
|
*/
|
722
722
|
getReservedNodeExchangeOfferings(callback?: (err: AWSError, data: Redshift.Types.GetReservedNodeExchangeOfferingsOutputMessage) => void): Request<Redshift.Types.GetReservedNodeExchangeOfferingsOutputMessage, AWSError>;
|
723
723
|
/**
|
724
|
-
*
|
724
|
+
* This operation is retired. Calling this operation does not change AQUA configuration. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).
|
725
725
|
*/
|
726
726
|
modifyAquaConfiguration(params: Redshift.Types.ModifyAquaInputMessage, callback?: (err: AWSError, data: Redshift.Types.ModifyAquaOutputMessage) => void): Request<Redshift.Types.ModifyAquaOutputMessage, AWSError>;
|
727
727
|
/**
|
728
|
-
*
|
728
|
+
* This operation is retired. Calling this operation does not change AQUA configuration. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).
|
729
729
|
*/
|
730
730
|
modifyAquaConfiguration(callback?: (err: AWSError, data: Redshift.Types.ModifyAquaOutputMessage) => void): Request<Redshift.Types.ModifyAquaOutputMessage, AWSError>;
|
731
731
|
/**
|
@@ -1040,11 +1040,11 @@ declare namespace Redshift {
|
|
1040
1040
|
export type ActionType = "restore-cluster"|"recommend-node-config"|"resize-cluster"|string;
|
1041
1041
|
export interface AquaConfiguration {
|
1042
1042
|
/**
|
1043
|
-
*
|
1043
|
+
* This field is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).
|
1044
1044
|
*/
|
1045
1045
|
AquaStatus?: AquaStatus;
|
1046
1046
|
/**
|
1047
|
-
*
|
1047
|
+
* This field is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).
|
1048
1048
|
*/
|
1049
1049
|
AquaConfigurationStatus?: AquaConfigurationStatus;
|
1050
1050
|
}
|
@@ -1416,7 +1416,7 @@ declare namespace Redshift {
|
|
1416
1416
|
*/
|
1417
1417
|
TotalStorageCapacityInMegaBytes?: LongOptional;
|
1418
1418
|
/**
|
1419
|
-
*
|
1419
|
+
* This field is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).
|
1420
1420
|
*/
|
1421
1421
|
AquaConfiguration?: AquaConfiguration;
|
1422
1422
|
/**
|
@@ -1870,7 +1870,7 @@ declare namespace Redshift {
|
|
1870
1870
|
*/
|
1871
1871
|
HsmConfigurationIdentifier?: String;
|
1872
1872
|
/**
|
1873
|
-
* The Elastic IP (EIP) address for the cluster.
|
1873
|
+
* The Elastic IP (EIP) address for the cluster. Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible through an Internet gateway. For more information about provisioning clusters in EC2-VPC, go to Supported Platforms to Launch Your Cluster in the Amazon Redshift Cluster Management Guide.
|
1874
1874
|
*/
|
1875
1875
|
ElasticIp?: String;
|
1876
1876
|
/**
|
@@ -1906,7 +1906,7 @@ declare namespace Redshift {
|
|
1906
1906
|
*/
|
1907
1907
|
AvailabilityZoneRelocation?: BooleanOptional;
|
1908
1908
|
/**
|
1909
|
-
*
|
1909
|
+
* This parameter is retired. It does not set the AQUA configuration status. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).
|
1910
1910
|
*/
|
1911
1911
|
AquaConfigurationStatus?: AquaConfigurationStatus;
|
1912
1912
|
/**
|
@@ -3614,11 +3614,11 @@ declare namespace Redshift {
|
|
3614
3614
|
}
|
3615
3615
|
export interface GetClusterCredentialsMessage {
|
3616
3616
|
/**
|
3617
|
-
* The name of a database user. If a user name matching DbUser exists in the database, the temporary user credentials have the same permissions as the existing user. If DbUser doesn't exist in the database and Autocreate is True, a new user is created using the value for DbUser with PUBLIC permissions. If a database user matching the value for DbUser doesn't exist and Autocreate is False, then the command succeeds but the connection attempt will fail because the user doesn't exist in the database. For more information, see CREATE USER in the Amazon Redshift Database Developer Guide. Constraints: Must be 1 to 64 alphanumeric characters or hyphens. The user name can't be PUBLIC. Must contain
|
3617
|
+
* The name of a database user. If a user name matching DbUser exists in the database, the temporary user credentials have the same permissions as the existing user. If DbUser doesn't exist in the database and Autocreate is True, a new user is created using the value for DbUser with PUBLIC permissions. If a database user matching the value for DbUser doesn't exist and Autocreate is False, then the command succeeds but the connection attempt will fail because the user doesn't exist in the database. For more information, see CREATE USER in the Amazon Redshift Database Developer Guide. Constraints: Must be 1 to 64 alphanumeric characters or hyphens. The user name can't be PUBLIC. Must contain uppercase or lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. First character must be a letter. Must not contain a colon ( : ) or slash ( / ). Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
|
3618
3618
|
*/
|
3619
3619
|
DbUser: String;
|
3620
3620
|
/**
|
3621
|
-
* The name of a database that DbUser is authorized to log on to. If DbName is not specified, DbUser can log on to any existing database. Constraints: Must be 1 to 64 alphanumeric characters or hyphens Must contain
|
3621
|
+
* The name of a database that DbUser is authorized to log on to. If DbName is not specified, DbUser can log on to any existing database. Constraints: Must be 1 to 64 alphanumeric characters or hyphens Must contain uppercase or lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. First character must be a letter. Must not contain a colon ( : ) or slash ( / ). Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
|
3622
3622
|
*/
|
3623
3623
|
DbName?: String;
|
3624
3624
|
/**
|
@@ -3860,13 +3860,13 @@ declare namespace Redshift {
|
|
3860
3860
|
*/
|
3861
3861
|
ClusterIdentifier: String;
|
3862
3862
|
/**
|
3863
|
-
*
|
3863
|
+
* This parameter is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).
|
3864
3864
|
*/
|
3865
3865
|
AquaConfigurationStatus?: AquaConfigurationStatus;
|
3866
3866
|
}
|
3867
3867
|
export interface ModifyAquaOutputMessage {
|
3868
3868
|
/**
|
3869
|
-
*
|
3869
|
+
* This parameter is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).
|
3870
3870
|
*/
|
3871
3871
|
AquaConfiguration?: AquaConfiguration;
|
3872
3872
|
}
|
@@ -4820,11 +4820,11 @@ declare namespace Redshift {
|
|
4820
4820
|
*/
|
4821
4821
|
ClusterIdentifier: String;
|
4822
4822
|
/**
|
4823
|
-
* The name of the snapshot from which to create the new cluster. This parameter isn't case sensitive. Example: my-snapshot-id
|
4823
|
+
* The name of the snapshot from which to create the new cluster. This parameter isn't case sensitive. You can specify this parameter or snapshotArn, but not both. Example: my-snapshot-id
|
4824
4824
|
*/
|
4825
4825
|
SnapshotIdentifier?: String;
|
4826
4826
|
/**
|
4827
|
-
* The Amazon Resource Name (ARN) of the snapshot associated with the message to restore from a cluster.
|
4827
|
+
* The Amazon Resource Name (ARN) of the snapshot associated with the message to restore from a cluster. You can specify this parameter or snapshotIdentifier, but not both.
|
4828
4828
|
*/
|
4829
4829
|
SnapshotArn?: String;
|
4830
4830
|
/**
|
@@ -4864,7 +4864,7 @@ declare namespace Redshift {
|
|
4864
4864
|
*/
|
4865
4865
|
HsmConfigurationIdentifier?: String;
|
4866
4866
|
/**
|
4867
|
-
* The elastic IP (EIP) address for the cluster.
|
4867
|
+
* The elastic IP (EIP) address for the cluster.
|
4868
4868
|
*/
|
4869
4869
|
ElasticIp?: String;
|
4870
4870
|
/**
|
@@ -4928,7 +4928,7 @@ declare namespace Redshift {
|
|
4928
4928
|
*/
|
4929
4929
|
AvailabilityZoneRelocation?: BooleanOptional;
|
4930
4930
|
/**
|
4931
|
-
*
|
4931
|
+
* This parameter is retired. It does not set the AQUA configuration status. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).
|
4932
4932
|
*/
|
4933
4933
|
AquaConfigurationStatus?: AquaConfigurationStatus;
|
4934
4934
|
/**
|