Interface UnmappedAttribute.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UnmappedAttribute.Builder,UnmappedAttribute>,SdkBuilder<UnmappedAttribute.Builder,UnmappedAttribute>,SdkPojo
- Enclosing class:
- UnmappedAttribute
public static interface UnmappedAttribute.Builder extends SdkPojo, CopyableBuilder<UnmappedAttribute.Builder,UnmappedAttribute>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UnmappedAttribute.Builderattribute(Consumer<Attribute.Builder> attribute)The specific attribute that has been extracted but not mapped to an entity.UnmappedAttribute.Builderattribute(Attribute attribute)The specific attribute that has been extracted but not mapped to an entity.UnmappedAttribute.Buildertype(String type)The type of the unmapped attribute, could be one of the following values: "MEDICATION", "MEDICAL_CONDITION", "ANATOMY", "TEST_AND_TREATMENT_PROCEDURE" or "PROTECTED_HEALTH_INFORMATION".UnmappedAttribute.Buildertype(EntityType type)The type of the unmapped attribute, could be one of the following values: "MEDICATION", "MEDICAL_CONDITION", "ANATOMY", "TEST_AND_TREATMENT_PROCEDURE" or "PROTECTED_HEALTH_INFORMATION".-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
type
UnmappedAttribute.Builder type(String type)
The type of the unmapped attribute, could be one of the following values: "MEDICATION", "MEDICAL_CONDITION", "ANATOMY", "TEST_AND_TREATMENT_PROCEDURE" or "PROTECTED_HEALTH_INFORMATION".
- Parameters:
type- The type of the unmapped attribute, could be one of the following values: "MEDICATION", "MEDICAL_CONDITION", "ANATOMY", "TEST_AND_TREATMENT_PROCEDURE" or "PROTECTED_HEALTH_INFORMATION".- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EntityType,EntityType
-
type
UnmappedAttribute.Builder type(EntityType type)
The type of the unmapped attribute, could be one of the following values: "MEDICATION", "MEDICAL_CONDITION", "ANATOMY", "TEST_AND_TREATMENT_PROCEDURE" or "PROTECTED_HEALTH_INFORMATION".
- Parameters:
type- The type of the unmapped attribute, could be one of the following values: "MEDICATION", "MEDICAL_CONDITION", "ANATOMY", "TEST_AND_TREATMENT_PROCEDURE" or "PROTECTED_HEALTH_INFORMATION".- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EntityType,EntityType
-
attribute
UnmappedAttribute.Builder attribute(Attribute attribute)
The specific attribute that has been extracted but not mapped to an entity.
- Parameters:
attribute- The specific attribute that has been extracted but not mapped to an entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attribute
default UnmappedAttribute.Builder attribute(Consumer<Attribute.Builder> attribute)
The specific attribute that has been extracted but not mapped to an entity.
This is a convenience method that creates an instance of theAttribute.Builderavoiding the need to create one manually viaAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toattribute(Attribute).- Parameters:
attribute- a consumer that will call methods onAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
attribute(Attribute)
-
-