Show / Hide Table of Contents

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.

Inheritance
object
CfnExtension.ParameterProperty
Implements
CfnExtension.IParameterProperty
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.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 .

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

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 .

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
             };

Properties

Description

Information about the parameter.

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

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

public object Required { get; set; }
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

Implements

CfnExtension.IParameterProperty
Back to top Generated by DocFX