Show / Hide Table of Contents

Interface CfnContainerRecipe.IComponentConfigurationProperty

Configuration details of the component.

Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnContainerRecipe.IComponentConfigurationProperty
Syntax (vb)
Public Interface CfnContainerRecipe.IComponentConfigurationProperty
Remarks

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

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.

Properties

ComponentArn

The Amazon Resource Name (ARN) of the component.

string? ComponentArn { get; }
Property Value

string

Remarks

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

Parameters

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

object? Parameters { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX