Class CfnProjectProfile.EnvironmentConfigurationProperty
The configuration of an environment.
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnProjectProfile.EnvironmentConfigurationProperty : CfnProjectProfile.IEnvironmentConfigurationProperty
Syntax (vb)
Public Class CfnProjectProfile.EnvironmentConfigurationProperty Implements CfnProjectProfile.IEnvironmentConfigurationProperty
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.DataZone;
var environmentConfigurationProperty = new EnvironmentConfigurationProperty {
AwsRegion = new RegionProperty {
RegionName = "regionName"
},
EnvironmentBlueprintId = "environmentBlueprintId",
Name = "name",
// the properties below are optional
AwsAccount = new AwsAccountProperty {
AwsAccountId = "awsAccountId"
},
ConfigurationParameters = new EnvironmentConfigurationParametersDetailsProperty {
ParameterOverrides = new [] { new EnvironmentConfigurationParameterProperty {
IsEditable = false,
Name = "name",
Value = "value"
} },
ResolvedParameters = new [] { new EnvironmentConfigurationParameterProperty {
IsEditable = false,
Name = "name",
Value = "value"
} },
SsmPath = "ssmPath"
},
DeploymentMode = "deploymentMode",
DeploymentOrder = 123,
Description = "description",
EnvironmentConfigurationId = "environmentConfigurationId"
};
Synopsis
Constructors
| EnvironmentConfigurationProperty() | The configuration of an environment. |
Properties
| AwsAccount | The AWS account of the environment. |
| AwsRegion | The AWS Region of the environment. |
| ConfigurationParameters | The configuration parameters of the environment. |
| DeploymentMode | The deployment mode of the environment. |
| DeploymentOrder | The deployment order of the environment. |
| Description | The environment description. |
| EnvironmentBlueprintId | The environment blueprint ID. |
| EnvironmentConfigurationId | The configuration of an environment. |
| Name | The environment name. |
Constructors
EnvironmentConfigurationProperty()
The configuration of an environment.
public EnvironmentConfigurationProperty()
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.DataZone;
var environmentConfigurationProperty = new EnvironmentConfigurationProperty {
AwsRegion = new RegionProperty {
RegionName = "regionName"
},
EnvironmentBlueprintId = "environmentBlueprintId",
Name = "name",
// the properties below are optional
AwsAccount = new AwsAccountProperty {
AwsAccountId = "awsAccountId"
},
ConfigurationParameters = new EnvironmentConfigurationParametersDetailsProperty {
ParameterOverrides = new [] { new EnvironmentConfigurationParameterProperty {
IsEditable = false,
Name = "name",
Value = "value"
} },
ResolvedParameters = new [] { new EnvironmentConfigurationParameterProperty {
IsEditable = false,
Name = "name",
Value = "value"
} },
SsmPath = "ssmPath"
},
DeploymentMode = "deploymentMode",
DeploymentOrder = 123,
Description = "description",
EnvironmentConfigurationId = "environmentConfigurationId"
};
Properties
AwsAccount
The AWS account of the environment.
public object? AwsAccount { get; set; }
Property Value
Remarks
AwsRegion
The AWS Region of the environment.
public object AwsRegion { get; set; }
Property Value
Remarks
ConfigurationParameters
The configuration parameters of the environment.
public object? ConfigurationParameters { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnProjectProfile.IEnvironmentConfigurationParametersDetailsProperty
DeploymentMode
The deployment mode of the environment.
public string? DeploymentMode { get; set; }
Property Value
Remarks
DeploymentOrder
The deployment order of the environment.
public double? DeploymentOrder { get; set; }
Property Value
Remarks
Description
The environment description.
public string? Description { get; set; }
Property Value
Remarks
EnvironmentBlueprintId
The environment blueprint ID.
public string EnvironmentBlueprintId { get; set; }
Property Value
Remarks
EnvironmentConfigurationId
The configuration of an environment.
public string? EnvironmentConfigurationId { get; set; }
Property Value
Remarks
Name
The environment name.
public string Name { get; set; }