cdk-comprehend-s3olap 2.0.41 → 2.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +117 -6
- package/node_modules/aws-sdk/apis/athena-2017-05-18.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.min.json +174 -35
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.paginators.json +17 -0
- package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +11 -0
- package/node_modules/aws-sdk/apis/frauddetector-2019-11-15.min.json +249 -94
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +56 -47
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +260 -59
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +73 -72
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +54 -29
- package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +91 -48
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +0 -3
- package/node_modules/aws-sdk/apis/sagemaker-edge-2020-09-23.min.json +84 -4
- package/node_modules/aws-sdk/clients/acmpca.d.ts +2 -2
- package/node_modules/aws-sdk/clients/athena.d.ts +127 -0
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +40 -1
- package/node_modules/aws-sdk/clients/devopsguru.d.ts +188 -0
- package/node_modules/aws-sdk/clients/dms.d.ts +2 -2
- package/node_modules/aws-sdk/clients/docdb.d.ts +20 -0
- package/node_modules/aws-sdk/clients/frauddetector.d.ts +176 -5
- package/node_modules/aws-sdk/clients/glue.d.ts +3 -3
- package/node_modules/aws-sdk/clients/iot.d.ts +14 -2
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +192 -0
- package/node_modules/aws-sdk/clients/kendra.d.ts +12 -7
- package/node_modules/aws-sdk/clients/networkfirewall.d.ts +53 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +87 -87
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemakeredge.d.ts +146 -0
- 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 +15 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +235 -85
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +93 -93
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -15833,7 +15833,7 @@ declare namespace SageMaker {
|
|
15833
15833
|
/**
|
15834
15834
|
* A list of resource Amazon Resource Name (ARN) that represent the starting point for your lineage query.
|
15835
15835
|
*/
|
15836
|
-
StartArns
|
15836
|
+
StartArns?: QueryLineageStartArns;
|
15837
15837
|
/**
|
15838
15838
|
* Associations between lineage entities have a direction. This parameter determines the direction from the StartArn(s) that the query traverses.
|
15839
15839
|
*/
|
@@ -11,6 +11,14 @@ declare class SagemakerEdge extends Service {
|
|
11
11
|
*/
|
12
12
|
constructor(options?: SagemakerEdge.Types.ClientConfiguration)
|
13
13
|
config: Config & SagemakerEdge.Types.ClientConfiguration;
|
14
|
+
/**
|
15
|
+
* Use to get the active deployments from a device.
|
16
|
+
*/
|
17
|
+
getDeployments(params: SagemakerEdge.Types.GetDeploymentsRequest, callback?: (err: AWSError, data: SagemakerEdge.Types.GetDeploymentsResult) => void): Request<SagemakerEdge.Types.GetDeploymentsResult, AWSError>;
|
18
|
+
/**
|
19
|
+
* Use to get the active deployments from a device.
|
20
|
+
*/
|
21
|
+
getDeployments(callback?: (err: AWSError, data: SagemakerEdge.Types.GetDeploymentsResult) => void): Request<SagemakerEdge.Types.GetDeploymentsResult, AWSError>;
|
14
22
|
/**
|
15
23
|
* Use to check if a device is registered with SageMaker Edge Manager.
|
16
24
|
*/
|
@@ -30,10 +38,123 @@ declare class SagemakerEdge extends Service {
|
|
30
38
|
}
|
31
39
|
declare namespace SagemakerEdge {
|
32
40
|
export type CacheTTLSeconds = string;
|
41
|
+
export interface Checksum {
|
42
|
+
/**
|
43
|
+
* The type of the checksum.
|
44
|
+
*/
|
45
|
+
Type?: ChecksumType;
|
46
|
+
/**
|
47
|
+
* The checksum of the model.
|
48
|
+
*/
|
49
|
+
Sum?: ChecksumString;
|
50
|
+
}
|
51
|
+
export type ChecksumString = string;
|
52
|
+
export type ChecksumType = "SHA1"|string;
|
53
|
+
export interface Definition {
|
54
|
+
/**
|
55
|
+
* The unique model handle.
|
56
|
+
*/
|
57
|
+
ModelHandle?: EntityName;
|
58
|
+
/**
|
59
|
+
* The absolute S3 location of the model.
|
60
|
+
*/
|
61
|
+
S3Url?: S3Uri;
|
62
|
+
/**
|
63
|
+
* The checksum information of the model.
|
64
|
+
*/
|
65
|
+
Checksum?: Checksum;
|
66
|
+
/**
|
67
|
+
* The desired state of the model.
|
68
|
+
*/
|
69
|
+
State?: ModelState;
|
70
|
+
}
|
71
|
+
export type Definitions = Definition[];
|
72
|
+
export interface DeploymentModel {
|
73
|
+
/**
|
74
|
+
* The unique handle of the model.
|
75
|
+
*/
|
76
|
+
ModelHandle?: EntityName;
|
77
|
+
/**
|
78
|
+
* The name of the model.
|
79
|
+
*/
|
80
|
+
ModelName?: ModelName;
|
81
|
+
/**
|
82
|
+
* The version of the model.
|
83
|
+
*/
|
84
|
+
ModelVersion?: Version;
|
85
|
+
/**
|
86
|
+
* The desired state of the model.
|
87
|
+
*/
|
88
|
+
DesiredState?: ModelState;
|
89
|
+
/**
|
90
|
+
* Returns the current state of the model.
|
91
|
+
*/
|
92
|
+
State?: ModelState;
|
93
|
+
/**
|
94
|
+
* Returns the deployment status of the model.
|
95
|
+
*/
|
96
|
+
Status?: DeploymentStatus;
|
97
|
+
/**
|
98
|
+
* Returns the error message for the deployment status result.
|
99
|
+
*/
|
100
|
+
StatusReason?: String;
|
101
|
+
/**
|
102
|
+
* Returns the error message if there is a rollback.
|
103
|
+
*/
|
104
|
+
RollbackFailureReason?: String;
|
105
|
+
}
|
106
|
+
export type DeploymentModels = DeploymentModel[];
|
107
|
+
export interface DeploymentResult {
|
108
|
+
/**
|
109
|
+
* The name and unique ID of the deployment.
|
110
|
+
*/
|
111
|
+
DeploymentName?: EntityName;
|
112
|
+
/**
|
113
|
+
* Returns the bucket error code.
|
114
|
+
*/
|
115
|
+
DeploymentStatus?: EntityName;
|
116
|
+
/**
|
117
|
+
* Returns the detailed error message.
|
118
|
+
*/
|
119
|
+
DeploymentStatusMessage?: String;
|
120
|
+
/**
|
121
|
+
* The timestamp of when the deployment was started on the agent.
|
122
|
+
*/
|
123
|
+
DeploymentStartTime?: Timestamp;
|
124
|
+
/**
|
125
|
+
* The timestamp of when the deployment was ended, and the agent got the deployment results.
|
126
|
+
*/
|
127
|
+
DeploymentEndTime?: Timestamp;
|
128
|
+
/**
|
129
|
+
* Returns a list of models deployed on the agent.
|
130
|
+
*/
|
131
|
+
DeploymentModels?: DeploymentModels;
|
132
|
+
}
|
133
|
+
export type DeploymentStatus = "SUCCESS"|"FAIL"|string;
|
134
|
+
export type DeploymentType = "Model"|string;
|
33
135
|
export type DeviceFleetName = string;
|
34
136
|
export type DeviceName = string;
|
35
137
|
export type DeviceRegistration = string;
|
36
138
|
export type Dimension = string;
|
139
|
+
export interface EdgeDeployment {
|
140
|
+
/**
|
141
|
+
* The name and unique ID of the deployment.
|
142
|
+
*/
|
143
|
+
DeploymentName?: EntityName;
|
144
|
+
/**
|
145
|
+
* The type of the deployment.
|
146
|
+
*/
|
147
|
+
Type?: DeploymentType;
|
148
|
+
/**
|
149
|
+
* Determines whether to rollback to previous configuration if deployment fails.
|
150
|
+
*/
|
151
|
+
FailureHandlingPolicy?: FailureHandlingPolicy;
|
152
|
+
/**
|
153
|
+
* Returns a list of Definition objects.
|
154
|
+
*/
|
155
|
+
Definitions?: Definitions;
|
156
|
+
}
|
157
|
+
export type EdgeDeployments = EdgeDeployment[];
|
37
158
|
export interface EdgeMetric {
|
38
159
|
/**
|
39
160
|
* The dimension of metrics published.
|
@@ -53,6 +174,24 @@ declare namespace SagemakerEdge {
|
|
53
174
|
Timestamp?: Timestamp;
|
54
175
|
}
|
55
176
|
export type EdgeMetrics = EdgeMetric[];
|
177
|
+
export type EntityName = string;
|
178
|
+
export type FailureHandlingPolicy = "ROLLBACK_ON_FAILURE"|"DO_NOTHING"|string;
|
179
|
+
export interface GetDeploymentsRequest {
|
180
|
+
/**
|
181
|
+
* The unique name of the device you want to get the configuration of active deployments from.
|
182
|
+
*/
|
183
|
+
DeviceName: DeviceName;
|
184
|
+
/**
|
185
|
+
* The name of the fleet that the device belongs to.
|
186
|
+
*/
|
187
|
+
DeviceFleetName: DeviceFleetName;
|
188
|
+
}
|
189
|
+
export interface GetDeploymentsResult {
|
190
|
+
/**
|
191
|
+
* Returns a list of the configurations of the active deployments on the device.
|
192
|
+
*/
|
193
|
+
Deployments?: EdgeDeployments;
|
194
|
+
}
|
56
195
|
export interface GetDeviceRegistrationRequest {
|
57
196
|
/**
|
58
197
|
* The unique name of the device you want to get the registration status from.
|
@@ -97,7 +236,9 @@ declare namespace SagemakerEdge {
|
|
97
236
|
ModelMetrics?: EdgeMetrics;
|
98
237
|
}
|
99
238
|
export type ModelName = string;
|
239
|
+
export type ModelState = "DEPLOY"|"UNDEPLOY"|string;
|
100
240
|
export type Models = Model[];
|
241
|
+
export type S3Uri = string;
|
101
242
|
export interface SendHeartbeatRequest {
|
102
243
|
/**
|
103
244
|
* For internal use. Returns a list of SageMaker Edge Manager agent operating metrics.
|
@@ -119,7 +260,12 @@ declare namespace SagemakerEdge {
|
|
119
260
|
* The name of the fleet that the device belongs to.
|
120
261
|
*/
|
121
262
|
DeviceFleetName: DeviceFleetName;
|
263
|
+
/**
|
264
|
+
* Returns the result of a deployment on the device.
|
265
|
+
*/
|
266
|
+
DeploymentResult?: DeploymentResult;
|
122
267
|
}
|
268
|
+
export type String = string;
|
123
269
|
export type Timestamp = Date;
|
124
270
|
export type Value = number;
|
125
271
|
export type Version = string;
|