Class CfnExtension.ParameterProperty
A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered in an extension when invoked.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppConfig
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnExtension.ParameterProperty : CfnExtension.IParameterProperty
Syntax (vb)
Public Class CfnExtension.ParameterProperty Implements CfnExtension.IParameterProperty
Remarks
Parameter values are specified in an extension association. For more information about extensions, see Extending workflows in the AWS AppConfig User Guide .
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.AppConfig;
var parameterProperty = new ParameterProperty {
Required = false,
// the properties below are optional
Description = "description",
Dynamic = false
};
Synopsis
Constructors
| ParameterProperty() | A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered in an extension when invoked. |
Properties
| Description | Information about the parameter. |
| Dynamic | Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. |
| Required | A parameter value must be specified in the extension association. |
Constructors
ParameterProperty()
A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered in an extension when invoked.
public ParameterProperty()
Remarks
Parameter values are specified in an extension association. For more information about extensions, see Extending workflows in the AWS AppConfig User Guide .
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.AppConfig;
var parameterProperty = new ParameterProperty {
Required = false,
// the properties below are optional
Description = "description",
Dynamic = false
};
Properties
Description
Information about the parameter.
public string? Description { get; set; }
Property Value
Remarks
Dynamic
Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association.
public object? Dynamic { get; set; }
Property Value
Remarks
Dynamic parameters can't be marked Required .
Type union: either bool or IResolvable
Required
A parameter value must be specified in the extension association.
public object Required { get; set; }