Class CfnImageRecipe.ComponentParameterProperty
Contains a key/value pair that sets the named component parameter.
Inheritance
System.Object
CfnImageRecipe.ComponentParameterProperty
Implements
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ComponentParameterProperty : Object, CfnImageRecipe.IComponentParameterProperty
Syntax (vb)
Public Class ComponentParameterProperty
Inherits Object
Implements CfnImageRecipe.IComponentParameterProperty
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.ImageBuilder;
var componentParameterProperty = new ComponentParameterProperty {
Name = "name",
Value = new [] { "value" }
};
Synopsis
Constructors
ComponentParameterProperty() |
Properties
Name | The name of the component parameter to set. |
Value | Sets the value for the named component parameter. |
Constructors
ComponentParameterProperty()
public ComponentParameterProperty()
Properties
Name
The name of the component parameter to set.
public string Name { get; set; }
Property Value
System.String
Remarks
Value
Sets the value for the named component parameter.
public string[] Value { get; set; }
Property Value
System.String[]