Show / Hide Table of Contents

Class ServerApplicationProps

Construction properties for ServerApplication.

Inheritance
object
ServerApplicationProps
Implements
IServerApplicationProps
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 ServerApplicationProps : IServerApplicationProps
Syntax (vb)
Public Class ServerApplicationProps Implements IServerApplicationProps
Remarks

ExampleMetadata: infused

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

Synopsis

Constructors

ServerApplicationProps()

Construction properties for ServerApplication.

Properties

ApplicationName

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

Constructors

ServerApplicationProps()

Construction properties for ServerApplication.

public ServerApplicationProps()
Remarks

ExampleMetadata: infused

Examples
var application = new ServerApplication(this, "CodeDeployApplication", new ServerApplicationProps {
                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

IServerApplicationProps
Back to top Generated by DocFX