Interface Location.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Location.Builder,Location>,SdkBuilder<Location.Builder,Location>,SdkPojo
- Enclosing class:
- Location
public static interface Location.Builder extends SdkPojo, CopyableBuilder<Location.Builder,Location>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Location.BuilderdynamoDB(Collection<CodeGenNodeArg> dynamoDB)An Amazon DynamoDB table location.Location.BuilderdynamoDB(Consumer<CodeGenNodeArg.Builder>... dynamoDB)An Amazon DynamoDB table location.Location.BuilderdynamoDB(CodeGenNodeArg... dynamoDB)An Amazon DynamoDB table location.Location.Builderjdbc(Collection<CodeGenNodeArg> jdbc)A JDBC location.Location.Builderjdbc(Consumer<CodeGenNodeArg.Builder>... jdbc)A JDBC location.Location.Builderjdbc(CodeGenNodeArg... jdbc)A JDBC location.Location.Builders3(Collection<CodeGenNodeArg> s3)An Amazon Simple Storage Service (Amazon S3) location.Location.Builders3(Consumer<CodeGenNodeArg.Builder>... s3)An Amazon Simple Storage Service (Amazon S3) location.Location.Builders3(CodeGenNodeArg... s3)An Amazon Simple Storage Service (Amazon S3) 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
-
jdbc
Location.Builder jdbc(Collection<CodeGenNodeArg> jdbc)
A JDBC location.
- Parameters:
jdbc- A JDBC location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jdbc
Location.Builder jdbc(CodeGenNodeArg... jdbc)
A JDBC location.
- Parameters:
jdbc- A JDBC location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jdbc
Location.Builder jdbc(Consumer<CodeGenNodeArg.Builder>... jdbc)
A JDBC location.
This is a convenience method that creates an instance of theCodeGenNodeArg.Builderavoiding the need to create one manually viaCodeGenNodeArg.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#jdbc(List.) - Parameters:
jdbc- a consumer that will call methods onCodeGenNodeArg.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#jdbc(java.util.Collection)
-
s3
Location.Builder s3(Collection<CodeGenNodeArg> s3)
An Amazon Simple Storage Service (Amazon S3) location.
- Parameters:
s3- An Amazon Simple Storage Service (Amazon S3) location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
Location.Builder s3(CodeGenNodeArg... s3)
An Amazon Simple Storage Service (Amazon S3) location.
- Parameters:
s3- An Amazon Simple Storage Service (Amazon S3) location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
Location.Builder s3(Consumer<CodeGenNodeArg.Builder>... s3)
An Amazon Simple Storage Service (Amazon S3) location.
This is a convenience method that creates an instance of theCodeGenNodeArg.Builderavoiding the need to create one manually viaCodeGenNodeArg.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#s3(List.) - Parameters:
s3- a consumer that will call methods onCodeGenNodeArg.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#s3(java.util.Collection)
-
dynamoDB
Location.Builder dynamoDB(Collection<CodeGenNodeArg> dynamoDB)
An Amazon DynamoDB table location.
- Parameters:
dynamoDB- An Amazon DynamoDB table location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamoDB
Location.Builder dynamoDB(CodeGenNodeArg... dynamoDB)
An Amazon DynamoDB table location.
- Parameters:
dynamoDB- An Amazon DynamoDB table location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamoDB
Location.Builder dynamoDB(Consumer<CodeGenNodeArg.Builder>... dynamoDB)
An Amazon DynamoDB table location.
This is a convenience method that creates an instance of theCodeGenNodeArg.Builderavoiding the need to create one manually viaCodeGenNodeArg.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dynamoDB(List.) - Parameters:
dynamoDB- a consumer that will call methods onCodeGenNodeArg.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dynamoDB(java.util.Collection)
-
-