Interface ValidationData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ValidationData.Builder,ValidationData>,SdkBuilder<ValidationData.Builder,ValidationData>,SdkPojo
- Enclosing class:
- ValidationData
public static interface ValidationData.Builder extends SdkPojo, CopyableBuilder<ValidationData.Builder,ValidationData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValidationData.Builderassets(Collection<Asset> assets)The assets that comprise the validation data.ValidationData.Builderassets(Consumer<Asset.Builder>... assets)The assets that comprise the validation data.ValidationData.Builderassets(Asset... assets)The assets that comprise the validation data.-
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
-
assets
ValidationData.Builder assets(Collection<Asset> assets)
The assets that comprise the validation data.
- Parameters:
assets- The assets that comprise the validation data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assets
ValidationData.Builder assets(Asset... assets)
The assets that comprise the validation data.
- Parameters:
assets- The assets that comprise the validation data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assets
ValidationData.Builder assets(Consumer<Asset.Builder>... assets)
The assets that comprise the validation data.
This is a convenience method that creates an instance of theAsset.Builderavoiding the need to create one manually viaAsset.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#assets(List.) - Parameters:
assets- a consumer that will call methods onAsset.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#assets(java.util.Collection)
-
-