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 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
|
// 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"
)
// The deleted unique ID.
type DeletedUniqueId struct {
// The unique ID of the deleted item.
//
// This member is required.
UniqueId *string
noSmithyDocumentSerde
}
// The Delete Unique Id error.
type DeleteUniqueIdError struct {
// The error type for the batch delete unique ID operation.
//
// This member is required.
ErrorType DeleteUniqueIdErrorType
// The unique ID that could not be deleted.
//
// This member is required.
UniqueId *string
noSmithyDocumentSerde
}
// 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 containing KMSArn , OutputS3Path , and RoleARN .
type IdMappingJobOutputSource struct {
// The S3 path to which Entity Resolution will write the output table.
//
// This member is required.
OutputS3Path *string
// The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this
// role to access Amazon Web Services resources on your behalf as part of workflow
// execution.
//
// This member is required.
RoleArn *string
// Customer KMS ARN for encryption at rest. If not provided, system will use an
// Entity Resolution managed KMS key.
KMSArn *string
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.
ProviderProperties *ProviderProperties
noSmithyDocumentSerde
}
// An object containing InputSourceARN , SchemaName , and Type .
type IdMappingWorkflowInputSource struct {
// An Glue table ARN for the input source table.
//
// This member is required.
InputSourceARN *string
// The name of the schema to be retrieved.
SchemaName *string
// The type of ID namespace. There are two types: SOURCE and TARGET .
//
// The SOURCE contains configurations for sourceId data that will be processed in
// an ID mapping workflow.
//
// The TARGET contains a configuration of targetId to which all sourceIds will
// resolve to.
Type IdNamespaceType
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 containing IdMappingType and ProviderProperties .
type IdNamespaceIdMappingWorkflowProperties struct {
// The type of ID mapping.
//
// This member is required.
IdMappingType IdMappingType
// An object which defines any additional configurations required by the provider
// service.
ProviderProperties *NamespaceProviderProperties
noSmithyDocumentSerde
}
// An object containing InputSourceARN and SchemaName .
type IdNamespaceInputSource struct {
// An Glue table ARN for the input source table.
//
// This member is required.
InputSourceARN *string
// The name of the schema.
SchemaName *string
noSmithyDocumentSerde
}
// A summary of ID namespaces.
type IdNamespaceSummary struct {
// The timestamp of when the ID namespace was created.
//
// This member is required.
CreatedAt *time.Time
// The Amazon Resource Name (ARN) of the ID namespace.
//
// This member is required.
IdNamespaceArn *string
// The name of the ID namespace.
//
// This member is required.
IdNamespaceName *string
// The type of ID namespace. There are two types: SOURCE and TARGET .
//
// The SOURCE contains configurations for sourceId data that will be processed in
// an ID mapping workflow.
//
// The TARGET contains a configuration of targetId to which all sourceIds will
// resolve to.
//
// This member is required.
Type IdNamespaceType
// The timestamp of when the ID namespace was last updated.
//
// This member is required.
UpdatedAt *time.Time
// The description of the ID namespace.
Description *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 KMSArn , OutputS3Path , and RoleArn .
type JobOutputSource struct {
// The S3 path to which Entity Resolution will write the output table.
//
// This member is required.
OutputS3Path *string
// The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this
// role to access Amazon Web Services resources on your behalf as part of workflow
// execution.
//
// This member is required.
RoleArn *string
// Customer KMS ARN for encryption at rest. If not provided, system will use an
// Entity Resolution managed KMS key.
KMSArn *string
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
}
// An object containing ProviderConfiguration and ProviderServiceArn .
type NamespaceProviderProperties struct {
// The Amazon Resource Name (ARN) of the provider service.
//
// This member is required.
ProviderServiceArn *string
// An object which defines any additional configurations required by the provider
// service.
ProviderConfiguration document.Interface
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 input schema supported by provider service.
type ProviderComponentSchema struct {
// The provider schema attributes.
ProviderSchemaAttributes []ProviderSchemaAttribute
// Input schema for the provider service.
Schemas [][]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 provider configuration required for different ID namespace types.
type ProviderIdNameSpaceConfiguration struct {
// The description of the ID namespace.
Description *string
// Configurations required for the source ID namespace.
ProviderSourceConfigurationDefinition document.Interface
// Configurations required for the target ID namespace.
ProviderTargetConfigurationDefinition document.Interface
noSmithyDocumentSerde
}
// 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
}
// The provider schema attribute.
type ProviderSchemaAttribute struct {
// The field name.
//
// This member is required.
FieldName *string
// The type of the provider schema attribute.
//
// This member is required.
Type SchemaAttributeType
// The hashing attribute of the provider schema.
Hashing *bool
// The sub type of the provider schema attribute.
SubType *string
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 three types of matching: RULE_MATCHING ,
// ML_MATCHING , and PROVIDER .
//
// 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 , MatchKey , and SubType .
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
// A string that instructs 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, consider a scenario where the source table contains various
// addresses, such as business_address and shipping_address . By assigning a
// matchKey called 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() {}
|