Interface CfnExtension.IParameterProperty
A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered in an extension when invoked.
Namespace: Amazon.CDK.AWS.AppConfig
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnExtension.IParameterProperty
Syntax (vb)
Public Interface 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
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. |
Properties
Description
Information about the parameter.
string? Description { get; }
Property Value
Remarks
Dynamic
Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association.
object? Dynamic { get; }
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.
object Required { get; }