1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
"github.com/aws/aws-sdk-go-v2/service/entityresolution/document"
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// An object containing an error message, if there was an error.
type ErrorDetails struct {
// The error message from the job, if there is one.
ErrorMessage *string
noSmithyDocumentSerde
}
// An object containing InputRecords , TotalRecordsProcessed , MatchIDs , and
// RecordsNotProcessed .
type IdMappingJobMetrics struct {
// The total number of input records.
InputRecords *int32
// The total number of records that did not get processed.
RecordsNotProcessed *int32
// The total number of records processed.
TotalRecordsProcessed *int32
noSmithyDocumentSerde
}
// An object which defines the ID mapping techniques and provider configurations.
type IdMappingTechniques struct {
// The type of ID mapping.
//
// This member is required.
IdMappingType IdMappingType
// An object which defines any additional configurations required by the provider
// service.
//
// This member is required.
ProviderProperties *ProviderProperties
noSmithyDocumentSerde
}
// An object containing InputSourceARN and SchemaName .
type IdMappingWorkflowInputSource struct {
// An Gluetable ARN for the input source table.
//
// This member is required.
InputSourceARN *string
// The name of the schema to be retrieved.
//
// This member is required.
SchemaName *string
noSmithyDocumentSerde
}
// The output source for the ID mapping workflow.
type IdMappingWorkflowOutputSource struct {
// The S3 path to which Entity Resolution will write the output table.
//
// This member is required.
OutputS3Path *string
// Customer KMS ARN for encryption at rest. If not provided, system will use an
// Entity Resolution managed KMS key.
KMSArn *string
noSmithyDocumentSerde
}
// A list of IdMappingWorkflowSummary objects, each of which contain the fields
// WorkflowName , WorkflowArn , CreatedAt , and UpdatedAt .
type IdMappingWorkflowSummary struct {
// The timestamp of when the workflow was created.
//
// This member is required.
CreatedAt *time.Time
// The timestamp of when the workflow was last updated.
//
// This member is required.
UpdatedAt *time.Time
// The ARN (Amazon Resource Name) that Entity Resolution generated for the
// IdMappingWorkflow .
//
// This member is required.
WorkflowArn *string
// The name of the workflow.
//
// This member is required.
WorkflowName *string
noSmithyDocumentSerde
}
// An object which defines an incremental run type and has only incrementalRunType
// as a field.
type IncrementalRunConfig struct {
// The type of incremental run. It takes only one value: IMMEDIATE .
IncrementalRunType IncrementalRunType
noSmithyDocumentSerde
}
// An object containing InputSourceARN , SchemaName , and ApplyNormalization .
type InputSource struct {
// An Glue table ARN for the input source table.
//
// This member is required.
InputSourceARN *string
// The name of the schema to be retrieved.
//
// This member is required.
SchemaName *string
// Normalizes the attributes defined in the schema in the input data. For example,
// if an attribute has an AttributeType of PHONE_NUMBER , and the data in the input
// table is in a format of 1234567890, Entity Resolution will normalize this field
// in the output to (123)-456-7890.
ApplyNormalization *bool
noSmithyDocumentSerde
}
// The Amazon S3 location that temporarily stores your data while it processes.
// Your information won't be saved permanently.
type IntermediateSourceConfiguration struct {
// The Amazon S3 location (bucket and prefix). For example:
// s3://provider_bucket/DOC-EXAMPLE-BUCKET
//
// This member is required.
IntermediateS3Path *string
noSmithyDocumentSerde
}
// An object containing InputRecords , TotalRecordsProcessed , MatchIDs , and
// RecordsNotProcessed .
type JobMetrics struct {
// The total number of input records.
InputRecords *int32
// The total number of matchID s generated.
MatchIDs *int32
// The total number of records that did not get processed.
RecordsNotProcessed *int32
// The total number of records processed.
TotalRecordsProcessed *int32
noSmithyDocumentSerde
}
// An object containing the JobId , Status , StartTime , and EndTime of a job.
type JobSummary struct {
// The ID of the job.
//
// This member is required.
JobId *string
// The time at which the job was started.
//
// This member is required.
StartTime *time.Time
// The current status of the job.
//
// This member is required.
Status JobStatus
// The time at which the job has finished.
EndTime *time.Time
noSmithyDocumentSerde
}
// A list of MatchingWorkflowSummary objects, each of which contain the fields
// WorkflowName , WorkflowArn , CreatedAt , UpdatedAt .
type MatchingWorkflowSummary struct {
// The timestamp of when the workflow was created.
//
// This member is required.
CreatedAt *time.Time
// The method that has been specified for data matching, either using matching
// provided by Entity Resolution or through a provider service.
//
// This member is required.
ResolutionType ResolutionType
// The timestamp of when the workflow was last updated.
//
// This member is required.
UpdatedAt *time.Time
// The ARN (Amazon Resource Name) that Entity Resolution generated for the
// MatchingWorkflow .
//
// This member is required.
WorkflowArn *string
// The name of the workflow.
//
// This member is required.
WorkflowName *string
noSmithyDocumentSerde
}
// A list of OutputAttribute objects, each of which have the fields Name and Hashed
// . Each of these objects selects a column to be included in the output table, and
// whether the values of the column should be hashed.
type OutputAttribute struct {
// A name of a column to be written to the output. This must be an InputField name
// in the schema mapping.
//
// This member is required.
Name *string
// Enables the ability to hash the column values in the output.
Hashed *bool
noSmithyDocumentSerde
}
// A list of OutputAttribute objects, each of which have the fields Name and Hashed
// . Each of these objects selects a column to be included in the output table, and
// whether the values of the column should be hashed.
type OutputSource struct {
// A list of OutputAttribute objects, each of which have the fields Name and Hashed
// . Each of these objects selects a column to be included in the output table, and
// whether the values of the column should be hashed.
//
// This member is required.
Output []OutputAttribute
// The S3 path to which Entity Resolution will write the output table.
//
// This member is required.
OutputS3Path *string
// Normalizes the attributes defined in the schema in the input data. For example,
// if an attribute has an AttributeType of PHONE_NUMBER , and the data in the input
// table is in a format of 1234567890, Entity Resolution will normalize this field
// in the output to (123)-456-7890.
ApplyNormalization *bool
// Customer KMS ARN for encryption at rest. If not provided, system will use an
// Entity Resolution managed KMS key.
KMSArn *string
noSmithyDocumentSerde
}
// The required configuration fields to use with the provider service.
//
// The following types satisfy this interface:
//
// ProviderEndpointConfigurationMemberMarketplaceConfiguration
type ProviderEndpointConfiguration interface {
isProviderEndpointConfiguration()
}
// The identifiers of the provider service, from Data Exchange.
type ProviderEndpointConfigurationMemberMarketplaceConfiguration struct {
Value ProviderMarketplaceConfiguration
noSmithyDocumentSerde
}
func (*ProviderEndpointConfigurationMemberMarketplaceConfiguration) isProviderEndpointConfiguration() {
}
// The required configuration fields to give intermediate access to a provider
// service.
type ProviderIntermediateDataAccessConfiguration struct {
// The Amazon Web Services account that provider can use to read or write data
// into the customer's intermediate S3 bucket.
AwsAccountIds []string
// The S3 bucket actions that the provider requires permission for.
RequiredBucketActions []string
noSmithyDocumentSerde
}
// The identifiers of the provider service, from Data Exchange.
type ProviderMarketplaceConfiguration struct {
// The asset ID on Data Exchange.
//
// This member is required.
AssetId *string
// The dataset ID on Data Exchange.
//
// This member is required.
DataSetId *string
// The listing ID on Data Exchange.
//
// This member is required.
ListingId *string
// The revision ID on Data Exchange.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// An object containing the providerServiceARN , intermediateSourceConfiguration ,
// and providerConfiguration .
type ProviderProperties struct {
// The ARN of the provider service.
//
// This member is required.
ProviderServiceArn *string
// The Amazon S3 location that temporarily stores your data while it processes.
// Your information won't be saved permanently.
IntermediateSourceConfiguration *IntermediateSourceConfiguration
// The required configuration fields to use with the provider service.
ProviderConfiguration document.Interface
noSmithyDocumentSerde
}
// A list of ProviderService objects, each of which contain the fields providerName
// , providerServiceArn , providerServiceName , and providerServiceType .
type ProviderServiceSummary struct {
// The name of the provider. This name is typically the company name.
//
// This member is required.
ProviderName *string
// The ARN (Amazon Resource Name) that Entity Resolution generated for the
// providerService .
//
// This member is required.
ProviderServiceArn *string
// The display name of the provider service.
//
// This member is required.
ProviderServiceDisplayName *string
// The name of the product that the provider service provides.
//
// This member is required.
ProviderServiceName *string
// The type of provider service.
//
// This member is required.
ProviderServiceType ServiceType
noSmithyDocumentSerde
}
// An object which defines the resolutionType and the ruleBasedProperties .
type ResolutionTechniques struct {
// The type of matching. There are two types of matching: RULE_MATCHING and
// ML_MATCHING .
//
// This member is required.
ResolutionType ResolutionType
// The properties of the provider service.
ProviderProperties *ProviderProperties
// An object which defines the list of matching rules to run and has a field Rules
// , which is a list of rule objects.
RuleBasedProperties *RuleBasedProperties
noSmithyDocumentSerde
}
// An object containing RuleName , and MatchingKeys .
type Rule struct {
// A list of MatchingKeys . The MatchingKeys must have been defined in the
// SchemaMapping . Two records are considered to match according to this rule if
// all of the MatchingKeys match.
//
// This member is required.
MatchingKeys []string
// A name for the matching rule.
//
// This member is required.
RuleName *string
noSmithyDocumentSerde
}
// An object which defines the list of matching rules to run and has a field Rules
// , which is a list of rule objects.
type RuleBasedProperties struct {
// 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.
//
// This member is required.
AttributeMatchingModel AttributeMatchingModel
// A list of Rule objects, each of which have fields RuleName and MatchingKeys .
//
// This member is required.
Rules []Rule
noSmithyDocumentSerde
}
// An object containing FieldName , Type , GroupName , and MatchKey .
type SchemaInputAttribute struct {
// A string containing the field name.
//
// This member is required.
FieldName *string
// The type of the attribute, selected from a list of values.
//
// This member is required.
Type SchemaAttributeType
// Instruct Entity Resolution to combine several columns into a unified column
// with the identical attribute type. For example, when working with columns such
// as first_name, middle_name, and last_name, assigning them a common GroupName
// will prompt Entity Resolution to concatenate them into a single value.
GroupName *string
// 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.
MatchKey *string
// The subtype of the attribute, selected from a list of values.
SubType *string
noSmithyDocumentSerde
}
// An object containing SchemaName , SchemaArn , CreatedAt , and UpdatedAt .
type SchemaMappingSummary struct {
// The timestamp of when the SchemaMapping was created.
//
// This member is required.
CreatedAt *time.Time
// Specifies whether the schema mapping has been applied to a workflow.
//
// This member is required.
HasWorkflows *bool
// The ARN (Amazon Resource Name) that Entity Resolution generated for the
// SchemaMapping .
//
// This member is required.
SchemaArn *string
// The name of the schema.
//
// This member is required.
SchemaName *string
// The timestamp of when the SchemaMapping was last updated.
//
// This member is required.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isProviderEndpointConfiguration() {}
|