Class CfnEnvironmentBlueprintConfigurationPropsMixin.RegionalParameterProperty
The regional parameters in the environment blueprint.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnEnvironmentBlueprintConfigurationPropsMixin.RegionalParameterProperty : CfnEnvironmentBlueprintConfigurationPropsMixin.IRegionalParameterProperty
Syntax (vb)
Public Class CfnEnvironmentBlueprintConfigurationPropsMixin.RegionalParameterProperty Implements CfnEnvironmentBlueprintConfigurationPropsMixin.IRegionalParameterProperty
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.Mixins.Preview.AWS.DataZone.Mixins;
var regionalParameterProperty = new RegionalParameterProperty {
Parameters = new Dictionary<string, string> {
{ "parametersKey", "parameters" }
},
Region = "region"
};
Synopsis
Constructors
| RegionalParameterProperty() | The regional parameters in the environment blueprint. |
Properties
| Parameters | A string to string map containing parameters for the region. |
| Region | The region specified in the environment parameter. |
Constructors
RegionalParameterProperty()
The regional parameters in the environment blueprint.
public RegionalParameterProperty()
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.Mixins.Preview.AWS.DataZone.Mixins;
var regionalParameterProperty = new RegionalParameterProperty {
Parameters = new Dictionary<string, string> {
{ "parametersKey", "parameters" }
},
Region = "region"
};
Properties
Parameters
A string to string map containing parameters for the region.
public object? Parameters { get; set; }
Property Value
Remarks
Region
The region specified in the environment parameter.
public string? Region { get; set; }