Interface S3Location.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3Location.Builder,S3Location>,SdkBuilder<S3Location.Builder,S3Location>,SdkPojo
- Enclosing class:
- S3Location
public static interface S3Location.Builder extends SdkPojo, CopyableBuilder<S3Location.Builder,S3Location>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3Location.Builderbucket(String bucket)The name of the Amazon S3 bucket where the application revision is stored.S3Location.BuilderbundleType(String bundleType)The file type of the application revision.S3Location.BuilderbundleType(BundleType bundleType)The file type of the application revision.S3Location.BuildereTag(String eTag)The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.S3Location.Builderkey(String key)The name of the Amazon S3 object that represents the bundled artifacts for the application revision.S3Location.Builderversion(String version)A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.-
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
-
bucket
S3Location.Builder bucket(String bucket)
The name of the Amazon S3 bucket where the application revision is stored.
- Parameters:
bucket- The name of the Amazon S3 bucket where the application revision is stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
key
S3Location.Builder key(String key)
The name of the Amazon S3 object that represents the bundled artifacts for the application revision.
- Parameters:
key- The name of the Amazon S3 object that represents the bundled artifacts for the application revision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bundleType
S3Location.Builder bundleType(String bundleType)
The file type of the application revision. Must be one of the following:
-
tar: A tar archive file. -
tgz: A compressed tar archive file. -
zip: A zip archive file. -
YAML: A YAML-formatted file. -
JSON: A JSON-formatted file.
- Parameters:
bundleType- The file type of the application revision. Must be one of the following:-
tar: A tar archive file. -
tgz: A compressed tar archive file. -
zip: A zip archive file. -
YAML: A YAML-formatted file. -
JSON: A JSON-formatted file.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BundleType,BundleType
-
-
bundleType
S3Location.Builder bundleType(BundleType bundleType)
The file type of the application revision. Must be one of the following:
-
tar: A tar archive file. -
tgz: A compressed tar archive file. -
zip: A zip archive file. -
YAML: A YAML-formatted file. -
JSON: A JSON-formatted file.
- Parameters:
bundleType- The file type of the application revision. Must be one of the following:-
tar: A tar archive file. -
tgz: A compressed tar archive file. -
zip: A zip archive file. -
YAML: A YAML-formatted file. -
JSON: A JSON-formatted file.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BundleType,BundleType
-
-
version
S3Location.Builder version(String version)
A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.
If the version is not specified, the system uses the most recent version by default.
- Parameters:
version- A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.If the version is not specified, the system uses the most recent version by default.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eTag
S3Location.Builder eTag(String eTag)
The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.
If the ETag is not specified as an input parameter, ETag validation of the object is skipped.
- Parameters:
eTag- The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.If the ETag is not specified as an input parameter, ETag validation of the object is skipped.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-