Interface UpdateSchemaMappingRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateSchemaMappingRequest.Builder,UpdateSchemaMappingRequest>,EntityResolutionRequest.Builder,SdkBuilder<UpdateSchemaMappingRequest.Builder,UpdateSchemaMappingRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateSchemaMappingRequest
public static interface UpdateSchemaMappingRequest.Builder extends EntityResolutionRequest.Builder, SdkPojo, CopyableBuilder<UpdateSchemaMappingRequest.Builder,UpdateSchemaMappingRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateSchemaMappingRequest.Builderdescription(String description)A description of the schema.UpdateSchemaMappingRequest.BuildermappedInputFields(Collection<SchemaInputAttribute> mappedInputFields)A list ofMappedInputFields.UpdateSchemaMappingRequest.BuildermappedInputFields(Consumer<SchemaInputAttribute.Builder>... mappedInputFields)A list ofMappedInputFields.UpdateSchemaMappingRequest.BuildermappedInputFields(SchemaInputAttribute... mappedInputFields)A list ofMappedInputFields.UpdateSchemaMappingRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateSchemaMappingRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateSchemaMappingRequest.BuilderschemaName(String schemaName)The name of the schema.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.entityresolution.model.EntityResolutionRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
description
UpdateSchemaMappingRequest.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
UpdateSchemaMappingRequest.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
UpdateSchemaMappingRequest.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
UpdateSchemaMappingRequest.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)
-
schemaName
UpdateSchemaMappingRequest.Builder schemaName(String schemaName)
The name of the schema. There can't be multiple
SchemaMappingswith the same name.- Parameters:
schemaName- The name of the schema. There can't be multipleSchemaMappingswith the same name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateSchemaMappingRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateSchemaMappingRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-