Interface DynamicDefaultValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DynamicDefaultValue.Builder,DynamicDefaultValue>,SdkBuilder<DynamicDefaultValue.Builder,DynamicDefaultValue>,SdkPojo
- Enclosing class:
- DynamicDefaultValue
@Mutable @NotThreadSafe public static interface DynamicDefaultValue.Builder extends SdkPojo, CopyableBuilder<DynamicDefaultValue.Builder,DynamicDefaultValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DynamicDefaultValue.BuilderdefaultValueColumn(Consumer<ColumnIdentifier.Builder> defaultValueColumn)The column that contains the default value of each user or group.DynamicDefaultValue.BuilderdefaultValueColumn(ColumnIdentifier defaultValueColumn)The column that contains the default value of each user or group.default DynamicDefaultValue.BuildergroupNameColumn(Consumer<ColumnIdentifier.Builder> groupNameColumn)The column that contains the group name.DynamicDefaultValue.BuildergroupNameColumn(ColumnIdentifier groupNameColumn)The column that contains the group name.default DynamicDefaultValue.BuilderuserNameColumn(Consumer<ColumnIdentifier.Builder> userNameColumn)The column that contains the username.DynamicDefaultValue.BuilderuserNameColumn(ColumnIdentifier userNameColumn)The column that contains the username.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
userNameColumn
DynamicDefaultValue.Builder userNameColumn(ColumnIdentifier userNameColumn)
The column that contains the username.
- Parameters:
userNameColumn- The column that contains the username.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userNameColumn
default DynamicDefaultValue.Builder userNameColumn(Consumer<ColumnIdentifier.Builder> userNameColumn)
The column that contains the username.
This is a convenience method that creates an instance of theColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed touserNameColumn(ColumnIdentifier).- Parameters:
userNameColumn- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
userNameColumn(ColumnIdentifier)
-
groupNameColumn
DynamicDefaultValue.Builder groupNameColumn(ColumnIdentifier groupNameColumn)
The column that contains the group name.
- Parameters:
groupNameColumn- The column that contains the group name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupNameColumn
default DynamicDefaultValue.Builder groupNameColumn(Consumer<ColumnIdentifier.Builder> groupNameColumn)
The column that contains the group name.
This is a convenience method that creates an instance of theColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed togroupNameColumn(ColumnIdentifier).- Parameters:
groupNameColumn- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
groupNameColumn(ColumnIdentifier)
-
defaultValueColumn
DynamicDefaultValue.Builder defaultValueColumn(ColumnIdentifier defaultValueColumn)
The column that contains the default value of each user or group.
- Parameters:
defaultValueColumn- The column that contains the default value of each user or group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValueColumn
default DynamicDefaultValue.Builder defaultValueColumn(Consumer<ColumnIdentifier.Builder> defaultValueColumn)
The column that contains the default value of each user or group.
This is a convenience method that creates an instance of theColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todefaultValueColumn(ColumnIdentifier).- Parameters:
defaultValueColumn- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
defaultValueColumn(ColumnIdentifier)
-
-