Show / Hide Table of Contents

Class CfnImageRecipe.ComponentConfigurationProperty

Configuration details of the component.

Inheritance
System.Object
CfnImageRecipe.ComponentConfigurationProperty
Implements
CfnImageRecipe.IComponentConfigurationProperty
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ComponentConfigurationProperty : Object, CfnImageRecipe.IComponentConfigurationProperty
Syntax (vb)
Public Class ComponentConfigurationProperty
    Inherits Object
    Implements CfnImageRecipe.IComponentConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagerecipe-componentconfiguration.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 componentConfigurationProperty = new ComponentConfigurationProperty {
    ComponentArn = "componentArn",
    Parameters = new [] { new ComponentParameterProperty {
        Name = "name",
        Value = new [] { "value" }
    } }
};

Synopsis

Constructors

ComponentConfigurationProperty()

Properties

ComponentArn

The Amazon Resource Name (ARN) of the component.

Parameters

A group of parameter settings that Image Builder uses to configure the component for a specific recipe.

Constructors

ComponentConfigurationProperty()

public ComponentConfigurationProperty()

Properties

ComponentArn

The Amazon Resource Name (ARN) of the component.

public string ComponentArn { get; set; }
Property Value

System.String

Remarks

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

Parameters

A group of parameter settings that Image Builder uses to configure the component for a specific recipe.

public object Parameters { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnImageRecipe.IComponentConfigurationProperty
Back to top Generated by DocFX