Class CfnCloudFormationProvisionedProduct.ProvisioningParameterProperty
Information about a parameter used to provision a product.
Inherited Members
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCloudFormationProvisionedProduct.ProvisioningParameterProperty : CfnCloudFormationProvisionedProduct.IProvisioningParameterProperty
Syntax (vb)
Public Class CfnCloudFormationProvisionedProduct.ProvisioningParameterProperty Implements CfnCloudFormationProvisionedProduct.IProvisioningParameterProperty
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.Servicecatalog;
var provisioningParameterProperty = new ProvisioningParameterProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
ProvisioningParameterProperty() | Information about a parameter used to provision a product. |
Properties
Key | The parameter key. |
Value | The parameter value. |
Constructors
ProvisioningParameterProperty()
Information about a parameter used to provision a product.
public ProvisioningParameterProperty()
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.Servicecatalog;
var provisioningParameterProperty = new ProvisioningParameterProperty {
Key = "key",
Value = "value"
};
Properties
Key
The parameter key.
public string Key { get; set; }
Property Value
Remarks
Value
The parameter value.
public string Value { get; set; }