Class EnvironmentFileConfig
Configuration for the environment file.
Inheritance
System.Object
    EnvironmentFileConfig
  Implements
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public class EnvironmentFileConfig : Object, IEnvironmentFileConfigSyntax (vb)
Public Class EnvironmentFileConfig
    Inherits Object
    Implements IEnvironmentFileConfigRemarks
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
Constructors
| EnvironmentFileConfig() | 
Properties
| FileType | The type of environment file. | 
| S3Location | The location of the environment file in S3. | 
Constructors
EnvironmentFileConfig()
public EnvironmentFileConfig()Properties
FileType
The type of environment file.
public EnvironmentFileType FileType { get; set; }Property Value
S3Location
The location of the environment file in S3.
public ILocation S3Location { get; set; }Property Value