Interface Expression.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Expression.Builder,Expression>,SdkBuilder<Expression.Builder,Expression>,SdkPojo
- Enclosing class:
- Expression
public static interface Expression.Builder extends SdkPojo, CopyableBuilder<Expression.Builder,Expression>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Expression.Builderdimensions(Consumer<DimensionValues.Builder> dimensions)The specificDimensionto use forExpression.Expression.Builderdimensions(DimensionValues dimensions)The specificDimensionto use forExpression.default Expression.Buildertags(Consumer<TagValues.Builder> tags)The specificTagto use forExpression.Expression.Buildertags(TagValues tags)The specificTagto use forExpression.-
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
-
dimensions
Expression.Builder dimensions(DimensionValues dimensions)
The specific
Dimensionto use forExpression.- Parameters:
dimensions- The specificDimensionto use forExpression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dimensions
default Expression.Builder dimensions(Consumer<DimensionValues.Builder> dimensions)
The specific
This is a convenience method that creates an instance of theDimensionto use forExpression.DimensionValues.Builderavoiding the need to create one manually viaDimensionValues.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todimensions(DimensionValues).- Parameters:
dimensions- a consumer that will call methods onDimensionValues.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dimensions(DimensionValues)
-
tags
Expression.Builder tags(TagValues tags)
The specific
Tagto use forExpression.- Parameters:
tags- The specificTagto use forExpression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
default Expression.Builder tags(Consumer<TagValues.Builder> tags)
The specific
This is a convenience method that creates an instance of theTagto use forExpression.TagValues.Builderavoiding the need to create one manually viaTagValues.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totags(TagValues).- Parameters:
tags- a consumer that will call methods onTagValues.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tags(TagValues)
-
-