Interface CreateSchemaMappingResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateSchemaMappingResponse.Builder,CreateSchemaMappingResponse>,EntityResolutionResponse.Builder,SdkBuilder<CreateSchemaMappingResponse.Builder,CreateSchemaMappingResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateSchemaMappingResponse
public static interface CreateSchemaMappingResponse.Builder extends EntityResolutionResponse.Builder, SdkPojo, CopyableBuilder<CreateSchemaMappingResponse.Builder,CreateSchemaMappingResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateSchemaMappingResponse.Builderdescription(String description)A description of the schema.CreateSchemaMappingResponse.BuildermappedInputFields(Collection<SchemaInputAttribute> mappedInputFields)A list ofMappedInputFields.CreateSchemaMappingResponse.BuildermappedInputFields(Consumer<SchemaInputAttribute.Builder>... mappedInputFields)A list ofMappedInputFields.CreateSchemaMappingResponse.BuildermappedInputFields(SchemaInputAttribute... mappedInputFields)A list ofMappedInputFields.CreateSchemaMappingResponse.BuilderschemaArn(String schemaArn)The ARN (Amazon Resource Name) that Entity Resolution generated for theSchemaMapping.CreateSchemaMappingResponse.BuilderschemaName(String schemaName)The name of the schema.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.entityresolution.model.EntityResolutionResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
description
CreateSchemaMappingResponse.Builder description(String description)
A description of the schema.
- Parameters:
description- A description of the schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mappedInputFields
CreateSchemaMappingResponse.Builder mappedInputFields(Collection<SchemaInputAttribute> mappedInputFields)
A list of
MappedInputFields. EachMappedInputFieldcorresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.- Parameters:
mappedInputFields- A list ofMappedInputFields. EachMappedInputFieldcorresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mappedInputFields
CreateSchemaMappingResponse.Builder mappedInputFields(SchemaInputAttribute... mappedInputFields)
A list of
MappedInputFields. EachMappedInputFieldcorresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.- Parameters:
mappedInputFields- A list ofMappedInputFields. EachMappedInputFieldcorresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mappedInputFields
CreateSchemaMappingResponse.Builder mappedInputFields(Consumer<SchemaInputAttribute.Builder>... mappedInputFields)
A list of
This is a convenience method that creates an instance of theMappedInputFields. EachMappedInputFieldcorresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.SchemaInputAttribute.Builderavoiding the need to create one manually viaSchemaInputAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#mappedInputFields(List.) - Parameters:
mappedInputFields- a consumer that will call methods onSchemaInputAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#mappedInputFields(java.util.Collection)
-
schemaArn
CreateSchemaMappingResponse.Builder schemaArn(String schemaArn)
The ARN (Amazon Resource Name) that Entity Resolution generated for the
SchemaMapping.- Parameters:
schemaArn- The ARN (Amazon Resource Name) that Entity Resolution generated for theSchemaMapping.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemaName
CreateSchemaMappingResponse.Builder schemaName(String schemaName)
The name of the schema.
- Parameters:
schemaName- The name of the schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-