Interface Field.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Field.Builder,Field>,SdkBuilder<Field.Builder,Field>,SdkPojo
- Enclosing class:
- Field
public static interface Field.Builder extends SdkPojo, CopyableBuilder<Field.Builder,Field>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Field.Builderkey(String key)The field identifier.Field.BuilderrefValue(String refValue)The field value, expressed as the identifier of another object.Field.BuilderstringValue(String stringValue)The field value, expressed as a String.-
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
-
key
Field.Builder key(String key)
The field identifier.
- Parameters:
key- The field identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringValue
Field.Builder stringValue(String stringValue)
The field value, expressed as a String.
- Parameters:
stringValue- The field value, expressed as a String.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
refValue
Field.Builder refValue(String refValue)
The field value, expressed as the identifier of another object.
- Parameters:
refValue- The field value, expressed as the identifier of another object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-