Interface CodeConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CodeConfiguration.Builder,CodeConfiguration>,SdkBuilder<CodeConfiguration.Builder,CodeConfiguration>,SdkPojo
- Enclosing class:
- CodeConfiguration
public static interface CodeConfiguration.Builder extends SdkPojo, CopyableBuilder<CodeConfiguration.Builder,CodeConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CodeConfiguration.Builders3Bucket(String s3Bucket)A unique name for the S3 bucket.CodeConfiguration.Builders3Key(String s3Key)The full S3 path (excluding bucket) to the .zip file.CodeConfiguration.Builders3ObjectVersion(String s3ObjectVersion)The version of an S3 object.-
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
CodeConfiguration.Builder s3Bucket(String s3Bucket)
A unique name for the S3 bucket.
- Parameters:
s3Bucket- A unique name for the S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Key
CodeConfiguration.Builder s3Key(String s3Key)
The full S3 path (excluding bucket) to the .zip file. This file contains the code that is loaded onto the cluster when it's started.
- Parameters:
s3Key- The full S3 path (excluding bucket) to the .zip file. This file contains the code that is loaded onto the cluster when it's started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3ObjectVersion
CodeConfiguration.Builder s3ObjectVersion(String s3ObjectVersion)
The version of an S3 object.
- Parameters:
s3ObjectVersion- The version of an S3 object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-