Interface SourceConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SourceConfig.Builder,SourceConfig>,SdkBuilder<SourceConfig.Builder,SourceConfig>,SdkPojo
- Enclosing class:
- SourceConfig
public static interface SourceConfig.Builder extends SdkPojo, CopyableBuilder<SourceConfig.Builder,SourceConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SourceConfig.Builderarchitecture(String architecture)The target processor architecture for the application.SourceConfig.Builderarchitecture(Architecture architecture)The target processor architecture for the application.SourceConfig.Builders3Bucket(String s3Bucket)The Amazon S3 bucket name.SourceConfig.Builders3Key(String s3Key)The s3 object key.-
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
-
s3Bucket
SourceConfig.Builder s3Bucket(String s3Bucket)
The Amazon S3 bucket name.
- Parameters:
s3Bucket- The Amazon S3 bucket name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Key
SourceConfig.Builder s3Key(String s3Key)
The s3 object key.
- Parameters:
s3Key- The s3 object key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
architecture
SourceConfig.Builder architecture(String architecture)
The target processor architecture for the application.
- Parameters:
architecture- The target processor architecture for the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Architecture,Architecture
-
architecture
SourceConfig.Builder architecture(Architecture architecture)
The target processor architecture for the application.
- Parameters:
architecture- The target processor architecture for the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Architecture,Architecture
-
-