cdk-comprehend-s3olap 2.0.274 → 2.0.275
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/@esbuild/linux-x64/bin/esbuild +0 -0
- package/node_modules/@esbuild/linux-x64/package.json +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appstream-2016-12-01.min.json +28 -5
- package/node_modules/aws-sdk/apis/appstream-2016-12-01.waiters2.json +6 -6
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +4 -0
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.examples.json +214 -0
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +248 -24
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/appstream.d.ts +46 -6
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +6 -6
- package/node_modules/aws-sdk/clients/entityresolution.d.ts +29 -29
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +435 -58
- 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 +6 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +1 -1
- package/node_modules/esbuild/lib/main.js +15 -14
- package/node_modules/esbuild/package.json +23 -23
- package/package.json +5 -5
@@ -986,7 +986,11 @@ declare namespace AppStream {
|
|
986
986
|
/**
|
987
987
|
* The desired number of streaming instances.
|
988
988
|
*/
|
989
|
-
DesiredInstances
|
989
|
+
DesiredInstances?: Integer;
|
990
|
+
/**
|
991
|
+
* The desired number of user sessions for a multi-session fleet. This is not allowed for single-session fleets. When you create a fleet, you must set either the DesiredSessions or DesiredInstances attribute, based on the type of fleet you create. You can’t define both attributes or leave both attributes blank.
|
992
|
+
*/
|
993
|
+
DesiredSessions?: Integer;
|
990
994
|
}
|
991
995
|
export interface ComputeCapacityStatus {
|
992
996
|
/**
|
@@ -1005,6 +1009,22 @@ declare namespace AppStream {
|
|
1005
1009
|
* The number of currently available instances that can be used to stream sessions.
|
1006
1010
|
*/
|
1007
1011
|
Available?: Integer;
|
1012
|
+
/**
|
1013
|
+
* The total number of sessions slots that are either running or pending. This represents the total number of concurrent streaming sessions your fleet can support in a steady state. DesiredUserSessionCapacity = ActualUserSessionCapacity + PendingUserSessionCapacity This only applies to multi-session fleets.
|
1014
|
+
*/
|
1015
|
+
DesiredUserSessions?: Integer;
|
1016
|
+
/**
|
1017
|
+
* The number of idle session slots currently available for user sessions. AvailableUserSessionCapacity = ActualUserSessionCapacity - ActiveUserSessions This only applies to multi-session fleets.
|
1018
|
+
*/
|
1019
|
+
AvailableUserSessions?: Integer;
|
1020
|
+
/**
|
1021
|
+
* The number of user sessions currently being used for streaming sessions. This only applies to multi-session fleets.
|
1022
|
+
*/
|
1023
|
+
ActiveUserSessions?: Integer;
|
1024
|
+
/**
|
1025
|
+
* The total number of session slots that are available for streaming or are currently streaming. ActualUserSessionCapacity = AvailableUserSessionCapacity + ActiveUserSessions This only applies to multi-session fleets.
|
1026
|
+
*/
|
1027
|
+
ActualUserSessions?: Integer;
|
1008
1028
|
}
|
1009
1029
|
export interface CopyImageRequest {
|
1010
1030
|
/**
|
@@ -1266,7 +1286,7 @@ declare namespace AppStream {
|
|
1266
1286
|
*/
|
1267
1287
|
VpcConfig?: VpcConfig;
|
1268
1288
|
/**
|
1269
|
-
* The maximum amount of time that a streaming session can remain active, in seconds. If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance. Specify a value between 600 and
|
1289
|
+
* The maximum amount of time that a streaming session can remain active, in seconds. If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance. Specify a value between 600 and 432000.
|
1270
1290
|
*/
|
1271
1291
|
MaxUserDurationInSeconds?: Integer;
|
1272
1292
|
/**
|
@@ -1321,6 +1341,10 @@ declare namespace AppStream {
|
|
1321
1341
|
* The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets.
|
1322
1342
|
*/
|
1323
1343
|
SessionScriptS3Location?: S3Location;
|
1344
|
+
/**
|
1345
|
+
* The maximum number of user sessions on an instance. This only applies to multi-session fleets.
|
1346
|
+
*/
|
1347
|
+
MaxSessionsPerInstance?: Integer;
|
1324
1348
|
}
|
1325
1349
|
export interface CreateFleetResult {
|
1326
1350
|
/**
|
@@ -1974,11 +1998,11 @@ declare namespace AppStream {
|
|
1974
1998
|
/**
|
1975
1999
|
* The name of the stack. This value is case-sensitive.
|
1976
2000
|
*/
|
1977
|
-
StackName:
|
2001
|
+
StackName: Name;
|
1978
2002
|
/**
|
1979
2003
|
* The name of the fleet. This value is case-sensitive.
|
1980
2004
|
*/
|
1981
|
-
FleetName:
|
2005
|
+
FleetName: Name;
|
1982
2006
|
/**
|
1983
2007
|
* The user identifier (ID). If you specify a user ID, you must also specify the authentication type.
|
1984
2008
|
*/
|
@@ -1995,6 +2019,10 @@ declare namespace AppStream {
|
|
1995
2019
|
* The authentication method. Specify API for a user authenticated using a streaming URL or SAML for a SAML federated user. The default is to authenticate users using a streaming URL.
|
1996
2020
|
*/
|
1997
2021
|
AuthenticationType?: AuthenticationType;
|
2022
|
+
/**
|
2023
|
+
* The identifier for the instance hosting the session.
|
2024
|
+
*/
|
2025
|
+
InstanceId?: String;
|
1998
2026
|
}
|
1999
2027
|
export interface DescribeSessionsResult {
|
2000
2028
|
/**
|
@@ -2385,8 +2413,12 @@ declare namespace AppStream {
|
|
2385
2413
|
* The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets.
|
2386
2414
|
*/
|
2387
2415
|
SessionScriptS3Location?: S3Location;
|
2416
|
+
/**
|
2417
|
+
* The maximum number of user sessions on an instance. This only applies to multi-session fleets.
|
2418
|
+
*/
|
2419
|
+
MaxSessionsPerInstance?: Integer;
|
2388
2420
|
}
|
2389
|
-
export type FleetAttribute = "VPC_CONFIGURATION"|"VPC_CONFIGURATION_SECURITY_GROUP_IDS"|"DOMAIN_JOIN_INFO"|"IAM_ROLE_ARN"|"USB_DEVICE_FILTER_STRINGS"|"SESSION_SCRIPT_S3_LOCATION"|string;
|
2421
|
+
export type FleetAttribute = "VPC_CONFIGURATION"|"VPC_CONFIGURATION_SECURITY_GROUP_IDS"|"DOMAIN_JOIN_INFO"|"IAM_ROLE_ARN"|"USB_DEVICE_FILTER_STRINGS"|"SESSION_SCRIPT_S3_LOCATION"|"MAX_SESSIONS_PER_INSTANCE"|string;
|
2390
2422
|
export type FleetAttributes = FleetAttribute[];
|
2391
2423
|
export interface FleetError {
|
2392
2424
|
/**
|
@@ -2794,6 +2826,10 @@ declare namespace AppStream {
|
|
2794
2826
|
* The network details for the streaming session.
|
2795
2827
|
*/
|
2796
2828
|
NetworkAccessConfiguration?: NetworkAccessConfiguration;
|
2829
|
+
/**
|
2830
|
+
* The identifier for the instance hosting the session.
|
2831
|
+
*/
|
2832
|
+
InstanceId?: String;
|
2797
2833
|
}
|
2798
2834
|
export type SessionConnectionState = "CONNECTED"|"NOT_CONNECTED"|string;
|
2799
2835
|
export type SessionList = Session[];
|
@@ -3151,7 +3187,7 @@ declare namespace AppStream {
|
|
3151
3187
|
/**
|
3152
3188
|
* A unique name for the fleet.
|
3153
3189
|
*/
|
3154
|
-
Name?:
|
3190
|
+
Name?: Name;
|
3155
3191
|
/**
|
3156
3192
|
* The instance type to use when launching fleet instances. The following instance types are available: stream.standard.small stream.standard.medium stream.standard.large stream.standard.xlarge stream.standard.2xlarge stream.compute.large stream.compute.xlarge stream.compute.2xlarge stream.compute.4xlarge stream.compute.8xlarge stream.memory.large stream.memory.xlarge stream.memory.2xlarge stream.memory.4xlarge stream.memory.8xlarge stream.memory.z1d.large stream.memory.z1d.xlarge stream.memory.z1d.2xlarge stream.memory.z1d.3xlarge stream.memory.z1d.6xlarge stream.memory.z1d.12xlarge stream.graphics-design.large stream.graphics-design.xlarge stream.graphics-design.2xlarge stream.graphics-design.4xlarge stream.graphics-desktop.2xlarge stream.graphics.g4dn.xlarge stream.graphics.g4dn.2xlarge stream.graphics.g4dn.4xlarge stream.graphics.g4dn.8xlarge stream.graphics.g4dn.12xlarge stream.graphics.g4dn.16xlarge stream.graphics-pro.4xlarge stream.graphics-pro.8xlarge stream.graphics-pro.16xlarge The following instance types are available for Elastic fleets: stream.standard.small stream.standard.medium stream.standard.large stream.standard.xlarge stream.standard.2xlarge
|
3157
3193
|
*/
|
@@ -3224,6 +3260,10 @@ declare namespace AppStream {
|
|
3224
3260
|
* The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets.
|
3225
3261
|
*/
|
3226
3262
|
SessionScriptS3Location?: S3Location;
|
3263
|
+
/**
|
3264
|
+
* The maximum number of user sessions on an instance. This only applies to multi-session fleets.
|
3265
|
+
*/
|
3266
|
+
MaxSessionsPerInstance?: Integer;
|
3227
3267
|
}
|
3228
3268
|
export interface UpdateFleetResult {
|
3229
3269
|
/**
|
@@ -1091,7 +1091,7 @@ declare namespace CloudFormation {
|
|
1091
1091
|
*/
|
1092
1092
|
EnableTerminationProtection?: EnableTerminationProtection;
|
1093
1093
|
/**
|
1094
|
-
*
|
1094
|
+
* When set to true, newly created resources are deleted when the operation rolls back. This includes newly created resources marked with a deletion policy of Retain. Default: false
|
1095
1095
|
*/
|
1096
1096
|
RetainExceptOnCreate?: RetainExceptOnCreate;
|
1097
1097
|
}
|
@@ -1730,7 +1730,7 @@ declare namespace CloudFormation {
|
|
1730
1730
|
}
|
1731
1731
|
export interface DescribeStacksInput {
|
1732
1732
|
/**
|
1733
|
-
* If you don't pass a parameter to StackName, the API returns a response that describes all resources in the account. This requires ListStacks and DescribeStacks permissions. The IAM policy below can be added to IAM policies when you want to limit resource-level permissions and avoid returning a response when no parameter is sent in the request: { "Version": "2012-10-17", "Statement": [{ "Effect": "Deny", "Action": "cloudformation:DescribeStacks", "NotResource": "arn:aws:cloudformation:*:*:stack/**" }] } The name or the unique stack ID that's associated with the stack, which aren't always interchangeable: Running stacks: You can specify either the stack's name or its unique stack ID. Deleted stacks: You must specify the unique stack ID. Default: There is no default value.
|
1733
|
+
* If you don't pass a parameter to StackName, the API returns a response that describes all resources in the account, which can impact performance. This requires ListStacks and DescribeStacks permissions. Consider using the ListStacks API if you're not passing a parameter to StackName. The IAM policy below can be added to IAM policies when you want to limit resource-level permissions and avoid returning a response when no parameter is sent in the request: { "Version": "2012-10-17", "Statement": [{ "Effect": "Deny", "Action": "cloudformation:DescribeStacks", "NotResource": "arn:aws:cloudformation:*:*:stack/**" }] } The name or the unique stack ID that's associated with the stack, which aren't always interchangeable: Running stacks: You can specify either the stack's name or its unique stack ID. Deleted stacks: You must specify the unique stack ID. Default: There is no default value.
|
1734
1734
|
*/
|
1735
1735
|
StackName?: StackName;
|
1736
1736
|
/**
|
@@ -2011,7 +2011,7 @@ declare namespace CloudFormation {
|
|
2011
2011
|
*/
|
2012
2012
|
DisableRollback?: DisableRollback;
|
2013
2013
|
/**
|
2014
|
-
*
|
2014
|
+
* When set to true, newly created resources are deleted when the operation rolls back. This includes newly created resources marked with a deletion policy of Retain. Default: false
|
2015
2015
|
*/
|
2016
2016
|
RetainExceptOnCreate?: RetainExceptOnCreate;
|
2017
2017
|
}
|
@@ -3052,7 +3052,7 @@ declare namespace CloudFormation {
|
|
3052
3052
|
*/
|
3053
3053
|
ClientRequestToken?: ClientRequestToken;
|
3054
3054
|
/**
|
3055
|
-
*
|
3055
|
+
* When set to true, newly created resources are deleted when the operation rolls back. This includes newly created resources marked with a deletion policy of Retain. Default: false
|
3056
3056
|
*/
|
3057
3057
|
RetainExceptOnCreate?: RetainExceptOnCreate;
|
3058
3058
|
}
|
@@ -3246,7 +3246,7 @@ declare namespace CloudFormation {
|
|
3246
3246
|
*/
|
3247
3247
|
DriftInformation?: StackDriftInformation;
|
3248
3248
|
/**
|
3249
|
-
*
|
3249
|
+
* When set to true, newly created resources are deleted when the operation rolls back. This includes newly created resources marked with a deletion policy of Retain. Default: false
|
3250
3250
|
*/
|
3251
3251
|
RetainExceptOnCreate?: RetainExceptOnCreate;
|
3252
3252
|
}
|
@@ -4400,7 +4400,7 @@ declare namespace CloudFormation {
|
|
4400
4400
|
*/
|
4401
4401
|
ClientRequestToken?: ClientRequestToken;
|
4402
4402
|
/**
|
4403
|
-
*
|
4403
|
+
* When set to true, newly created resources are deleted when the operation rolls back. This includes newly created resources marked with a deletion policy of Retain. Default: false
|
4404
4404
|
*/
|
4405
4405
|
RetainExceptOnCreate?: RetainExceptOnCreate;
|
4406
4406
|
}
|
@@ -84,27 +84,27 @@ declare class EntityResolution extends Service {
|
|
84
84
|
*/
|
85
85
|
listMatchingJobs(callback?: (err: AWSError, data: EntityResolution.Types.ListMatchingJobsOutput) => void): Request<EntityResolution.Types.ListMatchingJobsOutput, AWSError>;
|
86
86
|
/**
|
87
|
-
* Returns a list of all the MatchingWorkflows that have been created for an
|
87
|
+
* Returns a list of all the MatchingWorkflows that have been created for an Amazon Web Services account.
|
88
88
|
*/
|
89
89
|
listMatchingWorkflows(params: EntityResolution.Types.ListMatchingWorkflowsInput, callback?: (err: AWSError, data: EntityResolution.Types.ListMatchingWorkflowsOutput) => void): Request<EntityResolution.Types.ListMatchingWorkflowsOutput, AWSError>;
|
90
90
|
/**
|
91
|
-
* Returns a list of all the MatchingWorkflows that have been created for an
|
91
|
+
* Returns a list of all the MatchingWorkflows that have been created for an Amazon Web Services account.
|
92
92
|
*/
|
93
93
|
listMatchingWorkflows(callback?: (err: AWSError, data: EntityResolution.Types.ListMatchingWorkflowsOutput) => void): Request<EntityResolution.Types.ListMatchingWorkflowsOutput, AWSError>;
|
94
94
|
/**
|
95
|
-
* Returns a list of all the SchemaMappings that have been created for an
|
95
|
+
* Returns a list of all the SchemaMappings that have been created for an Amazon Web Services account.
|
96
96
|
*/
|
97
97
|
listSchemaMappings(params: EntityResolution.Types.ListSchemaMappingsInput, callback?: (err: AWSError, data: EntityResolution.Types.ListSchemaMappingsOutput) => void): Request<EntityResolution.Types.ListSchemaMappingsOutput, AWSError>;
|
98
98
|
/**
|
99
|
-
* Returns a list of all the SchemaMappings that have been created for an
|
99
|
+
* Returns a list of all the SchemaMappings that have been created for an Amazon Web Services account.
|
100
100
|
*/
|
101
101
|
listSchemaMappings(callback?: (err: AWSError, data: EntityResolution.Types.ListSchemaMappingsOutput) => void): Request<EntityResolution.Types.ListSchemaMappingsOutput, AWSError>;
|
102
102
|
/**
|
103
|
-
* Displays the tags associated with an
|
103
|
+
* Displays the tags associated with an Entity Resolution resource. In Entity Resolution, SchemaMapping, and MatchingWorkflow can be tagged.
|
104
104
|
*/
|
105
105
|
listTagsForResource(params: EntityResolution.Types.ListTagsForResourceInput, callback?: (err: AWSError, data: EntityResolution.Types.ListTagsForResourceOutput) => void): Request<EntityResolution.Types.ListTagsForResourceOutput, AWSError>;
|
106
106
|
/**
|
107
|
-
* Displays the tags associated with an
|
107
|
+
* Displays the tags associated with an Entity Resolution resource. In Entity Resolution, SchemaMapping, and MatchingWorkflow can be tagged.
|
108
108
|
*/
|
109
109
|
listTagsForResource(callback?: (err: AWSError, data: EntityResolution.Types.ListTagsForResourceOutput) => void): Request<EntityResolution.Types.ListTagsForResourceOutput, AWSError>;
|
110
110
|
/**
|
@@ -116,19 +116,19 @@ declare class EntityResolution extends Service {
|
|
116
116
|
*/
|
117
117
|
startMatchingJob(callback?: (err: AWSError, data: EntityResolution.Types.StartMatchingJobOutput) => void): Request<EntityResolution.Types.StartMatchingJobOutput, AWSError>;
|
118
118
|
/**
|
119
|
-
* Assigns one or more tags (key-value pairs) to the specified
|
119
|
+
* Assigns one or more tags (key-value pairs) to the specified Entity Resolution resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. In Entity Resolution, SchemaMapping and MatchingWorkflow can be tagged. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the TagResource action with a resource that already has tags. If you specify a new tag key, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag.
|
120
120
|
*/
|
121
121
|
tagResource(params: EntityResolution.Types.TagResourceInput, callback?: (err: AWSError, data: EntityResolution.Types.TagResourceOutput) => void): Request<EntityResolution.Types.TagResourceOutput, AWSError>;
|
122
122
|
/**
|
123
|
-
* Assigns one or more tags (key-value pairs) to the specified
|
123
|
+
* Assigns one or more tags (key-value pairs) to the specified Entity Resolution resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. In Entity Resolution, SchemaMapping and MatchingWorkflow can be tagged. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the TagResource action with a resource that already has tags. If you specify a new tag key, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag.
|
124
124
|
*/
|
125
125
|
tagResource(callback?: (err: AWSError, data: EntityResolution.Types.TagResourceOutput) => void): Request<EntityResolution.Types.TagResourceOutput, AWSError>;
|
126
126
|
/**
|
127
|
-
* Removes one or more tags from the specified
|
127
|
+
* Removes one or more tags from the specified Entity Resolution resource. In Entity Resolution, SchemaMapping, and MatchingWorkflow can be tagged.
|
128
128
|
*/
|
129
129
|
untagResource(params: EntityResolution.Types.UntagResourceInput, callback?: (err: AWSError, data: EntityResolution.Types.UntagResourceOutput) => void): Request<EntityResolution.Types.UntagResourceOutput, AWSError>;
|
130
130
|
/**
|
131
|
-
* Removes one or more tags from the specified
|
131
|
+
* Removes one or more tags from the specified Entity Resolution resource. In Entity Resolution, SchemaMapping, and MatchingWorkflow can be tagged.
|
132
132
|
*/
|
133
133
|
untagResource(callback?: (err: AWSError, data: EntityResolution.Types.UntagResourceOutput) => void): Request<EntityResolution.Types.UntagResourceOutput, AWSError>;
|
134
134
|
/**
|
@@ -162,11 +162,11 @@ declare namespace EntityResolution {
|
|
162
162
|
*/
|
163
163
|
outputSourceConfig: OutputSourceConfig;
|
164
164
|
/**
|
165
|
-
* An object which defines the resolutionType and the ruleBasedProperties
|
165
|
+
* An object which defines the resolutionType and the ruleBasedProperties.
|
166
166
|
*/
|
167
167
|
resolutionTechniques: ResolutionTechniques;
|
168
168
|
/**
|
169
|
-
* The Amazon Resource Name (ARN) of the IAM role.
|
169
|
+
* The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
170
170
|
*/
|
171
171
|
roleArn: String;
|
172
172
|
/**
|
@@ -196,11 +196,11 @@ declare namespace EntityResolution {
|
|
196
196
|
*/
|
197
197
|
outputSourceConfig: OutputSourceConfig;
|
198
198
|
/**
|
199
|
-
* An object which defines the resolutionType and the ruleBasedProperties
|
199
|
+
* An object which defines the resolutionType and the ruleBasedProperties.
|
200
200
|
*/
|
201
201
|
resolutionTechniques: ResolutionTechniques;
|
202
202
|
/**
|
203
|
-
* The Amazon Resource Name (ARN) of the IAM role.
|
203
|
+
* The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
204
204
|
*/
|
205
205
|
roleArn: String;
|
206
206
|
/**
|
@@ -220,7 +220,7 @@ declare namespace EntityResolution {
|
|
220
220
|
/**
|
221
221
|
* A list of MappedInputFields. Each MappedInputField corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.
|
222
222
|
*/
|
223
|
-
mappedInputFields
|
223
|
+
mappedInputFields: SchemaInputAttributes;
|
224
224
|
/**
|
225
225
|
* The name of the schema. There cannot be multiple SchemaMappings with the same name.
|
226
226
|
*/
|
@@ -329,7 +329,7 @@ declare namespace EntityResolution {
|
|
329
329
|
*/
|
330
330
|
startTime: Timestamp;
|
331
331
|
/**
|
332
|
-
* The current status of the job.
|
332
|
+
* The current status of the job.
|
333
333
|
*/
|
334
334
|
status: JobStatus;
|
335
335
|
}
|
@@ -361,11 +361,11 @@ declare namespace EntityResolution {
|
|
361
361
|
*/
|
362
362
|
outputSourceConfig: OutputSourceConfig;
|
363
363
|
/**
|
364
|
-
* An object which defines the resolutionType and the ruleBasedProperties
|
364
|
+
* An object which defines the resolutionType and the ruleBasedProperties.
|
365
365
|
*/
|
366
366
|
resolutionTechniques: ResolutionTechniques;
|
367
367
|
/**
|
368
|
-
* The Amazon Resource Name (ARN) of the IAM role.
|
368
|
+
* The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access resources on your behalf.
|
369
369
|
*/
|
370
370
|
roleArn: String;
|
371
371
|
/**
|
@@ -457,7 +457,7 @@ declare namespace EntityResolution {
|
|
457
457
|
*/
|
458
458
|
matchIDs?: Integer;
|
459
459
|
/**
|
460
|
-
* The total number of records that did not get processed
|
460
|
+
* The total number of records that did not get processed.
|
461
461
|
*/
|
462
462
|
recordsNotProcessed?: Integer;
|
463
463
|
/**
|
@@ -480,7 +480,7 @@ declare namespace EntityResolution {
|
|
480
480
|
*/
|
481
481
|
startTime: Timestamp;
|
482
482
|
/**
|
483
|
-
* The current status of the job.
|
483
|
+
* The current status of the job.
|
484
484
|
*/
|
485
485
|
status: JobStatus;
|
486
486
|
}
|
@@ -611,19 +611,18 @@ declare namespace EntityResolution {
|
|
611
611
|
/**
|
612
612
|
* The S3 path to which Entity Resolution will write the output table.
|
613
613
|
*/
|
614
|
-
outputS3Path:
|
614
|
+
outputS3Path: S3Path;
|
615
615
|
}
|
616
616
|
export type OutputSourceConfig = OutputSource[];
|
617
617
|
export type OutputSourceOutputList = OutputAttribute[];
|
618
|
-
export type OutputSourceOutputS3PathString = string;
|
619
618
|
export type RecordAttributeMap = {[key: string]: RecordAttributeMapValueString};
|
620
619
|
export type RecordAttributeMapKeyString = string;
|
621
620
|
export type RecordAttributeMapValueString = string;
|
622
621
|
export interface ResolutionTechniques {
|
623
622
|
/**
|
624
|
-
* There are two types of matching
|
623
|
+
* The type of matching. There are two types of matching: RULE_MATCHING and ML_MATCHING.
|
625
624
|
*/
|
626
|
-
resolutionType
|
625
|
+
resolutionType: ResolutionType;
|
627
626
|
/**
|
628
627
|
* An object which defines the list of matching rules to run and has a field Rules, which is a list of rule objects.
|
629
628
|
*/
|
@@ -642,7 +641,7 @@ declare namespace EntityResolution {
|
|
642
641
|
}
|
643
642
|
export interface RuleBasedProperties {
|
644
643
|
/**
|
645
|
-
* You can either choose ONE_TO_ONE or MANY_TO_MANY as the AttributeMatchingModel. When choosing MANY_TO_MANY, the system can match
|
644
|
+
* The comparison type. You can either choose ONE_TO_ONE or MANY_TO_MANY as the AttributeMatchingModel. When choosing MANY_TO_MANY, the system can match attributes across the sub-types of an attribute type. For example, if the value of the Email field of Profile A and the value of BusinessEmail field of Profile B matches, the two profiles are matched on the Email type. When choosing ONE_TO_ONE ,the system can only match if the sub-types are exact matches. For example, only when the value of the Email field of Profile A and the value of the Email field of Profile B matches, the two profiles are matched on the Email type.
|
646
645
|
*/
|
647
646
|
attributeMatchingModel: AttributeMatchingModel;
|
648
647
|
/**
|
@@ -653,6 +652,7 @@ declare namespace EntityResolution {
|
|
653
652
|
export type RuleBasedPropertiesRulesList = Rule[];
|
654
653
|
export type RuleMatchingKeysList = AttributeName[];
|
655
654
|
export type RuleRuleNameString = string;
|
655
|
+
export type S3Path = string;
|
656
656
|
export type SchemaAttributeType = "NAME"|"NAME_FIRST"|"NAME_MIDDLE"|"NAME_LAST"|"ADDRESS"|"ADDRESS_STREET1"|"ADDRESS_STREET2"|"ADDRESS_STREET3"|"ADDRESS_CITY"|"ADDRESS_STATE"|"ADDRESS_COUNTRY"|"ADDRESS_POSTALCODE"|"PHONE"|"PHONE_NUMBER"|"PHONE_COUNTRYCODE"|"EMAIL_ADDRESS"|"UNIQUE_ID"|"DATE"|"STRING"|string;
|
657
657
|
export interface SchemaInputAttribute {
|
658
658
|
/**
|
@@ -664,7 +664,7 @@ declare namespace EntityResolution {
|
|
664
664
|
*/
|
665
665
|
groupName?: AttributeName;
|
666
666
|
/**
|
667
|
-
* A key that allows grouping of multiple input attributes into a unified matching group. For example, let's consider a scenario where the source table contains various addresses, such as business_address and shipping_address. By assigning the MatchKey Address
|
667
|
+
* A key that allows grouping of multiple input attributes into a unified matching group. For example, let's consider a scenario where the source table contains various addresses, such as business_address and shipping_address. By assigning the MatchKey Address to both attributes, Entity Resolution will match records across these fields to create a consolidated matching group. If no MatchKey is specified for a column, it won't be utilized for matching purposes but will still be included in the output table.
|
668
668
|
*/
|
669
669
|
matchKey?: AttributeName;
|
670
670
|
/**
|
@@ -753,11 +753,11 @@ declare namespace EntityResolution {
|
|
753
753
|
*/
|
754
754
|
outputSourceConfig: OutputSourceConfig;
|
755
755
|
/**
|
756
|
-
* An object which defines the resolutionType and the ruleBasedProperties
|
756
|
+
* An object which defines the resolutionType and the ruleBasedProperties.
|
757
757
|
*/
|
758
758
|
resolutionTechniques: ResolutionTechniques;
|
759
759
|
/**
|
760
|
-
* The Amazon Resource Name (ARN) of the IAM role.
|
760
|
+
* The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
761
761
|
*/
|
762
762
|
roleArn: String;
|
763
763
|
/**
|
@@ -787,7 +787,7 @@ declare namespace EntityResolution {
|
|
787
787
|
*/
|
788
788
|
resolutionTechniques: ResolutionTechniques;
|
789
789
|
/**
|
790
|
-
* The Amazon Resource Name (ARN) of the IAM role.
|
790
|
+
* The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
791
791
|
*/
|
792
792
|
roleArn: String;
|
793
793
|
/**
|