Class CfnContainerRecipePropsMixin.ComponentConfigurationProperty
Configuration details of the component.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnContainerRecipePropsMixin.ComponentConfigurationProperty : CfnContainerRecipePropsMixin.IComponentConfigurationProperty
Syntax (vb)
Public Class CfnContainerRecipePropsMixin.ComponentConfigurationProperty Implements CfnContainerRecipePropsMixin.IComponentConfigurationProperty
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.Mixins.Preview.AWS.ImageBuilder.Mixins;
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
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.Mixins.Preview.AWS.ImageBuilder.Mixins;
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
Remarks
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
Remarks
Type union: either IResolvable or (either IResolvable or CfnContainerRecipePropsMixin.IComponentParameterProperty)[]