Interface BatchGetCustomEntityTypesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchGetCustomEntityTypesResponse.Builder,BatchGetCustomEntityTypesResponse>,GlueResponse.Builder,SdkBuilder<BatchGetCustomEntityTypesResponse.Builder,BatchGetCustomEntityTypesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetCustomEntityTypesResponse
public static interface BatchGetCustomEntityTypesResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<BatchGetCustomEntityTypesResponse.Builder,BatchGetCustomEntityTypesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetCustomEntityTypesResponse.BuildercustomEntityTypes(Collection<CustomEntityType> customEntityTypes)A list ofCustomEntityTypeobjects representing the custom patterns that have been created.BatchGetCustomEntityTypesResponse.BuildercustomEntityTypes(Consumer<CustomEntityType.Builder>... customEntityTypes)A list ofCustomEntityTypeobjects representing the custom patterns that have been created.BatchGetCustomEntityTypesResponse.BuildercustomEntityTypes(CustomEntityType... customEntityTypes)A list ofCustomEntityTypeobjects representing the custom patterns that have been created.BatchGetCustomEntityTypesResponse.BuildercustomEntityTypesNotFound(String... customEntityTypesNotFound)A list of the names of custom patterns that were not found.BatchGetCustomEntityTypesResponse.BuildercustomEntityTypesNotFound(Collection<String> customEntityTypesNotFound)A list of the names of custom patterns that were not found.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueResponse.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
-
customEntityTypes
BatchGetCustomEntityTypesResponse.Builder customEntityTypes(Collection<CustomEntityType> customEntityTypes)
A list of
CustomEntityTypeobjects representing the custom patterns that have been created.- Parameters:
customEntityTypes- A list ofCustomEntityTypeobjects representing the custom patterns that have been created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customEntityTypes
BatchGetCustomEntityTypesResponse.Builder customEntityTypes(CustomEntityType... customEntityTypes)
A list of
CustomEntityTypeobjects representing the custom patterns that have been created.- Parameters:
customEntityTypes- A list ofCustomEntityTypeobjects representing the custom patterns that have been created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customEntityTypes
BatchGetCustomEntityTypesResponse.Builder customEntityTypes(Consumer<CustomEntityType.Builder>... customEntityTypes)
A list of
This is a convenience method that creates an instance of theCustomEntityTypeobjects representing the custom patterns that have been created.CustomEntityType.Builderavoiding the need to create one manually viaCustomEntityType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#customEntityTypes(List.) - Parameters:
customEntityTypes- a consumer that will call methods onCustomEntityType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#customEntityTypes(java.util.Collection)
-
customEntityTypesNotFound
BatchGetCustomEntityTypesResponse.Builder customEntityTypesNotFound(Collection<String> customEntityTypesNotFound)
A list of the names of custom patterns that were not found.
- Parameters:
customEntityTypesNotFound- A list of the names of custom patterns that were not found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customEntityTypesNotFound
BatchGetCustomEntityTypesResponse.Builder customEntityTypesNotFound(String... customEntityTypesNotFound)
A list of the names of custom patterns that were not found.
- Parameters:
customEntityTypesNotFound- A list of the names of custom patterns that were not found.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-