Interface FieldValueUnion.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<FieldValueUnion.Builder,,FieldValueUnion> SdkBuilder<FieldValueUnion.Builder,,FieldValueUnion> SdkPojo
- Enclosing class:
FieldValueUnion
public static interface FieldValueUnion.Builder
extends SdkPojo, CopyableBuilder<FieldValueUnion.Builder,FieldValueUnion>
-
Method Summary
Modifier and TypeMethodDescriptionbooleanValue(Boolean booleanValue) Can be either null, or have a Boolean value type.doubleValue(Double doubleValue) Can be either null, or have a Double number value type.default FieldValueUnion.BuilderemptyValue(Consumer<EmptyFieldValue.Builder> emptyValue) An empty value.emptyValue(EmptyFieldValue emptyValue) An empty value.stringValue(String stringValue) String value type.userArnValue(String userArnValue) Represents the user that performed the audit.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
booleanValue
Can be either null, or have a Boolean value type. Only one value can be provided.
- Parameters:
booleanValue- Can be either null, or have a Boolean value type. Only one value can be provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
doubleValue
Can be either null, or have a Double number value type. Only one value can be provided.
- Parameters:
doubleValue- Can be either null, or have a Double number value type. Only one value can be provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emptyValue
An empty value.
- Parameters:
emptyValue- An empty value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emptyValue
An empty value.
This is a convenience method that creates an instance of theEmptyFieldValue.Builderavoiding the need to create one manually viaEmptyFieldValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toemptyValue(EmptyFieldValue).- Parameters:
emptyValue- a consumer that will call methods onEmptyFieldValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
stringValue
String value type.
- Parameters:
stringValue- String value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userArnValue
Represents the user that performed the audit.
- Parameters:
userArnValue- Represents the user that performed the audit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-