Show / Hide Table of Contents

Class CfnServiceAction.DefinitionParameterProperty

The list of parameters in JSON format.

Inheritance
object
CfnServiceAction.DefinitionParameterProperty
Implements
CfnServiceAction.IDefinitionParameterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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"}] .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-serviceaction-definitionparameter.html

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"}] .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-serviceaction-definitionparameter.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-serviceaction-definitionparameter.html#cfn-servicecatalog-serviceaction-definitionparameter-key

Value

The value of the parameter.

public string Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-serviceaction-definitionparameter.html#cfn-servicecatalog-serviceaction-definitionparameter-value

Implements

CfnServiceAction.IDefinitionParameterProperty
Back to top Generated by DocFX