Interface SupplementalDataStorageLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SupplementalDataStorageLocation.Builder,SupplementalDataStorageLocation>,SdkBuilder<SupplementalDataStorageLocation.Builder,SupplementalDataStorageLocation>,SdkPojo
- Enclosing class:
- SupplementalDataStorageLocation
@Mutable @NotThreadSafe public static interface SupplementalDataStorageLocation.Builder extends SdkPojo, CopyableBuilder<SupplementalDataStorageLocation.Builder,SupplementalDataStorageLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SupplementalDataStorageLocation.Builders3Location(Consumer<S3Location.Builder> s3Location)Contains information about the Amazon S3 location for the extracted images.SupplementalDataStorageLocation.Builders3Location(S3Location s3Location)Contains information about the Amazon S3 location for the extracted images.SupplementalDataStorageLocation.Buildertype(String type)Specifies the storage service used for this location.SupplementalDataStorageLocation.Buildertype(SupplementalDataStorageLocationType type)Specifies the storage service used for this location.-
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
-
type
SupplementalDataStorageLocation.Builder type(String type)
Specifies the storage service used for this location.
- Parameters:
type- Specifies the storage service used for this location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SupplementalDataStorageLocationType,SupplementalDataStorageLocationType
-
type
SupplementalDataStorageLocation.Builder type(SupplementalDataStorageLocationType type)
Specifies the storage service used for this location.
- Parameters:
type- Specifies the storage service used for this location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SupplementalDataStorageLocationType,SupplementalDataStorageLocationType
-
s3Location
SupplementalDataStorageLocation.Builder s3Location(S3Location s3Location)
Contains information about the Amazon S3 location for the extracted images.
- Parameters:
s3Location- Contains information about the Amazon S3 location for the extracted images.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Location
default SupplementalDataStorageLocation.Builder s3Location(Consumer<S3Location.Builder> s3Location)
Contains information about the Amazon S3 location for the extracted images.
This is a convenience method that creates an instance of theS3Location.Builderavoiding the need to create one manually viaS3Location.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Location(S3Location).- Parameters:
s3Location- a consumer that will call methods onS3Location.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Location(S3Location)
-
-