Interface DescribeEntityResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeEntityResponse.Builder,DescribeEntityResponse>,GlueResponse.Builder,SdkBuilder<DescribeEntityResponse.Builder,DescribeEntityResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeEntityResponse
public static interface DescribeEntityResponse.Builder extends GlueResponse.Builder, SdkPojo, CopyableBuilder<DescribeEntityResponse.Builder,DescribeEntityResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeEntityResponse.Builderfields(Collection<Field> fields)Describes the fields for that connector entity.DescribeEntityResponse.Builderfields(Consumer<Field.Builder>... fields)Describes the fields for that connector entity.DescribeEntityResponse.Builderfields(Field... fields)Describes the fields for that connector entity.DescribeEntityResponse.BuildernextToken(String nextToken)A continuation token, present if the current segment is not the last.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
fields
DescribeEntityResponse.Builder fields(Collection<Field> fields)
Describes the fields for that connector entity. This is the list of
Fieldobjects.Fieldis very similar to column in a database. TheFieldobject has information about different properties associated with fields in the connector.- Parameters:
fields- Describes the fields for that connector entity. This is the list ofFieldobjects.Fieldis very similar to column in a database. TheFieldobject has information about different properties associated with fields in the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
DescribeEntityResponse.Builder fields(Field... fields)
Describes the fields for that connector entity. This is the list of
Fieldobjects.Fieldis very similar to column in a database. TheFieldobject has information about different properties associated with fields in the connector.- Parameters:
fields- Describes the fields for that connector entity. This is the list ofFieldobjects.Fieldis very similar to column in a database. TheFieldobject has information about different properties associated with fields in the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
DescribeEntityResponse.Builder fields(Consumer<Field.Builder>... fields)
Describes the fields for that connector entity. This is the list of
This is a convenience method that creates an instance of theFieldobjects.Fieldis very similar to column in a database. TheFieldobject has information about different properties associated with fields in the connector.Field.Builderavoiding the need to create one manually viaField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#fields(List.) - Parameters:
fields- a consumer that will call methods onField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#fields(java.util.Collection)
-
nextToken
DescribeEntityResponse.Builder nextToken(String nextToken)
A continuation token, present if the current segment is not the last.
- Parameters:
nextToken- A continuation token, present if the current segment is not the last.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-