Interface AuditEventFieldValueUnion.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AuditEventFieldValueUnion.Builder,AuditEventFieldValueUnion>,SdkBuilder<AuditEventFieldValueUnion.Builder,AuditEventFieldValueUnion>,SdkPojo
- Enclosing class:
- AuditEventFieldValueUnion
public static interface AuditEventFieldValueUnion.Builder extends SdkPojo, CopyableBuilder<AuditEventFieldValueUnion.Builder,AuditEventFieldValueUnion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AuditEventFieldValueUnion.BuilderbooleanValue(Boolean booleanValue)Can be either null, or have a Boolean value type.AuditEventFieldValueUnion.BuilderdoubleValue(Double doubleValue)Can be either null, or have a Double value type.default AuditEventFieldValueUnion.BuilderemptyValue(Consumer<EmptyFieldValue.Builder> emptyValue)Sets the value of the EmptyValue property for this object.AuditEventFieldValueUnion.BuilderemptyValue(EmptyFieldValue emptyValue)Sets the value of the EmptyValue property for this object.AuditEventFieldValueUnion.BuilderstringValue(String stringValue)Can be either null, or have a String value type.AuditEventFieldValueUnion.BuilderuserArnValue(String userArnValue)Can be either null, or have a String value type formatted as an ARN.-
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
-
booleanValue
AuditEventFieldValueUnion.Builder booleanValue(Boolean 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
AuditEventFieldValueUnion.Builder doubleValue(Double doubleValue)
Can be either null, or have a Double value type. Only one value can be provided.
- Parameters:
doubleValue- Can be either null, or have a Double value type. Only one value can be provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emptyValue
AuditEventFieldValueUnion.Builder emptyValue(EmptyFieldValue emptyValue)
Sets the value of the EmptyValue property for this object.- Parameters:
emptyValue- The new value for the EmptyValue property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emptyValue
default AuditEventFieldValueUnion.Builder emptyValue(Consumer<EmptyFieldValue.Builder> emptyValue)
Sets the value of the EmptyValue property for this object. 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:
emptyValue(EmptyFieldValue)
-
stringValue
AuditEventFieldValueUnion.Builder stringValue(String stringValue)
Can be either null, or have a String value type. Only one value can be provided.
- Parameters:
stringValue- Can be either null, or have a String value type. Only one value can be provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userArnValue
AuditEventFieldValueUnion.Builder userArnValue(String userArnValue)
Can be either null, or have a String value type formatted as an ARN. Only one value can be provided.
- Parameters:
userArnValue- Can be either null, or have a String value type formatted as an ARN. Only one value can be provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-