Show / Hide Table of Contents

Class EcsApplicationProps

Construction properties for EcsApplication.

Inheritance
object
EcsApplicationProps
Implements
IEcsApplicationProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EcsApplicationProps : IEcsApplicationProps
Syntax (vb)
Public Class EcsApplicationProps Implements IEcsApplicationProps
Remarks

ExampleMetadata: infused

Examples
var application = new EcsApplication(this, "CodeDeployApplication", new EcsApplicationProps {
                ApplicationName = "MyApplication"
            });

Synopsis

Constructors

EcsApplicationProps()

Construction properties for EcsApplication.

Properties

ApplicationName

The physical, human-readable name of the CodeDeploy Application.

Constructors

EcsApplicationProps()

Construction properties for EcsApplication.

public EcsApplicationProps()
Remarks

ExampleMetadata: infused

Examples
var application = new EcsApplication(this, "CodeDeployApplication", new EcsApplicationProps {
                ApplicationName = "MyApplication"
            });

Properties

ApplicationName

The physical, human-readable name of the CodeDeploy Application.

public string? ApplicationName { get; set; }
Property Value

string

Remarks

Default: an auto-generated name will be used

Implements

IEcsApplicationProps
Back to top Generated by DocFX