Show / Hide Table of Contents

Class CfnContainerRecipe.ComponentConfigurationProperty

Configuration details of the component.

Inheritance
object
CfnContainerRecipe.ComponentConfigurationProperty
Implements
CfnContainerRecipe.IComponentConfigurationProperty
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 CfnContainerRecipe.ComponentConfigurationProperty : CfnContainerRecipe.IComponentConfigurationProperty
Syntax (vb)
Public Class CfnContainerRecipe.ComponentConfigurationProperty Implements 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

Constructors

ComponentConfigurationProperty()

Configuration details of the component.

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()

Configuration details of the component.

public ComponentConfigurationProperty()
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" }
                 } }
             };

Properties

ComponentArn

The Amazon Resource Name (ARN) of the component.

public string? ComponentArn { get; set; }
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.

public object? Parameters { get; set; }
Property Value

object

Remarks

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

Implements

CfnContainerRecipe.IComponentConfigurationProperty
Back to top Generated by DocFX