Show / Hide Table of Contents

Class BaseDeploymentConfigOptions

Construction properties of BaseDeploymentConfig.

Inheritance
object
BaseDeploymentConfigOptions
Implements
IBaseDeploymentConfigOptions
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 BaseDeploymentConfigOptions : IBaseDeploymentConfigOptions
Syntax (vb)
Public Class BaseDeploymentConfigOptions Implements IBaseDeploymentConfigOptions
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.CodeDeploy;

            var baseDeploymentConfigOptions = new BaseDeploymentConfigOptions {
                DeploymentConfigName = "deploymentConfigName"
            };

Synopsis

Constructors

BaseDeploymentConfigOptions()

Construction properties of BaseDeploymentConfig.

Properties

DeploymentConfigName

The physical, human-readable name of the Deployment Configuration.

Constructors

BaseDeploymentConfigOptions()

Construction properties of BaseDeploymentConfig.

public BaseDeploymentConfigOptions()
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.CodeDeploy;

            var baseDeploymentConfigOptions = new BaseDeploymentConfigOptions {
                DeploymentConfigName = "deploymentConfigName"
            };

Properties

DeploymentConfigName

The physical, human-readable name of the Deployment Configuration.

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

string

Remarks

Default: - automatically generated name

Implements

IBaseDeploymentConfigOptions
Back to top Generated by DocFX