cdk-lambda-subminute 2.0.374 → 2.0.376
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-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +375 -24
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +2 -1
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +61 -24
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +17 -15
- package/node_modules/aws-sdk/apis/qbusiness-2023-11-27.min.json +85 -30
- package/node_modules/aws-sdk/clients/controltower.d.ts +374 -11
- package/node_modules/aws-sdk/clients/lightsail.d.ts +4 -0
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +48 -7
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +11 -2
- package/node_modules/aws-sdk/clients/qbusiness.d.ts +67 -3
- package/node_modules/aws-sdk/clients/securitylake.d.ts +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +84 -94
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +2127 -2147
- package/node_modules/aws-sdk/dist/aws-sdk.js +20 -18
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +7 -7
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/call-bind/CHANGELOG.md +7 -0
- package/node_modules/call-bind/index.js +1 -10
- package/node_modules/call-bind/package.json +4 -3
- package/node_modules/define-data-property/CHANGELOG.md +7 -0
- package/node_modules/define-data-property/index.js +1 -13
- package/node_modules/define-data-property/package.json +4 -5
- package/node_modules/es-define-property/.eslintrc +13 -0
- package/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/node_modules/es-define-property/.nycrc +9 -0
- package/node_modules/es-define-property/CHANGELOG.md +15 -0
- package/node_modules/es-define-property/LICENSE +21 -0
- package/node_modules/es-define-property/README.md +49 -0
- package/node_modules/es-define-property/index.d.ts +3 -0
- package/node_modules/es-define-property/index.js +16 -0
- package/node_modules/es-define-property/package.json +81 -0
- package/node_modules/es-define-property/test/index.js +55 -0
- package/node_modules/es-define-property/tsconfig.json +50 -0
- package/node_modules/has-property-descriptors/CHANGELOG.md +8 -0
- package/node_modules/has-property-descriptors/index.js +3 -14
- package/node_modules/has-property-descriptors/package.json +5 -5
- package/package.json +3 -3
@@ -650,6 +650,10 @@ declare namespace LookoutEquipment {
|
|
650
650
|
* Indicates that the asset associated with this sensor has been shut off. As long as this condition is met, Lookout for Equipment will not use data from this asset for training, evaluation, or inference.
|
651
651
|
*/
|
652
652
|
OffCondition?: OffCondition;
|
653
|
+
/**
|
654
|
+
* The Amazon S3 location where you want Amazon Lookout for Equipment to save the pointwise model diagnostics. You must also specify the RoleArn request parameter.
|
655
|
+
*/
|
656
|
+
ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
|
653
657
|
}
|
654
658
|
export interface CreateModelResponse {
|
655
659
|
/**
|
@@ -935,7 +939,7 @@ declare namespace LookoutEquipment {
|
|
935
939
|
*/
|
936
940
|
DataQualitySummary?: DataQualitySummary;
|
937
941
|
/**
|
938
|
-
*
|
942
|
+
* IngestedFilesSummary associated with the given dataset for the latest successful associated ingestion job id.
|
939
943
|
*/
|
940
944
|
IngestedFilesSummary?: IngestedFilesSummary;
|
941
945
|
/**
|
@@ -1266,6 +1270,10 @@ declare namespace LookoutEquipment {
|
|
1266
1270
|
* Indicates the status of the retraining scheduler.
|
1267
1271
|
*/
|
1268
1272
|
RetrainingSchedulerStatus?: RetrainingSchedulerStatus;
|
1273
|
+
/**
|
1274
|
+
* Configuration information for the model's pointwise model diagnostics.
|
1275
|
+
*/
|
1276
|
+
ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
|
1269
1277
|
}
|
1270
1278
|
export interface DescribeModelVersionRequest {
|
1271
1279
|
/**
|
@@ -1400,6 +1408,14 @@ declare namespace LookoutEquipment {
|
|
1400
1408
|
* Indicates the reason for the AutoPromotionResult. For example, a model might not be promoted if its performance was worse than the active version, if there was an error during training, or if the retraining scheduler was using MANUAL promote mode. The model will be promoted in MANAGED promote mode if the performance is better than the previous model.
|
1401
1409
|
*/
|
1402
1410
|
AutoPromotionResultReason?: AutoPromotionResultReason;
|
1411
|
+
/**
|
1412
|
+
* The Amazon S3 location where Amazon Lookout for Equipment saves the pointwise model diagnostics for the model version.
|
1413
|
+
*/
|
1414
|
+
ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
|
1415
|
+
/**
|
1416
|
+
* The Amazon S3 output prefix for where Lookout for Equipment saves the pointwise model diagnostics for the model version.
|
1417
|
+
*/
|
1418
|
+
ModelDiagnosticsResultsObject?: S3Object;
|
1403
1419
|
}
|
1404
1420
|
export interface DescribeResourcePolicyRequest {
|
1405
1421
|
/**
|
@@ -1804,7 +1820,7 @@ declare namespace LookoutEquipment {
|
|
1804
1820
|
*/
|
1805
1821
|
MissingCompleteSensorData: MissingCompleteSensorData;
|
1806
1822
|
/**
|
1807
|
-
* Parameter that describes the total number of sensors that have a short date range of less than
|
1823
|
+
* Parameter that describes the total number of sensors that have a short date range of less than 14 days of data overall.
|
1808
1824
|
*/
|
1809
1825
|
SensorsWithShortDateRange: SensorsWithShortDateRange;
|
1810
1826
|
}
|
@@ -2034,7 +2050,7 @@ declare namespace LookoutEquipment {
|
|
2034
2050
|
*/
|
2035
2051
|
NextToken?: NextToken;
|
2036
2052
|
/**
|
2037
|
-
* Provides an array of information about the individual inference executions returned from the ListInferenceExecutions operation, including model used, inference scheduler, data configuration, and so on.
|
2053
|
+
* Provides an array of information about the individual inference executions returned from the ListInferenceExecutions operation, including model used, inference scheduler, data configuration, and so on. If you don't supply the InferenceSchedulerName request parameter, or if you supply the name of an inference scheduler that doesn't exist, ListInferenceExecutions returns an empty array in InferenceExecutionSummaries.
|
2038
2054
|
*/
|
2039
2055
|
InferenceExecutionSummaries?: InferenceExecutionSummaries;
|
2040
2056
|
}
|
@@ -2096,7 +2112,7 @@ declare namespace LookoutEquipment {
|
|
2096
2112
|
}
|
2097
2113
|
export interface ListLabelsRequest {
|
2098
2114
|
/**
|
2099
|
-
*
|
2115
|
+
* Returns the name of the label group.
|
2100
2116
|
*/
|
2101
2117
|
LabelGroupName: LabelGroupName;
|
2102
2118
|
/**
|
@@ -2130,7 +2146,7 @@ declare namespace LookoutEquipment {
|
|
2130
2146
|
*/
|
2131
2147
|
NextToken?: NextToken;
|
2132
2148
|
/**
|
2133
|
-
* A summary of the items in the label group.
|
2149
|
+
* A summary of the items in the label group. If you don't supply the LabelGroupName request parameter, or if you supply the name of a label group that doesn't exist, ListLabels returns an empty array in LabelSummaries.
|
2134
2150
|
*/
|
2135
2151
|
LabelSummaries?: LabelSummaries;
|
2136
2152
|
}
|
@@ -2178,7 +2194,7 @@ declare namespace LookoutEquipment {
|
|
2178
2194
|
*/
|
2179
2195
|
NextToken?: NextToken;
|
2180
2196
|
/**
|
2181
|
-
* Provides information on the specified model version, including the created time, model and dataset ARNs, and status.
|
2197
|
+
* Provides information on the specified model version, including the created time, model and dataset ARNs, and status. If you don't supply the ModelName request parameter, or if you supply the name of a model that doesn't exist, ListModelVersions returns an empty array in ModelVersionSummaries.
|
2182
2198
|
*/
|
2183
2199
|
ModelVersionSummaries?: ModelVersionSummaries;
|
2184
2200
|
}
|
@@ -2302,6 +2318,26 @@ declare namespace LookoutEquipment {
|
|
2302
2318
|
TotalNumberOfMissingValues: Integer;
|
2303
2319
|
}
|
2304
2320
|
export type ModelArn = string;
|
2321
|
+
export interface ModelDiagnosticsOutputConfiguration {
|
2322
|
+
/**
|
2323
|
+
* The Amazon S3 location for the pointwise model diagnostics.
|
2324
|
+
*/
|
2325
|
+
S3OutputConfiguration: ModelDiagnosticsS3OutputConfiguration;
|
2326
|
+
/**
|
2327
|
+
* The Amazon Web Services Key Management Service (KMS) key identifier to encrypt the pointwise model diagnostics files.
|
2328
|
+
*/
|
2329
|
+
KmsKeyId?: NameOrArn;
|
2330
|
+
}
|
2331
|
+
export interface ModelDiagnosticsS3OutputConfiguration {
|
2332
|
+
/**
|
2333
|
+
* The name of the Amazon S3 bucket where the pointwise model diagnostics are located. You must be the owner of the Amazon S3 bucket.
|
2334
|
+
*/
|
2335
|
+
Bucket: S3Bucket;
|
2336
|
+
/**
|
2337
|
+
* The Amazon S3 prefix for the location of the pointwise model diagnostics. The prefix specifies the folder and evaluation result file name. (bucket). When you call CreateModel or UpdateModel, specify the path within the bucket that you want Lookout for Equipment to save the model to. During training, Lookout for Equipment creates the model evaluation model as a compressed JSON file with the name model_diagnostics_results.json.gz. When you call DescribeModel or DescribeModelVersion, prefix contains the file path and filename of the model evaluation file.
|
2338
|
+
*/
|
2339
|
+
Prefix?: S3Prefix;
|
2340
|
+
}
|
2305
2341
|
export type ModelMetrics = string;
|
2306
2342
|
export type ModelName = string;
|
2307
2343
|
export type ModelPromoteMode = "MANAGED"|"MANUAL"|string;
|
@@ -2360,6 +2396,7 @@ declare namespace LookoutEquipment {
|
|
2360
2396
|
* Indicates the status of the retraining scheduler.
|
2361
2397
|
*/
|
2362
2398
|
RetrainingSchedulerStatus?: RetrainingSchedulerStatus;
|
2399
|
+
ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
|
2363
2400
|
}
|
2364
2401
|
export type ModelVersion = number;
|
2365
2402
|
export type ModelVersionArn = string;
|
@@ -2547,7 +2584,7 @@ declare namespace LookoutEquipment {
|
|
2547
2584
|
}
|
2548
2585
|
export interface SensorsWithShortDateRange {
|
2549
2586
|
/**
|
2550
|
-
* Indicates the number of sensors that have less than
|
2587
|
+
* Indicates the number of sensors that have less than 14 days of data.
|
2551
2588
|
*/
|
2552
2589
|
AffectedSensorCount: Integer;
|
2553
2590
|
}
|
@@ -2805,6 +2842,10 @@ declare namespace LookoutEquipment {
|
|
2805
2842
|
* The ARN of the model to update.
|
2806
2843
|
*/
|
2807
2844
|
RoleArn?: IamRoleArn;
|
2845
|
+
/**
|
2846
|
+
* The Amazon S3 location where you want Amazon Lookout for Equipment to save the pointwise model diagnostics for the model. You must also specify the RoleArn request parameter.
|
2847
|
+
*/
|
2848
|
+
ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
|
2808
2849
|
}
|
2809
2850
|
export interface UpdateRetrainingSchedulerRequest {
|
2810
2851
|
/**
|
@@ -12,11 +12,11 @@ declare class MarketplaceCatalog extends Service {
|
|
12
12
|
constructor(options?: MarketplaceCatalog.Types.ClientConfiguration)
|
13
13
|
config: Config & MarketplaceCatalog.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Returns metadata and content for multiple entities.
|
15
|
+
* Returns metadata and content for multiple entities. This is the Batch version of the DescribeEntity API and uses the same IAM permission action as DescribeEntity API.
|
16
16
|
*/
|
17
17
|
batchDescribeEntities(params: MarketplaceCatalog.Types.BatchDescribeEntitiesRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.BatchDescribeEntitiesResponse) => void): Request<MarketplaceCatalog.Types.BatchDescribeEntitiesResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
* Returns metadata and content for multiple entities.
|
19
|
+
* Returns metadata and content for multiple entities. This is the Batch version of the DescribeEntity API and uses the same IAM permission action as DescribeEntity API.
|
20
20
|
*/
|
21
21
|
batchDescribeEntities(callback?: (err: AWSError, data: MarketplaceCatalog.Types.BatchDescribeEntitiesResponse) => void): Request<MarketplaceCatalog.Types.BatchDescribeEntitiesResponse, AWSError>;
|
22
22
|
/**
|
@@ -541,6 +541,10 @@ declare namespace MarketplaceCatalog {
|
|
541
541
|
* The optional name provided in the StartChangeSet request. If you do not provide a name, one is set by default.
|
542
542
|
*/
|
543
543
|
ChangeSetName?: ChangeSetName;
|
544
|
+
/**
|
545
|
+
* The optional intent provided in the StartChangeSet request. If you do not provide an intent, APPLY is set by default.
|
546
|
+
*/
|
547
|
+
Intent?: Intent;
|
544
548
|
/**
|
545
549
|
* The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the request started.
|
546
550
|
*/
|
@@ -793,6 +797,7 @@ declare namespace MarketplaceCatalog {
|
|
793
797
|
Policy?: ResourcePolicyJson;
|
794
798
|
}
|
795
799
|
export type Identifier = string;
|
800
|
+
export type Intent = "VALIDATE"|"APPLY"|string;
|
796
801
|
export type Json = string;
|
797
802
|
export interface JsonDocumentType {
|
798
803
|
}
|
@@ -1494,6 +1499,10 @@ declare namespace MarketplaceCatalog {
|
|
1494
1499
|
* A list of objects specifying each key name and value for the ChangeSetTags property.
|
1495
1500
|
*/
|
1496
1501
|
ChangeSetTags?: TagList;
|
1502
|
+
/**
|
1503
|
+
* The intent related to the request. The default is APPLY. To test your request before applying changes to your entities, use VALIDATE. This feature is currently available for adding versions to single-AMI products. For more information, see Add a new version.
|
1504
|
+
*/
|
1505
|
+
Intent?: Intent;
|
1497
1506
|
}
|
1498
1507
|
export interface StartChangeSetResponse {
|
1499
1508
|
/**
|
@@ -760,6 +760,7 @@ declare namespace QBusiness {
|
|
760
760
|
systemMessageOverride?: SystemMessageOverride;
|
761
761
|
}
|
762
762
|
export type Boolean = boolean;
|
763
|
+
export type BoostingDurationInSeconds = number;
|
763
764
|
export interface ChatSyncInput {
|
764
765
|
/**
|
765
766
|
* A request from an end user to perform an Amazon Q plugin action.
|
@@ -1226,6 +1227,16 @@ declare namespace QBusiness {
|
|
1226
1227
|
subnetIds: SubnetIds;
|
1227
1228
|
}
|
1228
1229
|
export type DataSources = DataSource[];
|
1230
|
+
export interface DateAttributeBoostingConfiguration {
|
1231
|
+
/**
|
1232
|
+
* Specifies the duration, in seconds, of a boost applies to a DATE type document attribute.
|
1233
|
+
*/
|
1234
|
+
boostingDurationInSeconds?: BoostingDurationInSeconds;
|
1235
|
+
/**
|
1236
|
+
* Specifies how much a document attribute is boosted.
|
1237
|
+
*/
|
1238
|
+
boostingLevel: DocumentAttributeBoostingLevel;
|
1239
|
+
}
|
1229
1240
|
export interface DeleteApplicationRequest {
|
1230
1241
|
/**
|
1231
1242
|
* The identifier of the Amazon Q application.
|
@@ -1402,6 +1413,26 @@ declare namespace QBusiness {
|
|
1402
1413
|
*/
|
1403
1414
|
value: DocumentAttributeValue;
|
1404
1415
|
}
|
1416
|
+
export interface DocumentAttributeBoostingConfiguration {
|
1417
|
+
/**
|
1418
|
+
* Provides information on boosting DATE type document attributes.
|
1419
|
+
*/
|
1420
|
+
dateConfiguration?: DateAttributeBoostingConfiguration;
|
1421
|
+
/**
|
1422
|
+
* Provides information on boosting NUMBER type document attributes.
|
1423
|
+
*/
|
1424
|
+
numberConfiguration?: NumberAttributeBoostingConfiguration;
|
1425
|
+
/**
|
1426
|
+
* Provides information on boosting STRING type document attributes.
|
1427
|
+
*/
|
1428
|
+
stringConfiguration?: StringAttributeBoostingConfiguration;
|
1429
|
+
/**
|
1430
|
+
* Provides information on boosting STRING_LIST type document attributes.
|
1431
|
+
*/
|
1432
|
+
stringListConfiguration?: StringListAttributeBoostingConfiguration;
|
1433
|
+
}
|
1434
|
+
export type DocumentAttributeBoostingLevel = "NONE"|"LOW"|"MEDIUM"|"HIGH"|"VERY_HIGH"|string;
|
1435
|
+
export type DocumentAttributeBoostingOverrideMap = {[key: string]: DocumentAttributeBoostingConfiguration};
|
1405
1436
|
export interface DocumentAttributeCondition {
|
1406
1437
|
/**
|
1407
1438
|
* The identifier of the document attribute used for the condition. For example, 'Source_URI' could be an identifier for the attribute or metadata field that contains source URIs associated with the documents. Amazon Q currently doesn't support _document_body as an attribute key used for the condition.
|
@@ -2510,16 +2541,31 @@ declare namespace QBusiness {
|
|
2510
2541
|
*/
|
2511
2542
|
usefulness: MessageUsefulness;
|
2512
2543
|
}
|
2513
|
-
export type MessageUsefulnessReason = "NOT_FACTUALLY_CORRECT"|"HARMFUL_OR_UNSAFE"|"INCORRECT_OR_MISSING_SOURCES"|"NOT_HELPFUL"|"FACTUALLY_CORRECT"|"COMPLETE"|"RELEVANT_SOURCES"|"HELPFUL"|string;
|
2544
|
+
export type MessageUsefulnessReason = "NOT_FACTUALLY_CORRECT"|"HARMFUL_OR_UNSAFE"|"INCORRECT_OR_MISSING_SOURCES"|"NOT_HELPFUL"|"FACTUALLY_CORRECT"|"COMPLETE"|"RELEVANT_SOURCES"|"HELPFUL"|"NOT_BASED_ON_DOCUMENTS"|"NOT_COMPLETE"|"NOT_CONCISE"|"OTHER"|string;
|
2514
2545
|
export type Messages = Message[];
|
2515
2546
|
export type MetricValue = string;
|
2516
2547
|
export interface NativeIndexConfiguration {
|
2548
|
+
/**
|
2549
|
+
* Overrides the default boosts applied by Amazon Q to supported document attribute data types.
|
2550
|
+
*/
|
2551
|
+
boostingOverride?: DocumentAttributeBoostingOverrideMap;
|
2517
2552
|
/**
|
2518
2553
|
* The identifier for the Amazon Q index.
|
2519
2554
|
*/
|
2520
2555
|
indexId: IndexId;
|
2521
2556
|
}
|
2522
2557
|
export type NextToken = string;
|
2558
|
+
export interface NumberAttributeBoostingConfiguration {
|
2559
|
+
/**
|
2560
|
+
* Specifies the duration, in seconds, of a boost applies to a NUMBER type document attribute.
|
2561
|
+
*/
|
2562
|
+
boostingLevel: DocumentAttributeBoostingLevel;
|
2563
|
+
/**
|
2564
|
+
* Specifies how much a document attribute is boosted.
|
2565
|
+
*/
|
2566
|
+
boostingType?: NumberAttributeBoostingType;
|
2567
|
+
}
|
2568
|
+
export type NumberAttributeBoostingType = "PRIORITIZE_LARGER_VALUES"|"PRIORITIZE_SMALLER_VALUES"|string;
|
2523
2569
|
export interface OAuth2ClientCredentialConfiguration {
|
2524
2570
|
/**
|
2525
2571
|
* The ARN of an IAM role used by Amazon Q to access the OAuth 2.0 authentication credentials stored in a Secrets Manager secret.
|
@@ -2721,7 +2767,7 @@ declare namespace QBusiness {
|
|
2721
2767
|
*/
|
2722
2768
|
ruleConfiguration?: RuleConfiguration;
|
2723
2769
|
/**
|
2724
|
-
* The type
|
2770
|
+
* The type of rule.
|
2725
2771
|
*/
|
2726
2772
|
ruleType: RuleType;
|
2727
2773
|
}
|
@@ -2834,6 +2880,24 @@ declare namespace QBusiness {
|
|
2834
2880
|
export interface StopDataSourceSyncJobResponse {
|
2835
2881
|
}
|
2836
2882
|
export type String = string;
|
2883
|
+
export interface StringAttributeBoostingConfiguration {
|
2884
|
+
/**
|
2885
|
+
* Specifies specific values of a STRING type document attribute being boosted.
|
2886
|
+
*/
|
2887
|
+
attributeValueBoosting?: StringAttributeValueBoosting;
|
2888
|
+
/**
|
2889
|
+
* Specifies how much a document attribute is boosted.
|
2890
|
+
*/
|
2891
|
+
boostingLevel: DocumentAttributeBoostingLevel;
|
2892
|
+
}
|
2893
|
+
export type StringAttributeValueBoosting = {[key: string]: StringAttributeValueBoostingLevel};
|
2894
|
+
export type StringAttributeValueBoostingLevel = "LOW"|"MEDIUM"|"HIGH"|"VERY_HIGH"|string;
|
2895
|
+
export interface StringListAttributeBoostingConfiguration {
|
2896
|
+
/**
|
2897
|
+
* Specifies how much a document attribute is boosted.
|
2898
|
+
*/
|
2899
|
+
boostingLevel: DocumentAttributeBoostingLevel;
|
2900
|
+
}
|
2837
2901
|
export type SubnetId = string;
|
2838
2902
|
export type SubnetIds = SubnetId[];
|
2839
2903
|
export type SyncSchedule = string;
|
@@ -2890,7 +2954,7 @@ declare namespace QBusiness {
|
|
2890
2954
|
export type Title = string;
|
2891
2955
|
export interface TopicConfiguration {
|
2892
2956
|
/**
|
2893
|
-
* A description for your topic control configuration. Use this outline how the large language model (LLM) should use this topic control configuration.
|
2957
|
+
* A description for your topic control configuration. Use this to outline how the large language model (LLM) should use this topic control configuration.
|
2894
2958
|
*/
|
2895
2959
|
description?: TopicDescription;
|
2896
2960
|
/**
|
@@ -585,7 +585,7 @@ declare namespace SecurityLake {
|
|
585
585
|
export type DataLakeLifecycleTransitionList = DataLakeLifecycleTransition[];
|
586
586
|
export interface DataLakeReplicationConfiguration {
|
587
587
|
/**
|
588
|
-
* Replication enables automatic, asynchronous copying of objects across Amazon S3 buckets.
|
588
|
+
* Specifies one or more centralized rollup Regions. The Amazon Web Services Region specified in the region parameter of the CreateDataLake or UpdateDataLake operations contributes data to the rollup Region or Regions specified in this parameter. Replication enables automatic, asynchronous copying of objects across Amazon S3 buckets. S3 buckets that are configured for object replication can be owned by the same Amazon Web Services account or by different accounts. You can replicate objects to a single destination bucket or to multiple destination buckets. The destination buckets can be in different Regions or within the same Region as the source bucket.
|
589
589
|
*/
|
590
590
|
regions?: RegionList;
|
591
591
|
/**
|
@@ -848,7 +848,7 @@ declare namespace SecurityLake {
|
|
848
848
|
*/
|
849
849
|
nextToken?: NextToken;
|
850
850
|
/**
|
851
|
-
*
|
851
|
+
* The Amazon Web Services Regions from which exceptions are retrieved.
|
852
852
|
*/
|
853
853
|
regions?: RegionList;
|
854
854
|
}
|
@@ -864,7 +864,7 @@ declare namespace SecurityLake {
|
|
864
864
|
}
|
865
865
|
export interface ListDataLakesRequest {
|
866
866
|
/**
|
867
|
-
* The list of
|
867
|
+
* The list of Regions where Security Lake is enabled.
|
868
868
|
*/
|
869
869
|
regions?: RegionList;
|
870
870
|
}
|
@@ -888,7 +888,7 @@ declare namespace SecurityLake {
|
|
888
888
|
*/
|
889
889
|
nextToken?: NextToken;
|
890
890
|
/**
|
891
|
-
* The list of
|
891
|
+
* The list of Regions for which log sources are displayed.
|
892
892
|
*/
|
893
893
|
regions?: RegionList;
|
894
894
|
/**
|