cdk-docker-image-deployment 0.0.95 → 0.0.97
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/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +81 -19
- package/node_modules/aws-sdk/apis/ce-2017-10-25.min.json +2 -1
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +48 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +518 -184
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +41 -7
- package/node_modules/aws-sdk/apis/kms-2014-11-01.examples.json +42 -14
- package/node_modules/aws-sdk/apis/sagemaker-featurestore-runtime-2020-07-01.min.json +12 -0
- package/node_modules/aws-sdk/clients/billingconductor.d.ts +55 -2
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +42 -1
- package/node_modules/aws-sdk/clients/connect.d.ts +361 -2
- package/node_modules/aws-sdk/clients/costexplorer.d.ts +4 -0
- package/node_modules/aws-sdk/clients/eks.d.ts +46 -2
- package/node_modules/aws-sdk/clients/kms.d.ts +3 -3
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemakerfeaturestoreruntime.d.ts +15 -5
- 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 +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +577 -189
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +87 -87
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
|
@@ -20,11 +20,11 @@ declare class SageMakerFeatureStoreRuntime extends Service {
|
|
|
20
20
|
*/
|
|
21
21
|
batchGetRecord(callback?: (err: AWSError, data: SageMakerFeatureStoreRuntime.Types.BatchGetRecordResponse) => void): Request<SageMakerFeatureStoreRuntime.Types.BatchGetRecordResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Deletes a Record from a FeatureGroup.
|
|
23
|
+
* Deletes a Record from a FeatureGroup. When the DeleteRecord API is called a new record will be added to the OfflineStore and the Record will be removed from the OnlineStore. This record will have a value of True in the is_deleted column.
|
|
24
24
|
*/
|
|
25
25
|
deleteRecord(params: SageMakerFeatureStoreRuntime.Types.DeleteRecordRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Deletes a Record from a FeatureGroup.
|
|
27
|
+
* Deletes a Record from a FeatureGroup. When the DeleteRecord API is called a new record will be added to the OfflineStore and the Record will be removed from the OnlineStore. This record will have a value of True in the is_deleted column.
|
|
28
28
|
*/
|
|
29
29
|
deleteRecord(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
30
30
|
/**
|
|
@@ -55,7 +55,7 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
|
55
55
|
*/
|
|
56
56
|
RecordIdentifierValueAsString: ValueAsString;
|
|
57
57
|
/**
|
|
58
|
-
* The error code of an error that has occured when attempting to retrieve a batch of Records. For more information on errors, see
|
|
58
|
+
* The error code of an error that has occured when attempting to retrieve a batch of Records. For more information on errors, see Errors.
|
|
59
59
|
*/
|
|
60
60
|
ErrorCode: ValueAsString;
|
|
61
61
|
/**
|
|
@@ -91,7 +91,7 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
|
91
91
|
*/
|
|
92
92
|
Records: BatchGetRecordResultDetails;
|
|
93
93
|
/**
|
|
94
|
-
* A list of errors that have
|
|
94
|
+
* A list of errors that have occurred when retrieving a batch of Records.
|
|
95
95
|
*/
|
|
96
96
|
Errors: BatchGetRecordErrors;
|
|
97
97
|
/**
|
|
@@ -127,6 +127,10 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
|
127
127
|
* Timestamp indicating when the deletion event occurred. EventTime can be used to query data at a certain point in time.
|
|
128
128
|
*/
|
|
129
129
|
EventTime: ValueAsString;
|
|
130
|
+
/**
|
|
131
|
+
* A list of stores from which you're deleting the record. By default, Feature Store deletes the record from all of the stores that you're using for the FeatureGroup.
|
|
132
|
+
*/
|
|
133
|
+
TargetStores?: TargetStores;
|
|
130
134
|
}
|
|
131
135
|
export type FeatureGroupName = string;
|
|
132
136
|
export type FeatureName = string;
|
|
@@ -143,7 +147,7 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
|
143
147
|
}
|
|
144
148
|
export interface GetRecordRequest {
|
|
145
149
|
/**
|
|
146
|
-
* The name of the feature group
|
|
150
|
+
* The name of the feature group from which you want to retrieve a record.
|
|
147
151
|
*/
|
|
148
152
|
FeatureGroupName: FeatureGroupName;
|
|
149
153
|
/**
|
|
@@ -171,9 +175,15 @@ declare namespace SageMakerFeatureStoreRuntime {
|
|
|
171
175
|
* List of FeatureValues to be inserted. This will be a full over-write. If you only want to update few of the feature values, do the following: Use GetRecord to retrieve the latest record. Update the record returned from GetRecord. Use PutRecord to update feature values.
|
|
172
176
|
*/
|
|
173
177
|
Record: Record;
|
|
178
|
+
/**
|
|
179
|
+
* A list of stores to which you're adding the record. By default, Feature Store adds the record to all of the stores that you're using for the FeatureGroup.
|
|
180
|
+
*/
|
|
181
|
+
TargetStores?: TargetStores;
|
|
174
182
|
}
|
|
175
183
|
export type Record = FeatureValue[];
|
|
176
184
|
export type RecordIdentifiers = ValueAsString[];
|
|
185
|
+
export type TargetStore = "OnlineStore"|"OfflineStore"|string;
|
|
186
|
+
export type TargetStores = TargetStore[];
|
|
177
187
|
export type UnprocessedIdentifiers = BatchGetRecordIdentifier[];
|
|
178
188
|
export type ValueAsString = string;
|
|
179
189
|
/**
|