Class CfnProjectProfilePropsMixin.EnvironmentConfigurationParameterProperty
The environment configuration parameter.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DataZone
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnProjectProfilePropsMixin.EnvironmentConfigurationParameterProperty : CfnProjectProfilePropsMixin.IEnvironmentConfigurationParameterProperty
Syntax (vb)
Public Class CfnProjectProfilePropsMixin.EnvironmentConfigurationParameterProperty Implements CfnProjectProfilePropsMixin.IEnvironmentConfigurationParameterProperty
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.CfnPropertyMixins.AWS.DataZone;
var environmentConfigurationParameterProperty = new EnvironmentConfigurationParameterProperty {
IsEditable = false,
Name = "name",
Value = "value"
};
Synopsis
Constructors
| EnvironmentConfigurationParameterProperty() | The environment configuration parameter. |
Properties
| IsEditable | Specifies whether the environment parameter is editable. |
| Name | The name of the environment configuration parameter. |
| Value | The value of the environment configuration parameter. |
Constructors
EnvironmentConfigurationParameterProperty()
The environment configuration parameter.
public EnvironmentConfigurationParameterProperty()
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.CfnPropertyMixins.AWS.DataZone;
var environmentConfigurationParameterProperty = new EnvironmentConfigurationParameterProperty {
IsEditable = false,
Name = "name",
Value = "value"
};
Properties
IsEditable
Specifies whether the environment parameter is editable.
public object? IsEditable { get; set; }
Property Value
Remarks
Name
The name of the environment configuration parameter.
public string? Name { get; set; }
Property Value
Remarks
Value
The value of the environment configuration parameter.
public string? Value { get; set; }