Class CfnServiceAction.DefinitionParameterProperty
The list of parameters in JSON format.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnServiceAction.DefinitionParameterProperty : CfnServiceAction.IDefinitionParameterProperty
Syntax (vb)
Public Class CfnServiceAction.DefinitionParameterProperty Implements CfnServiceAction.IDefinitionParameterProperty
Remarks
For example: [{"Name":"InstanceId","Type":"TARGET"}] or [{"Name":"InstanceId","Type":"TEXT_VALUE"}]
.
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 definitionParameterProperty = new DefinitionParameterProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
DefinitionParameterProperty() | The list of parameters in JSON format. |
Properties
Key | The parameter key. |
Value | The value of the parameter. |
Constructors
DefinitionParameterProperty()
The list of parameters in JSON format.
public DefinitionParameterProperty()
Remarks
For example: [{"Name":"InstanceId","Type":"TARGET"}] or [{"Name":"InstanceId","Type":"TEXT_VALUE"}]
.
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 definitionParameterProperty = new DefinitionParameterProperty {
Key = "key",
Value = "value"
};
Properties
Key
The parameter key.
public string Key { get; set; }
Property Value
Remarks
Value
The value of the parameter.
public string Value { get; set; }