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
@@ -142,6 +142,14 @@ declare class DynamoDB extends DynamoDBCustomizations {
|
|
142
142
|
* Describes Region-specific settings for a global table. This operation only applies to Version 2017.11.29 of global tables.
|
143
143
|
*/
|
144
144
|
describeGlobalTableSettings(callback?: (err: AWSError, data: DynamoDB.Types.DescribeGlobalTableSettingsOutput) => void): Request<DynamoDB.Types.DescribeGlobalTableSettingsOutput, AWSError>;
|
145
|
+
/**
|
146
|
+
* Represents the properties of the import.
|
147
|
+
*/
|
148
|
+
describeImport(params: DynamoDB.Types.DescribeImportInput, callback?: (err: AWSError, data: DynamoDB.Types.DescribeImportOutput) => void): Request<DynamoDB.Types.DescribeImportOutput, AWSError>;
|
149
|
+
/**
|
150
|
+
* Represents the properties of the import.
|
151
|
+
*/
|
152
|
+
describeImport(callback?: (err: AWSError, data: DynamoDB.Types.DescribeImportOutput) => void): Request<DynamoDB.Types.DescribeImportOutput, AWSError>;
|
145
153
|
/**
|
146
154
|
* Returns information about the status of Kinesis streaming.
|
147
155
|
*/
|
@@ -230,6 +238,14 @@ declare class DynamoDB extends DynamoDBCustomizations {
|
|
230
238
|
* The GetItem operation returns a set of attributes for the item with the given primary key. If there is no matching item, GetItem does not return any data and there will be no Item element in the response. GetItem provides an eventually consistent read by default. If your application requires a strongly consistent read, set ConsistentRead to true. Although a strongly consistent read might take more time than an eventually consistent read, it always returns the last updated value.
|
231
239
|
*/
|
232
240
|
getItem(callback?: (err: AWSError, data: DynamoDB.Types.GetItemOutput) => void): Request<DynamoDB.Types.GetItemOutput, AWSError>;
|
241
|
+
/**
|
242
|
+
* Imports table data from an S3 bucket.
|
243
|
+
*/
|
244
|
+
importTable(params: DynamoDB.Types.ImportTableInput, callback?: (err: AWSError, data: DynamoDB.Types.ImportTableOutput) => void): Request<DynamoDB.Types.ImportTableOutput, AWSError>;
|
245
|
+
/**
|
246
|
+
* Imports table data from an S3 bucket.
|
247
|
+
*/
|
248
|
+
importTable(callback?: (err: AWSError, data: DynamoDB.Types.ImportTableOutput) => void): Request<DynamoDB.Types.ImportTableOutput, AWSError>;
|
233
249
|
/**
|
234
250
|
* List backups associated with an Amazon Web Services account. To list backups for a given table, specify TableName. ListBackups returns a paginated list of results with at most 1 MB worth of items in a page. You can also specify a maximum number of entries to be returned in a page. In the request, start time is inclusive, but end time is exclusive. Note that these boundaries are for the time at which the original backup was requested. You can call ListBackups a maximum of five times per second.
|
235
251
|
*/
|
@@ -262,6 +278,14 @@ declare class DynamoDB extends DynamoDBCustomizations {
|
|
262
278
|
* Lists all global tables that have a replica in the specified Region. This operation only applies to Version 2017.11.29 of global tables.
|
263
279
|
*/
|
264
280
|
listGlobalTables(callback?: (err: AWSError, data: DynamoDB.Types.ListGlobalTablesOutput) => void): Request<DynamoDB.Types.ListGlobalTablesOutput, AWSError>;
|
281
|
+
/**
|
282
|
+
* Lists completed imports within the past 90 days.
|
283
|
+
*/
|
284
|
+
listImports(params: DynamoDB.Types.ListImportsInput, callback?: (err: AWSError, data: DynamoDB.Types.ListImportsOutput) => void): Request<DynamoDB.Types.ListImportsOutput, AWSError>;
|
285
|
+
/**
|
286
|
+
* Lists completed imports within the past 90 days.
|
287
|
+
*/
|
288
|
+
listImports(callback?: (err: AWSError, data: DynamoDB.Types.ListImportsOutput) => void): Request<DynamoDB.Types.ListImportsOutput, AWSError>;
|
265
289
|
/**
|
266
290
|
* Returns an array of table names associated with the current account and endpoint. The output from ListTables is paginated, with each page returning a maximum of 100 table names.
|
267
291
|
*/
|
@@ -765,7 +789,7 @@ declare namespace DynamoDB {
|
|
765
789
|
*/
|
766
790
|
Code?: BatchStatementErrorCodeEnum;
|
767
791
|
/**
|
768
|
-
* The error message associated with the PartiQL batch
|
792
|
+
* The error message associated with the PartiQL batch response.
|
769
793
|
*/
|
770
794
|
Message?: String;
|
771
795
|
}
|
@@ -856,6 +880,7 @@ declare namespace DynamoDB {
|
|
856
880
|
}
|
857
881
|
export type ClientRequestToken = string;
|
858
882
|
export type ClientToken = string;
|
883
|
+
export type CloudWatchLogGroupArn = string;
|
859
884
|
export type ComparisonOperator = "EQ"|"NE"|"IN"|"LE"|"LT"|"GE"|"GT"|"BETWEEN"|"NOT_NULL"|"NULL"|"CONTAINS"|"NOT_CONTAINS"|"BEGINS_WITH"|string;
|
860
885
|
export interface Condition {
|
861
886
|
/**
|
@@ -1088,6 +1113,19 @@ declare namespace DynamoDB {
|
|
1088
1113
|
*/
|
1089
1114
|
TableDescription?: TableDescription;
|
1090
1115
|
}
|
1116
|
+
export type CsvDelimiter = string;
|
1117
|
+
export type CsvHeader = string;
|
1118
|
+
export type CsvHeaderList = CsvHeader[];
|
1119
|
+
export interface CsvOptions {
|
1120
|
+
/**
|
1121
|
+
* The delimiter used for separating items in the CSV file being imported.
|
1122
|
+
*/
|
1123
|
+
Delimiter?: CsvDelimiter;
|
1124
|
+
/**
|
1125
|
+
* List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.
|
1126
|
+
*/
|
1127
|
+
HeaderList?: CsvHeaderList;
|
1128
|
+
}
|
1091
1129
|
export type _Date = Date;
|
1092
1130
|
export interface Delete {
|
1093
1131
|
/**
|
@@ -1324,6 +1362,18 @@ declare namespace DynamoDB {
|
|
1324
1362
|
*/
|
1325
1363
|
ReplicaSettings?: ReplicaSettingsDescriptionList;
|
1326
1364
|
}
|
1365
|
+
export interface DescribeImportInput {
|
1366
|
+
/**
|
1367
|
+
* The Amazon Resource Name (ARN) associated with the table you're importing to.
|
1368
|
+
*/
|
1369
|
+
ImportArn: ImportArn;
|
1370
|
+
}
|
1371
|
+
export interface DescribeImportOutput {
|
1372
|
+
/**
|
1373
|
+
* Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
|
1374
|
+
*/
|
1375
|
+
ImportTableDescription: ImportTableDescription;
|
1376
|
+
}
|
1327
1377
|
export interface DescribeKinesisStreamingDestinationInput {
|
1328
1378
|
/**
|
1329
1379
|
* The name of the table being described.
|
@@ -1409,6 +1459,7 @@ declare namespace DynamoDB {
|
|
1409
1459
|
CachePeriodInMinutes: Long;
|
1410
1460
|
}
|
1411
1461
|
export type Endpoints = Endpoint[];
|
1462
|
+
export type ErrorCount = number;
|
1412
1463
|
export type ExceptionDescription = string;
|
1413
1464
|
export type ExceptionName = string;
|
1414
1465
|
export interface ExecuteStatementInput {
|
@@ -1598,7 +1649,7 @@ declare namespace DynamoDB {
|
|
1598
1649
|
*/
|
1599
1650
|
ExportTime?: ExportTime;
|
1600
1651
|
/**
|
1601
|
-
* Providing a ClientToken makes the call to ExportTableToPointInTimeInput idempotent, meaning that multiple identical calls have the same effect as one single call. A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent. If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an
|
1652
|
+
* Providing a ClientToken makes the call to ExportTableToPointInTimeInput idempotent, meaning that multiple identical calls have the same effect as one single call. A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent. If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an ImportConflictException.
|
1602
1653
|
*/
|
1603
1654
|
ClientToken?: ClientToken;
|
1604
1655
|
/**
|
@@ -1855,8 +1906,167 @@ declare namespace DynamoDB {
|
|
1855
1906
|
export type GlobalTableGlobalSecondaryIndexSettingsUpdateList = GlobalTableGlobalSecondaryIndexSettingsUpdate[];
|
1856
1907
|
export type GlobalTableList = GlobalTable[];
|
1857
1908
|
export type GlobalTableStatus = "CREATING"|"ACTIVE"|"DELETING"|"UPDATING"|string;
|
1909
|
+
export type ImportArn = string;
|
1910
|
+
export type ImportEndTime = Date;
|
1911
|
+
export type ImportNextToken = string;
|
1912
|
+
export type ImportStartTime = Date;
|
1913
|
+
export type ImportStatus = "IN_PROGRESS"|"COMPLETED"|"CANCELLING"|"CANCELLED"|"FAILED"|string;
|
1914
|
+
export interface ImportSummary {
|
1915
|
+
/**
|
1916
|
+
* The Amazon Resource Number (ARN) corresponding to the import request.
|
1917
|
+
*/
|
1918
|
+
ImportArn?: ImportArn;
|
1919
|
+
/**
|
1920
|
+
* The status of the import operation.
|
1921
|
+
*/
|
1922
|
+
ImportStatus?: ImportStatus;
|
1923
|
+
/**
|
1924
|
+
* The Amazon Resource Number (ARN) of the table being imported into.
|
1925
|
+
*/
|
1926
|
+
TableArn?: TableArn;
|
1927
|
+
/**
|
1928
|
+
* The path and S3 bucket of the source file that is being imported. This includes the S3Bucket (required), S3KeyPrefix (optional) and S3BucketOwner (optional if the bucket is owned by the requester).
|
1929
|
+
*/
|
1930
|
+
S3BucketSource?: S3BucketSource;
|
1931
|
+
/**
|
1932
|
+
* The Amazon Resource Number (ARN) of the Cloudwatch Log Group associated with this import task.
|
1933
|
+
*/
|
1934
|
+
CloudWatchLogGroupArn?: CloudWatchLogGroupArn;
|
1935
|
+
/**
|
1936
|
+
* The format of the source data. Valid values are CSV, DYNAMODB_JSON or ION.
|
1937
|
+
*/
|
1938
|
+
InputFormat?: InputFormat;
|
1939
|
+
/**
|
1940
|
+
* The time at which this import task began.
|
1941
|
+
*/
|
1942
|
+
StartTime?: ImportStartTime;
|
1943
|
+
/**
|
1944
|
+
* The time at which this import task ended. (Does this include the successful complete creation of the table it was imported to?)
|
1945
|
+
*/
|
1946
|
+
EndTime?: ImportEndTime;
|
1947
|
+
}
|
1948
|
+
export type ImportSummaryList = ImportSummary[];
|
1949
|
+
export interface ImportTableDescription {
|
1950
|
+
/**
|
1951
|
+
* The Amazon Resource Number (ARN) corresponding to the import request.
|
1952
|
+
*/
|
1953
|
+
ImportArn?: ImportArn;
|
1954
|
+
/**
|
1955
|
+
* The status of the import.
|
1956
|
+
*/
|
1957
|
+
ImportStatus?: ImportStatus;
|
1958
|
+
/**
|
1959
|
+
* The Amazon Resource Number (ARN) of the table being imported into.
|
1960
|
+
*/
|
1961
|
+
TableArn?: TableArn;
|
1962
|
+
/**
|
1963
|
+
* The table id corresponding to the table created by import table process.
|
1964
|
+
*/
|
1965
|
+
TableId?: TableId;
|
1966
|
+
/**
|
1967
|
+
* The client token that was provided for the import task. Reusing the client token on retry makes a call to ImportTable idempotent.
|
1968
|
+
*/
|
1969
|
+
ClientToken?: ClientToken;
|
1970
|
+
/**
|
1971
|
+
* Values for the S3 bucket the source file is imported from. Includes bucket name (required), key prefix (optional) and bucket account owner ID (optional).
|
1972
|
+
*/
|
1973
|
+
S3BucketSource?: S3BucketSource;
|
1974
|
+
/**
|
1975
|
+
* The number of errors occurred on importing the source file into the target table.
|
1976
|
+
*/
|
1977
|
+
ErrorCount?: ErrorCount;
|
1978
|
+
/**
|
1979
|
+
* The Amazon Resource Number (ARN) of the Cloudwatch Log Group associated with the target table.
|
1980
|
+
*/
|
1981
|
+
CloudWatchLogGroupArn?: CloudWatchLogGroupArn;
|
1982
|
+
/**
|
1983
|
+
* The format of the source data going into the target table.
|
1984
|
+
*/
|
1985
|
+
InputFormat?: InputFormat;
|
1986
|
+
/**
|
1987
|
+
* The format options for the data that was imported into the target table. There is one value, CsvOption.
|
1988
|
+
*/
|
1989
|
+
InputFormatOptions?: InputFormatOptions;
|
1990
|
+
/**
|
1991
|
+
* The compression options for the data that has been imported into the target table. The values are NONE, GZIP, or ZSTD.
|
1992
|
+
*/
|
1993
|
+
InputCompressionType?: InputCompressionType;
|
1994
|
+
/**
|
1995
|
+
* The parameters for the new table that is being imported into.
|
1996
|
+
*/
|
1997
|
+
TableCreationParameters?: TableCreationParameters;
|
1998
|
+
/**
|
1999
|
+
* The time when this import task started.
|
2000
|
+
*/
|
2001
|
+
StartTime?: ImportStartTime;
|
2002
|
+
/**
|
2003
|
+
* The time at which the creation of the table associated with this import task completed.
|
2004
|
+
*/
|
2005
|
+
EndTime?: ImportEndTime;
|
2006
|
+
/**
|
2007
|
+
* The total size of data processed from the source file, in Bytes.
|
2008
|
+
*/
|
2009
|
+
ProcessedSizeBytes?: Long;
|
2010
|
+
/**
|
2011
|
+
* The total number of items processed from the source file.
|
2012
|
+
*/
|
2013
|
+
ProcessedItemCount?: ProcessedItemCount;
|
2014
|
+
/**
|
2015
|
+
* The number of items successfully imported into the new table.
|
2016
|
+
*/
|
2017
|
+
ImportedItemCount?: ImportedItemCount;
|
2018
|
+
/**
|
2019
|
+
* The error code corresponding to the failure that the import job ran into during execution.
|
2020
|
+
*/
|
2021
|
+
FailureCode?: FailureCode;
|
2022
|
+
/**
|
2023
|
+
* The error message corresponding to the failure that the import job ran into during execution.
|
2024
|
+
*/
|
2025
|
+
FailureMessage?: FailureMessage;
|
2026
|
+
}
|
2027
|
+
export interface ImportTableInput {
|
2028
|
+
/**
|
2029
|
+
* Providing a ClientToken makes the call to ImportTableInput idempotent, meaning that multiple identical calls have the same effect as one single call. A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent. If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an IdempotentParameterMismatch exception.
|
2030
|
+
*/
|
2031
|
+
ClientToken?: ClientToken;
|
2032
|
+
/**
|
2033
|
+
* The S3 bucket that provides the source for the import.
|
2034
|
+
*/
|
2035
|
+
S3BucketSource: S3BucketSource;
|
2036
|
+
/**
|
2037
|
+
* The format of the source data. Valid values for ImportFormat are CSV, DYNAMODB_JSON or ION.
|
2038
|
+
*/
|
2039
|
+
InputFormat: InputFormat;
|
2040
|
+
/**
|
2041
|
+
* Additional properties that specify how the input is formatted,
|
2042
|
+
*/
|
2043
|
+
InputFormatOptions?: InputFormatOptions;
|
2044
|
+
/**
|
2045
|
+
* Type of compression to be used on the input coming from the imported table.
|
2046
|
+
*/
|
2047
|
+
InputCompressionType?: InputCompressionType;
|
2048
|
+
/**
|
2049
|
+
* Parameters for the table to import the data into.
|
2050
|
+
*/
|
2051
|
+
TableCreationParameters: TableCreationParameters;
|
2052
|
+
}
|
2053
|
+
export interface ImportTableOutput {
|
2054
|
+
/**
|
2055
|
+
* Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
|
2056
|
+
*/
|
2057
|
+
ImportTableDescription: ImportTableDescription;
|
2058
|
+
}
|
2059
|
+
export type ImportedItemCount = number;
|
1858
2060
|
export type IndexName = string;
|
1859
2061
|
export type IndexStatus = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|string;
|
2062
|
+
export type InputCompressionType = "GZIP"|"ZSTD"|"NONE"|string;
|
2063
|
+
export type InputFormat = "DYNAMODB_JSON"|"ION"|"CSV"|string;
|
2064
|
+
export interface InputFormatOptions {
|
2065
|
+
/**
|
2066
|
+
* The options for imported source files in CSV format. The values are Delimiter and HeaderList.
|
2067
|
+
*/
|
2068
|
+
Csv?: CsvOptions;
|
2069
|
+
}
|
1860
2070
|
export type Integer = number;
|
1861
2071
|
export type IntegerObject = number;
|
1862
2072
|
export type ItemCollectionKeyAttributeMap = {[key: string]: AttributeValue};
|
@@ -2075,6 +2285,31 @@ declare namespace DynamoDB {
|
|
2075
2285
|
*/
|
2076
2286
|
LastEvaluatedGlobalTableName?: TableName;
|
2077
2287
|
}
|
2288
|
+
export interface ListImportsInput {
|
2289
|
+
/**
|
2290
|
+
* The Amazon Resource Name (ARN) associated with the table that was imported to.
|
2291
|
+
*/
|
2292
|
+
TableArn?: TableArn;
|
2293
|
+
/**
|
2294
|
+
* The number of ImportSummary objects returned in a single page.
|
2295
|
+
*/
|
2296
|
+
PageSize?: ListImportsMaxLimit;
|
2297
|
+
/**
|
2298
|
+
* An optional string that, if supplied, must be copied from the output of a previous call to ListImports. When provided in this manner, the API fetches the next page of results.
|
2299
|
+
*/
|
2300
|
+
NextToken?: ImportNextToken;
|
2301
|
+
}
|
2302
|
+
export type ListImportsMaxLimit = number;
|
2303
|
+
export interface ListImportsOutput {
|
2304
|
+
/**
|
2305
|
+
* A list of ImportSummary objects.
|
2306
|
+
*/
|
2307
|
+
ImportSummaryList?: ImportSummaryList;
|
2308
|
+
/**
|
2309
|
+
* If this value is returned, there are additional results to be displayed. To retrieve them, call ListImports again, with NextToken set to this value.
|
2310
|
+
*/
|
2311
|
+
NextToken?: ImportNextToken;
|
2312
|
+
}
|
2078
2313
|
export interface ListTablesInput {
|
2079
2314
|
/**
|
2080
2315
|
* The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.
|
@@ -2221,6 +2456,7 @@ declare namespace DynamoDB {
|
|
2221
2456
|
export type PositiveIntegerObject = number;
|
2222
2457
|
export type PositiveLongObject = number;
|
2223
2458
|
export type PreparedStatementParameters = AttributeValue[];
|
2459
|
+
export type ProcessedItemCount = number;
|
2224
2460
|
export interface Projection {
|
2225
2461
|
/**
|
2226
2462
|
* The set of attributes that are projected into the index: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - In addition to the attributes described in KEYS_ONLY, the secondary index will include other non-key attributes that you specify. ALL - All of the table attributes are projected into the index.
|
@@ -2802,6 +3038,20 @@ declare namespace DynamoDB {
|
|
2802
3038
|
export type ReturnValuesOnConditionCheckFailure = "ALL_OLD"|"NONE"|string;
|
2803
3039
|
export type S3Bucket = string;
|
2804
3040
|
export type S3BucketOwner = string;
|
3041
|
+
export interface S3BucketSource {
|
3042
|
+
/**
|
3043
|
+
* The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.
|
3044
|
+
*/
|
3045
|
+
S3BucketOwner?: S3BucketOwner;
|
3046
|
+
/**
|
3047
|
+
* The S3 bucket that is being imported from.
|
3048
|
+
*/
|
3049
|
+
S3Bucket: S3Bucket;
|
3050
|
+
/**
|
3051
|
+
* The key prefix shared by all S3 Objects that are being imported.
|
3052
|
+
*/
|
3053
|
+
S3KeyPrefix?: S3Prefix;
|
3054
|
+
}
|
2805
3055
|
export type S3Prefix = string;
|
2806
3056
|
export type S3SseAlgorithm = "AES256"|"KMS"|string;
|
2807
3057
|
export type S3SseKmsKeyId = string;
|
@@ -3033,6 +3283,30 @@ declare namespace DynamoDB {
|
|
3033
3283
|
LastUpdateDateTime?: _Date;
|
3034
3284
|
}
|
3035
3285
|
export type TableCreationDateTime = Date;
|
3286
|
+
export interface TableCreationParameters {
|
3287
|
+
/**
|
3288
|
+
* The name of the table created as part of the import operation.
|
3289
|
+
*/
|
3290
|
+
TableName: TableName;
|
3291
|
+
/**
|
3292
|
+
* The attributes of the table created as part of the import operation.
|
3293
|
+
*/
|
3294
|
+
AttributeDefinitions: AttributeDefinitions;
|
3295
|
+
/**
|
3296
|
+
* The primary key and option sort key of the table created as part of the import operation.
|
3297
|
+
*/
|
3298
|
+
KeySchema: KeySchema;
|
3299
|
+
/**
|
3300
|
+
* The billing mode for provisioning the table created as part of the import operation.
|
3301
|
+
*/
|
3302
|
+
BillingMode?: BillingMode;
|
3303
|
+
ProvisionedThroughput?: ProvisionedThroughput;
|
3304
|
+
SSESpecification?: SSESpecification;
|
3305
|
+
/**
|
3306
|
+
* The Global Secondary Indexes (GSI) of the table to be created as part of the import operation.
|
3307
|
+
*/
|
3308
|
+
GlobalSecondaryIndexes?: GlobalSecondaryIndexList;
|
3309
|
+
}
|
3036
3310
|
export interface TableDescription {
|
3037
3311
|
/**
|
3038
3312
|
* An array of AttributeDefinition objects. Each of these objects describes one attribute in the table and index key schema. Each AttributeDefinition object in this array is composed of: AttributeName - The name of the attribute. AttributeType - The data type for the attribute.
|
@@ -7185,6 +7185,35 @@ declare namespace EC2 {
|
|
7185
7185
|
}
|
7186
7186
|
export type ClientVpnRouteStatusCode = "creating"|"active"|"failed"|"deleting"|string;
|
7187
7187
|
export type ClientVpnSecurityGroupIdSet = SecurityGroupId[];
|
7188
|
+
export type CloudWatchLogGroupArn = string;
|
7189
|
+
export interface CloudWatchLogOptions {
|
7190
|
+
/**
|
7191
|
+
* Status of VPN tunnel logging feature. Default value is False. Valid values: True | False
|
7192
|
+
*/
|
7193
|
+
LogEnabled?: Boolean;
|
7194
|
+
/**
|
7195
|
+
* The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
|
7196
|
+
*/
|
7197
|
+
LogGroupArn?: String;
|
7198
|
+
/**
|
7199
|
+
* Configured log format. Default format is json. Valid values: json | text
|
7200
|
+
*/
|
7201
|
+
LogOutputFormat?: String;
|
7202
|
+
}
|
7203
|
+
export interface CloudWatchLogOptionsSpecification {
|
7204
|
+
/**
|
7205
|
+
* Enable or disable VPN tunnel logging feature. Default value is False. Valid values: True | False
|
7206
|
+
*/
|
7207
|
+
LogEnabled?: Boolean;
|
7208
|
+
/**
|
7209
|
+
* The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
|
7210
|
+
*/
|
7211
|
+
LogGroupArn?: CloudWatchLogGroupArn;
|
7212
|
+
/**
|
7213
|
+
* Set log format. Default format is json. Valid values: json | text
|
7214
|
+
*/
|
7215
|
+
LogOutputFormat?: String;
|
7216
|
+
}
|
7188
7217
|
export interface CoipAddressUsage {
|
7189
7218
|
/**
|
7190
7219
|
* The allocation ID of the address.
|
@@ -25550,6 +25579,10 @@ declare namespace EC2 {
|
|
25550
25579
|
* The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for Amazon Web Services to initiate the IKE negotiation. Valid Values: add | start Default: add
|
25551
25580
|
*/
|
25552
25581
|
StartupAction?: String;
|
25582
|
+
/**
|
25583
|
+
* Options for logging VPN tunnel activity.
|
25584
|
+
*/
|
25585
|
+
LogOptions?: VpnTunnelLogOptionsSpecification;
|
25553
25586
|
}
|
25554
25587
|
export interface MonitorInstancesRequest {
|
25555
25588
|
/**
|
@@ -33161,6 +33194,10 @@ declare namespace EC2 {
|
|
33161
33194
|
* The action to take when the establishing the VPN tunnels for a VPN connection.
|
33162
33195
|
*/
|
33163
33196
|
StartupAction?: String;
|
33197
|
+
/**
|
33198
|
+
* Options for logging VPN tunnel activity.
|
33199
|
+
*/
|
33200
|
+
LogOptions?: VpnTunnelLogOptions;
|
33164
33201
|
}
|
33165
33202
|
export type TunnelOptionsList = TunnelOption[];
|
33166
33203
|
export interface UnassignIpv6AddressesRequest {
|
@@ -34319,6 +34356,18 @@ declare namespace EC2 {
|
|
34319
34356
|
}
|
34320
34357
|
export type VpnStaticRouteList = VpnStaticRoute[];
|
34321
34358
|
export type VpnStaticRouteSource = "Static"|string;
|
34359
|
+
export interface VpnTunnelLogOptions {
|
34360
|
+
/**
|
34361
|
+
* Options for sending VPN tunnel logs to CloudWatch.
|
34362
|
+
*/
|
34363
|
+
CloudWatchLogOptions?: CloudWatchLogOptions;
|
34364
|
+
}
|
34365
|
+
export interface VpnTunnelLogOptionsSpecification {
|
34366
|
+
/**
|
34367
|
+
* Options for sending VPN tunnel logs to CloudWatch.
|
34368
|
+
*/
|
34369
|
+
CloudWatchLogOptions?: CloudWatchLogOptionsSpecification;
|
34370
|
+
}
|
34322
34371
|
export interface VpnTunnelOptionsSpecification {
|
34323
34372
|
/**
|
34324
34373
|
* The range of inside IPv4 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same virtual private gateway. Constraints: A size /30 CIDR block from the 169.254.0.0/16 range. The following CIDR blocks are reserved and cannot be used: 169.254.0.0/30 169.254.1.0/30 169.254.2.0/30 169.254.3.0/30 169.254.4.0/30 169.254.5.0/30 169.254.169.252/30
|
@@ -34392,6 +34441,10 @@ declare namespace EC2 {
|
|
34392
34441
|
* The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify start for Amazon Web Services to initiate the IKE negotiation. Valid Values: add | start Default: add
|
34393
34442
|
*/
|
34394
34443
|
StartupAction?: String;
|
34444
|
+
/**
|
34445
|
+
* Options for logging VPN tunnel activity.
|
34446
|
+
*/
|
34447
|
+
LogOptions?: VpnTunnelLogOptionsSpecification;
|
34395
34448
|
}
|
34396
34449
|
export type VpnTunnelOptionsSpecificationsList = VpnTunnelOptionsSpecification[];
|
34397
34450
|
export type WeekDay = "sunday"|"monday"|"tuesday"|"wednesday"|"thursday"|"friday"|"saturday"|string;
|
@@ -167,7 +167,7 @@ declare namespace Ivschat {
|
|
167
167
|
*/
|
168
168
|
name?: RoomName;
|
169
169
|
/**
|
170
|
-
* Tags to attach to the resource. Array of maps, each of the form string:string (key:value).
|
170
|
+
* Tags to attach to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented there.
|
171
171
|
*/
|
172
172
|
tags?: Tags;
|
173
173
|
}
|
@@ -336,7 +336,7 @@ declare namespace Ivschat {
|
|
336
336
|
}
|
337
337
|
export interface ListTagsForResourceResponse {
|
338
338
|
/**
|
339
|
-
* Tags
|
339
|
+
* Tags attached to the resource, from the request.
|
340
340
|
*/
|
341
341
|
tags: Tags;
|
342
342
|
}
|
@@ -384,7 +384,7 @@ declare namespace Ivschat {
|
|
384
384
|
*/
|
385
385
|
name?: RoomName;
|
386
386
|
/**
|
387
|
-
* Tags attached to the resource.
|
387
|
+
* Tags attached to the resource. See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented there.
|
388
388
|
*/
|
389
389
|
tags?: Tags;
|
390
390
|
/**
|
@@ -422,7 +422,7 @@ declare namespace Ivschat {
|
|
422
422
|
*/
|
423
423
|
resourceArn: ResourceArn;
|
424
424
|
/**
|
425
|
-
* Array of tags to be added or updated.
|
425
|
+
* Array of tags to be added or updated. See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented there.
|
426
426
|
*/
|
427
427
|
tags: Tags;
|
428
428
|
}
|
@@ -437,7 +437,7 @@ declare namespace Ivschat {
|
|
437
437
|
*/
|
438
438
|
resourceArn: ResourceArn;
|
439
439
|
/**
|
440
|
-
* Array of tags to be removed.
|
440
|
+
* Array of tags to be removed. See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented there.
|
441
441
|
*/
|
442
442
|
tagKeys: TagKeyList;
|
443
443
|
}
|