Interface IEnvironmentFileConfig
Configuration for the environment file.
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public interface IEnvironmentFileConfig
Syntax (vb)
Public Interface IEnvironmentFileConfig
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ECS;
var environmentFileConfig = new EnvironmentFileConfig {
FileType = EnvironmentFileType.S3,
S3Location = new Location {
BucketName = "bucketName",
ObjectKey = "objectKey",
// the properties below are optional
ObjectVersion = "objectVersion"
}
};
Synopsis
Properties
FileType | The type of environment file. |
S3Location | The location of the environment file in S3. |
Properties
FileType
The type of environment file.
EnvironmentFileType FileType { get; }
Property Value