Show / Hide Table of Contents

Class CfnImageRecipe.ComponentParameterProperty

Contains a key/value pair that sets the named component parameter.

Inheritance
object
CfnImageRecipe.ComponentParameterProperty
Implements
CfnImageRecipe.IComponentParameterProperty
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.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnImageRecipe.ComponentParameterProperty : CfnImageRecipe.IComponentParameterProperty
Syntax (vb)
Public Class CfnImageRecipe.ComponentParameterProperty Implements CfnImageRecipe.IComponentParameterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagerecipe-componentparameter.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.ImageBuilder;

             var componentParameterProperty = new ComponentParameterProperty {
                 Name = "name",
                 Value = new [] { "value" }
             };

Synopsis

Constructors

ComponentParameterProperty()

Contains a key/value pair that sets the named component parameter.

Properties

Name

The name of the component parameter to set.

Value

Sets the value for the named component parameter.

Constructors

ComponentParameterProperty()

Contains a key/value pair that sets the named component parameter.

public ComponentParameterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagerecipe-componentparameter.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.ImageBuilder;

             var componentParameterProperty = new ComponentParameterProperty {
                 Name = "name",
                 Value = new [] { "value" }
             };

Properties

Name

The name of the component parameter to set.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagerecipe-componentparameter.html#cfn-imagebuilder-imagerecipe-componentparameter-name

Value

Sets the value for the named component parameter.

public string[] Value { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagerecipe-componentparameter.html#cfn-imagebuilder-imagerecipe-componentparameter-value

Implements

CfnImageRecipe.IComponentParameterProperty
Back to top Generated by DocFX