Show / Hide Table of Contents

Interface IConfiguration

Namespace: Amazon.CDK.AWS.AppConfig
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IConfiguration : IConstruct, IDependable
Syntax (vb)
Public Interface IConfiguration Inherits IConstruct, IDependable

Synopsis

Properties

Application

The application associated with the configuration.

ConfigurationProfileId

The ID of the configuration profile.

DeployTo

The environments to deploy to.

DeploymentKey

The deployment key for the configuration.

DeploymentStrategy

The deployment strategy for the configuration.

Description

The description of the configuration.

Name

The name of the configuration.

Type

The configuration type.

Validators

The validators for the configuration.

VersionNumber

The configuration version number.

Properties

Application

The application associated with the configuration.

IApplication Application { get; }
Property Value

IApplication

ConfigurationProfileId

The ID of the configuration profile.

string ConfigurationProfileId { get; }
Property Value

string

DeployTo

The environments to deploy to.

IEnvironment[]? DeployTo { get; }
Property Value

IEnvironment[]

DeploymentKey

The deployment key for the configuration.

IKey? DeploymentKey { get; }
Property Value

IKey

DeploymentStrategy

The deployment strategy for the configuration.

IDeploymentStrategy? DeploymentStrategy { get; }
Property Value

IDeploymentStrategy

Description

The description of the configuration.

string? Description { get; }
Property Value

string

Name

The name of the configuration.

string? Name { get; }
Property Value

string

Type

The configuration type.

ConfigurationType? Type { get; }
Property Value

ConfigurationType?

Validators

The validators for the configuration.

IValidator[]? Validators { get; }
Property Value

IValidator[]

VersionNumber

The configuration version number.

string? VersionNumber { get; }
Property Value

string

Back to top Generated by DocFX