Show / Hide Table of Contents

Class EnvironmentFileConfig

Configuration for the environment file.

Inheritance
System.Object
EnvironmentFileConfig
Implements
IEnvironmentFileConfig
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public class EnvironmentFileConfig : Object, IEnvironmentFileConfig
Syntax (vb)
Public Class EnvironmentFileConfig
    Inherits Object
    Implements 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

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

EnvironmentFileType

S3Location

The location of the environment file in S3.

public ILocation S3Location { get; set; }
Property Value

ILocation

Implements

IEnvironmentFileConfig
Back to top Generated by DocFX