Class WorkflowParameterValue
(experimental) The parameter value for a workflow parameter.
Namespace: Amazon.CDK.AWS.ImageBuilder.Alpha
Assembly: Amazon.CDK.AWS.ImageBuilder.Alpha.dll
Syntax (csharp)
public class WorkflowParameterValue : DeputyBase
Syntax (vb)
Public Class WorkflowParameterValue Inherits DeputyBase
Remarks
Stability: Experimental
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.ImageBuilder.Alpha;
var workflowParameterValue = WorkflowParameterValue.FromBoolean(false);
Synopsis
Constructors
| WorkflowParameterValue(string[]) | (experimental) The parameter value for a workflow parameter. |
Properties
| Value | (experimental) The rendered parameter value. |
Methods
| FromBoolean(bool) | (experimental) The value of the parameter as a boolean. |
| FromInteger(double) | (experimental) The value of the parameter as an integer. |
| FromString(string) | (experimental) The value of the parameter as a string. |
| FromStringList(string[]) | (experimental) The value of the parameter as a string list. |
Constructors
WorkflowParameterValue(string[])
(experimental) The parameter value for a workflow parameter.
public WorkflowParameterValue(string[] value)
Parameters
- value string[]
Remarks
Stability: Experimental
Properties
Value
(experimental) The rendered parameter value.
public virtual string[] Value { get; }
Property Value
string[]
Remarks
Stability: Experimental
Methods
FromBoolean(bool)
(experimental) The value of the parameter as a boolean.
public static WorkflowParameterValue FromBoolean(bool value)
Parameters
- value bool
The boolean value of the parameter.
Returns
Remarks
Stability: Experimental
FromInteger(double)
(experimental) The value of the parameter as an integer.
public static WorkflowParameterValue FromInteger(double value)
Parameters
- value double
The integer value of the parameter.
Returns
Remarks
Stability: Experimental
FromString(string)
(experimental) The value of the parameter as a string.
public static WorkflowParameterValue FromString(string value)
Parameters
- value string
The string value of the parameter.
Returns
Remarks
Stability: Experimental
FromStringList(string[])
(experimental) The value of the parameter as a string list.
public static WorkflowParameterValue FromStringList(string[] values)
Parameters
- values string[]
The string list value of the parameter.
Returns
Remarks
Stability: Experimental