@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.698Z") @Stability(value=Stable) public interface EnvironmentFileConfig extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ecs.*;
EnvironmentFileConfig environmentFileConfig = EnvironmentFileConfig.builder()
.fileType(EnvironmentFileType.S3)
.s3Location(Location.builder()
.bucketName("bucketName")
.objectKey("objectKey")
// the properties below are optional
.objectVersion("objectVersion")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EnvironmentFileConfig.Builder
A builder for
EnvironmentFileConfig |
static class |
EnvironmentFileConfig.Jsii$Proxy
An implementation for
EnvironmentFileConfig |
| Modifier and Type | Method and Description |
|---|---|
static EnvironmentFileConfig.Builder |
builder() |
EnvironmentFileType |
getFileType()
The type of environment file.
|
Location |
getS3Location()
The location of the environment file in S3.
|
@Stability(value=Stable) @NotNull EnvironmentFileType getFileType()
@Stability(value=Stable) @NotNull Location getS3Location()
@Stability(value=Stable) static EnvironmentFileConfig.Builder builder()
EnvironmentFileConfig.Builder of EnvironmentFileConfigCopyright © 2022. All rights reserved.