Show / Hide Table of Contents

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 .

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-extension-parameter.html#cfn-appconfig-extension-parameter-description

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

object

Remarks

Dynamic parameters can't be marked Required .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-extension-parameter.html#cfn-appconfig-extension-parameter-dynamic

Type union: either bool or IResolvable

Required

A parameter value must be specified in the extension association.

object Required { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-extension-parameter.html#cfn-appconfig-extension-parameter-required

Type union: either bool or IResolvable

Back to top Generated by DocFX