Interface EnvironmentFile.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnvironmentFile.Builder,EnvironmentFile>,SdkBuilder<EnvironmentFile.Builder,EnvironmentFile>,SdkPojo
- Enclosing class:
- EnvironmentFile
public static interface EnvironmentFile.Builder extends SdkPojo, CopyableBuilder<EnvironmentFile.Builder,EnvironmentFile>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentFile.Buildertype(String type)The file type to use.EnvironmentFile.Buildertype(EnvironmentFileType type)The file type to use.EnvironmentFile.Buildervalue(String value)The Amazon Resource Name (ARN) of the Amazon S3 object containing the environment variable file.-
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
-
value
EnvironmentFile.Builder value(String value)
The Amazon Resource Name (ARN) of the Amazon S3 object containing the environment variable file.
- Parameters:
value- The Amazon Resource Name (ARN) of the Amazon S3 object containing the environment variable file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
EnvironmentFile.Builder type(String type)
The file type to use. Environment files are objects in Amazon S3. The only supported value is
s3.- Parameters:
type- The file type to use. Environment files are objects in Amazon S3. The only supported value iss3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnvironmentFileType,EnvironmentFileType
-
type
EnvironmentFile.Builder type(EnvironmentFileType type)
The file type to use. Environment files are objects in Amazon S3. The only supported value is
s3.- Parameters:
type- The file type to use. Environment files are objects in Amazon S3. The only supported value iss3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnvironmentFileType,EnvironmentFileType
-
-