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.
- package/.jsii +5 -5
- 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 +20 -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/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 +105 -77
- 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/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/apis/rekognition-2016-06-27.examples.json +103 -0
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +252 -141
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.paginators.json +6 -0
- 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/dynamodb.d.ts +276 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +53 -0
- package/node_modules/aws-sdk/clients/kendra.d.ts +38 -6
- 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/networkmanager.d.ts +5 -0
- package/node_modules/aws-sdk/clients/rds.d.ts +36 -12
- package/node_modules/aws-sdk/clients/rekognition.d.ts +170 -3
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +11 -11
- package/node_modules/aws-sdk/clients/servicecatalog.d.ts +57 -57
- 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 +17 -17
- package/node_modules/aws-sdk/dist/aws-sdk.js +1355 -873
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +71 -71
- 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/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.js +7 -7
- package/node_modules/esbuild/package.json +22 -22
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/node_modules/object.assign/CHANGELOG.md +4 -0
- package/node_modules/object.assign/dist/browser.js +944 -0
- package/node_modules/object.assign/package.json +3 -2
- package/package.json +10 -10
@@ -180,6 +180,14 @@ declare class CloudWatch extends Service {
|
|
180
180
|
* Returns a list of the dashboards for your account. If you include DashboardNamePrefix, only those dashboards with names starting with the prefix are listed. Otherwise, all dashboards in your account are listed. ListDashboards returns up to 1000 results on one page. If there are more than 1000 dashboards, you can call ListDashboards again and include the value you received for NextToken in the first call, to receive the next 1000 results.
|
181
181
|
*/
|
182
182
|
listDashboards(callback?: (err: AWSError, data: CloudWatch.Types.ListDashboardsOutput) => void): Request<CloudWatch.Types.ListDashboardsOutput, AWSError>;
|
183
|
+
/**
|
184
|
+
* Returns a list that contains the number of managed Contributor Insights rules in your account.
|
185
|
+
*/
|
186
|
+
listManagedInsightRules(params: CloudWatch.Types.ListManagedInsightRulesInput, callback?: (err: AWSError, data: CloudWatch.Types.ListManagedInsightRulesOutput) => void): Request<CloudWatch.Types.ListManagedInsightRulesOutput, AWSError>;
|
187
|
+
/**
|
188
|
+
* Returns a list that contains the number of managed Contributor Insights rules in your account.
|
189
|
+
*/
|
190
|
+
listManagedInsightRules(callback?: (err: AWSError, data: CloudWatch.Types.ListManagedInsightRulesOutput) => void): Request<CloudWatch.Types.ListManagedInsightRulesOutput, AWSError>;
|
183
191
|
/**
|
184
192
|
* Returns a list of metric streams in this account.
|
185
193
|
*/
|
@@ -236,6 +244,14 @@ declare class CloudWatch extends Service {
|
|
236
244
|
* Creates a Contributor Insights rule. Rules evaluate log events in a CloudWatch Logs log group, enabling you to find contributor data for the log events in that log group. For more information, see Using Contributor Insights to Analyze High-Cardinality Data. If you create a rule, delete it, and then re-create it with the same name, historical data from the first time the rule was created might not be available.
|
237
245
|
*/
|
238
246
|
putInsightRule(callback?: (err: AWSError, data: CloudWatch.Types.PutInsightRuleOutput) => void): Request<CloudWatch.Types.PutInsightRuleOutput, AWSError>;
|
247
|
+
/**
|
248
|
+
* Creates a managed Contributor Insights rule for a specified Amazon Web Services resource. When you enable a managed rule, you create a Contributor Insights rule that collects data from Amazon Web Services services. You cannot edit these rules with PutInsightRule. The rules can be enabled, disabled, and deleted using EnableInsightRules, DisableInsightRules, and DeleteInsightRules. If a previously created managed rule is currently disabled, a subsequent call to this API will re-enable it. Use ListManagedInsightRules to describe all available rules.
|
249
|
+
*/
|
250
|
+
putManagedInsightRules(params: CloudWatch.Types.PutManagedInsightRulesInput, callback?: (err: AWSError, data: CloudWatch.Types.PutManagedInsightRulesOutput) => void): Request<CloudWatch.Types.PutManagedInsightRulesOutput, AWSError>;
|
251
|
+
/**
|
252
|
+
* Creates a managed Contributor Insights rule for a specified Amazon Web Services resource. When you enable a managed rule, you create a Contributor Insights rule that collects data from Amazon Web Services services. You cannot edit these rules with PutInsightRule. The rules can be enabled, disabled, and deleted using EnableInsightRules, DisableInsightRules, and DeleteInsightRules. If a previously created managed rule is currently disabled, a subsequent call to this API will re-enable it. Use ListManagedInsightRules to describe all available rules.
|
253
|
+
*/
|
254
|
+
putManagedInsightRules(callback?: (err: AWSError, data: CloudWatch.Types.PutManagedInsightRulesOutput) => void): Request<CloudWatch.Types.PutManagedInsightRulesOutput, AWSError>;
|
239
255
|
/**
|
240
256
|
* Creates or updates an alarm and associates it with the specified metric, metric math expression, or anomaly detection model. Alarms based on anomaly detection models cannot have Auto Scaling actions. When this operation creates an alarm, the alarm state is immediately set to INSUFFICIENT_DATA. The alarm is then evaluated and its state is set appropriately. Any actions associated with the new state are then executed. When you update an existing alarm, its state is left unchanged, but the update completely overwrites the previous configuration of the alarm. If you are an IAM user, you must have Amazon EC2 permissions for some alarm operations: The iam:CreateServiceLinkedRole for all alarms with EC2 actions The iam:CreateServiceLinkedRole to create an alarm with Systems Manager OpsItem actions. The first time you create an alarm in the Amazon Web Services Management Console, the CLI, or by using the PutMetricAlarm API, CloudWatch creates the necessary service-linked role for you. The service-linked roles are called AWSServiceRoleForCloudWatchEvents and AWSServiceRoleForCloudWatchAlarms_ActionSSM. For more information, see Amazon Web Services service-linked role. Cross-account alarms You can set an alarm on metrics in the current account, or in another account. To create a cross-account alarm that watches a metric in a different account, you must have completed the following pre-requisites: The account where the metrics are located (the sharing account) must already have a sharing role named CloudWatch-CrossAccountSharingRole. If it does not already have this role, you must create it using the instructions in Set up a sharing account in Cross-account cross-Region CloudWatch console. The policy for that role must grant access to the ID of the account where you are creating the alarm. The account where you are creating the alarm (the monitoring account) must already have a service-linked role named AWSServiceRoleForCloudWatchCrossAccount to allow CloudWatch to assume the sharing role in the sharing account. If it does not, you must create it following the directions in Set up a monitoring account in Cross-account cross-Region CloudWatch console.
|
241
257
|
*/
|
@@ -1099,7 +1115,7 @@ declare namespace CloudWatch {
|
|
1099
1115
|
*/
|
1100
1116
|
LastUpdateDate?: Timestamp;
|
1101
1117
|
/**
|
1102
|
-
* The output format for the stream. Valid values are json and opentelemetry0.7. For more information about metric stream output formats, see
|
1118
|
+
* The output format for the stream. Valid values are json and opentelemetry0.7. For more information about metric stream output formats, see Metric streams output formats.
|
1103
1119
|
*/
|
1104
1120
|
OutputFormat?: MetricStreamOutputFormat;
|
1105
1121
|
/**
|
@@ -1143,6 +1159,10 @@ declare namespace CloudWatch {
|
|
1143
1159
|
* The definition of the rule, as a JSON object. The definition contains the keywords used to define contributors, the value to aggregate on if this rule returns a sum instead of a count, and the filters. For details on the valid syntax, see Contributor Insights Rule Syntax.
|
1144
1160
|
*/
|
1145
1161
|
Definition: InsightRuleDefinition;
|
1162
|
+
/**
|
1163
|
+
* An optional built-in rule that Amazon Web Services manages.
|
1164
|
+
*/
|
1165
|
+
ManagedRule?: InsightRuleIsManaged;
|
1146
1166
|
}
|
1147
1167
|
export type InsightRuleAggregationStatistic = string;
|
1148
1168
|
export interface InsightRuleContributor {
|
@@ -1176,6 +1196,7 @@ declare namespace CloudWatch {
|
|
1176
1196
|
export type InsightRuleContributorKeys = InsightRuleContributorKey[];
|
1177
1197
|
export type InsightRuleContributors = InsightRuleContributor[];
|
1178
1198
|
export type InsightRuleDefinition = string;
|
1199
|
+
export type InsightRuleIsManaged = boolean;
|
1179
1200
|
export type InsightRuleMaxResults = number;
|
1180
1201
|
export interface InsightRuleMetricDatapoint {
|
1181
1202
|
/**
|
@@ -1250,6 +1271,30 @@ declare namespace CloudWatch {
|
|
1250
1271
|
*/
|
1251
1272
|
NextToken?: NextToken;
|
1252
1273
|
}
|
1274
|
+
export interface ListManagedInsightRulesInput {
|
1275
|
+
/**
|
1276
|
+
* The ARN of an Amazon Web Services resource that has managed Contributor Insights rules.
|
1277
|
+
*/
|
1278
|
+
ResourceARN: AmazonResourceName;
|
1279
|
+
/**
|
1280
|
+
* Include this value to get the next set of rules if the value was returned by the previous operation.
|
1281
|
+
*/
|
1282
|
+
NextToken?: NextToken;
|
1283
|
+
/**
|
1284
|
+
* The maximum number of results to return in one operation. If you omit this parameter, the default number is used. The default number is 100.
|
1285
|
+
*/
|
1286
|
+
MaxResults?: InsightRuleMaxResults;
|
1287
|
+
}
|
1288
|
+
export interface ListManagedInsightRulesOutput {
|
1289
|
+
/**
|
1290
|
+
* The managed rules that are available for the specified Amazon Web Services resource.
|
1291
|
+
*/
|
1292
|
+
ManagedRules?: ManagedRuleDescriptions;
|
1293
|
+
/**
|
1294
|
+
* Include this value to get the next set of rules if the value was returned by the previous operation.
|
1295
|
+
*/
|
1296
|
+
NextToken?: NextToken;
|
1297
|
+
}
|
1253
1298
|
export interface ListMetricStreamsInput {
|
1254
1299
|
/**
|
1255
1300
|
* Include this value, if it was returned by the previous call, to get the next set of metric streams.
|
@@ -1315,6 +1360,46 @@ declare namespace CloudWatch {
|
|
1315
1360
|
*/
|
1316
1361
|
Tags?: TagList;
|
1317
1362
|
}
|
1363
|
+
export interface ManagedRule {
|
1364
|
+
/**
|
1365
|
+
* The template name for the managed Contributor Insights rule, as returned by ListManagedInsightRules.
|
1366
|
+
*/
|
1367
|
+
TemplateName: TemplateName;
|
1368
|
+
/**
|
1369
|
+
* The ARN of an Amazon Web Services resource that has managed Contributor Insights rules.
|
1370
|
+
*/
|
1371
|
+
ResourceARN: AmazonResourceName;
|
1372
|
+
/**
|
1373
|
+
* A list of key-value pairs that you can associate with a managed Contributor Insights rule. You can associate as many as 50 tags with a rule. Tags can help you organize and categorize your resources. You also can use them to scope user permissions by granting a user permission to access or change only the resources that have certain tag values. To associate tags with a rule, you must have the cloudwatch:TagResource permission in addition to the cloudwatch:PutInsightRule permission. If you are using this operation to update an existing Contributor Insights rule, any tags that you specify in this parameter are ignored. To change the tags of an existing rule, use TagResource.
|
1374
|
+
*/
|
1375
|
+
Tags?: TagList;
|
1376
|
+
}
|
1377
|
+
export interface ManagedRuleDescription {
|
1378
|
+
/**
|
1379
|
+
* The template name for the managed rule. Used to enable managed rules using PutManagedInsightRules.
|
1380
|
+
*/
|
1381
|
+
TemplateName?: TemplateName;
|
1382
|
+
/**
|
1383
|
+
* If a managed rule is enabled, this is the ARN for the related Amazon Web Services resource.
|
1384
|
+
*/
|
1385
|
+
ResourceARN?: AmazonResourceName;
|
1386
|
+
/**
|
1387
|
+
* Describes the state of a managed rule. If present, it contains information about the Contributor Insights rule that contains information about the related Amazon Web Services resource.
|
1388
|
+
*/
|
1389
|
+
RuleState?: ManagedRuleState;
|
1390
|
+
}
|
1391
|
+
export type ManagedRuleDescriptions = ManagedRuleDescription[];
|
1392
|
+
export interface ManagedRuleState {
|
1393
|
+
/**
|
1394
|
+
* The name of the Contributor Insights rule that contains data for the specified Amazon Web Services resource.
|
1395
|
+
*/
|
1396
|
+
RuleName: InsightRuleName;
|
1397
|
+
/**
|
1398
|
+
* Indicates whether the rule is enabled or disabled.
|
1399
|
+
*/
|
1400
|
+
State: InsightRuleState;
|
1401
|
+
}
|
1402
|
+
export type ManagedRules = ManagedRule[];
|
1318
1403
|
export type MaxRecords = number;
|
1319
1404
|
export type MaxReturnedResultsCount = number;
|
1320
1405
|
export type Message = string;
|
@@ -1537,7 +1622,7 @@ declare namespace CloudWatch {
|
|
1537
1622
|
*/
|
1538
1623
|
StatisticValues?: StatisticSet;
|
1539
1624
|
/**
|
1540
|
-
* Array of numbers representing the values for the metric during the period. Each unique value is listed just once in this array, and the corresponding number in the Counts array specifies the number of times that value occurred during the period. You can include up to
|
1625
|
+
* Array of numbers representing the values for the metric during the period. Each unique value is listed just once in this array, and the corresponding number in the Counts array specifies the number of times that value occurred during the period. You can include up to 150 unique values in each PutMetricData action that specifies a Values array. Although the Values array accepts numbers of type Double, CloudWatch rejects values that are either too small or too large. Values must be in the range of -2^360 to 2^360. In addition, special values (for example, NaN, +Infinity, -Infinity) are not supported.
|
1541
1626
|
*/
|
1542
1627
|
Values?: Values;
|
1543
1628
|
/**
|
@@ -1786,6 +1871,18 @@ declare namespace CloudWatch {
|
|
1786
1871
|
}
|
1787
1872
|
export interface PutInsightRuleOutput {
|
1788
1873
|
}
|
1874
|
+
export interface PutManagedInsightRulesInput {
|
1875
|
+
/**
|
1876
|
+
* A list of ManagedRules to enable.
|
1877
|
+
*/
|
1878
|
+
ManagedRules: ManagedRules;
|
1879
|
+
}
|
1880
|
+
export interface PutManagedInsightRulesOutput {
|
1881
|
+
/**
|
1882
|
+
* An array that lists the rules that could not be enabled.
|
1883
|
+
*/
|
1884
|
+
Failures?: BatchFailures;
|
1885
|
+
}
|
1789
1886
|
export interface PutMetricAlarmInput {
|
1790
1887
|
/**
|
1791
1888
|
* The name for the alarm. This name must be unique within the Region.
|
@@ -2048,6 +2145,7 @@ declare namespace CloudWatch {
|
|
2048
2145
|
export interface TagResourceOutput {
|
2049
2146
|
}
|
2050
2147
|
export type TagValue = string;
|
2148
|
+
export type TemplateName = string;
|
2051
2149
|
export type Threshold = number;
|
2052
2150
|
export type Timestamp = Date;
|
2053
2151
|
export type Timestamps = Timestamp[];
|
@@ -2475,7 +2475,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
2475
2475
|
export type EventFilterType = "SIGN_IN"|"PASSWORD_CHANGE"|"SIGN_UP"|string;
|
2476
2476
|
export type EventFiltersType = EventFilterType[];
|
2477
2477
|
export type EventIdType = string;
|
2478
|
-
export type EventResponseType = "
|
2478
|
+
export type EventResponseType = "Pass"|"Fail"|"InProgress"|string;
|
2479
2479
|
export interface EventRiskType {
|
2480
2480
|
/**
|
2481
2481
|
* The risk decision.
|
@@ -2490,7 +2490,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
2490
2490
|
*/
|
2491
2491
|
CompromisedCredentialsDetected?: WrappedBooleanType;
|
2492
2492
|
}
|
2493
|
-
export type EventType = "SignIn"|"SignUp"|"ForgotPassword"|string;
|
2493
|
+
export type EventType = "SignIn"|"SignUp"|"ForgotPassword"|"PasswordChange"|"ResendCode"|string;
|
2494
2494
|
export type ExplicitAuthFlowsListType = ExplicitAuthFlowsType[];
|
2495
2495
|
export type ExplicitAuthFlowsType = "ADMIN_NO_SRP_AUTH"|"CUSTOM_AUTH_FLOW_ONLY"|"USER_PASSWORD_AUTH"|"ALLOW_ADMIN_USER_PASSWORD_AUTH"|"ALLOW_CUSTOM_AUTH"|"ALLOW_USER_PASSWORD_AUTH"|"ALLOW_USER_SRP_AUTH"|"ALLOW_REFRESH_TOKEN_AUTH"|string;
|
2496
2496
|
export type FeedbackValueType = "Valid"|"Invalid"|string;
|
@@ -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;
|