Interface FpgaImageAttribute.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FpgaImageAttribute.Builder,FpgaImageAttribute>,SdkBuilder<FpgaImageAttribute.Builder,FpgaImageAttribute>,SdkPojo
- Enclosing class:
- FpgaImageAttribute
public static interface FpgaImageAttribute.Builder extends SdkPojo, CopyableBuilder<FpgaImageAttribute.Builder,FpgaImageAttribute>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FpgaImageAttribute.Builderdescription(String description)The description of the AFI.FpgaImageAttribute.BuilderfpgaImageId(String fpgaImageId)The ID of the AFI.FpgaImageAttribute.BuilderloadPermissions(Collection<LoadPermission> loadPermissions)The load permissions.FpgaImageAttribute.BuilderloadPermissions(Consumer<LoadPermission.Builder>... loadPermissions)The load permissions.FpgaImageAttribute.BuilderloadPermissions(LoadPermission... loadPermissions)The load permissions.FpgaImageAttribute.Buildername(String name)The name of the AFI.FpgaImageAttribute.BuilderproductCodes(Collection<ProductCode> productCodes)The product codes.FpgaImageAttribute.BuilderproductCodes(Consumer<ProductCode.Builder>... productCodes)The product codes.FpgaImageAttribute.BuilderproductCodes(ProductCode... productCodes)The product codes.-
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
-
fpgaImageId
FpgaImageAttribute.Builder fpgaImageId(String fpgaImageId)
The ID of the AFI.
- Parameters:
fpgaImageId- The ID of the AFI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
FpgaImageAttribute.Builder name(String name)
The name of the AFI.
- Parameters:
name- The name of the AFI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
FpgaImageAttribute.Builder description(String description)
The description of the AFI.
- Parameters:
description- The description of the AFI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loadPermissions
FpgaImageAttribute.Builder loadPermissions(Collection<LoadPermission> loadPermissions)
The load permissions.
- Parameters:
loadPermissions- The load permissions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loadPermissions
FpgaImageAttribute.Builder loadPermissions(LoadPermission... loadPermissions)
The load permissions.
- Parameters:
loadPermissions- The load permissions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loadPermissions
FpgaImageAttribute.Builder loadPermissions(Consumer<LoadPermission.Builder>... loadPermissions)
The load permissions.
This is a convenience method that creates an instance of theLoadPermission.Builderavoiding the need to create one manually viaLoadPermission.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#loadPermissions(List.) - Parameters:
loadPermissions- a consumer that will call methods onLoadPermission.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#loadPermissions(java.util.Collection)
-
productCodes
FpgaImageAttribute.Builder productCodes(Collection<ProductCode> productCodes)
The product codes.
- Parameters:
productCodes- The product codes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
productCodes
FpgaImageAttribute.Builder productCodes(ProductCode... productCodes)
The product codes.
- Parameters:
productCodes- The product codes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
productCodes
FpgaImageAttribute.Builder productCodes(Consumer<ProductCode.Builder>... productCodes)
The product codes.
This is a convenience method that creates an instance of theProductCode.Builderavoiding the need to create one manually viaProductCode.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#productCodes(List.) - Parameters:
productCodes- a consumer that will call methods onProductCode.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#productCodes(java.util.Collection)
-
-