Show / Hide Table of Contents

Class CfnDeployment.DynamicExtensionParametersProperty

A map of dynamic extension parameter names to values to pass to associated extensions with PRE_START_DEPLOYMENT actions.

Inheritance
object
CfnDeployment.DynamicExtensionParametersProperty
Implements
CfnDeployment.IDynamicExtensionParametersProperty
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 CfnDeployment.DynamicExtensionParametersProperty : CfnDeployment.IDynamicExtensionParametersProperty
Syntax (vb)
Public Class CfnDeployment.DynamicExtensionParametersProperty Implements CfnDeployment.IDynamicExtensionParametersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.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 dynamicExtensionParametersProperty = new DynamicExtensionParametersProperty {
                 ExtensionReference = "extensionReference",
                 ParameterName = "parameterName",
                 ParameterValue = "parameterValue"
             };

Synopsis

Constructors

DynamicExtensionParametersProperty()

A map of dynamic extension parameter names to values to pass to associated extensions with PRE_START_DEPLOYMENT actions.

Properties

ExtensionReference

The ARN or ID of the extension for which you are inserting a dynamic parameter.

ParameterName

The parameter name.

ParameterValue

The parameter value.

Constructors

DynamicExtensionParametersProperty()

A map of dynamic extension parameter names to values to pass to associated extensions with PRE_START_DEPLOYMENT actions.

public DynamicExtensionParametersProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.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 dynamicExtensionParametersProperty = new DynamicExtensionParametersProperty {
                 ExtensionReference = "extensionReference",
                 ParameterName = "parameterName",
                 ParameterValue = "parameterValue"
             };

Properties

ExtensionReference

The ARN or ID of the extension for which you are inserting a dynamic parameter.

public string? ExtensionReference { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html#cfn-appconfig-deployment-dynamicextensionparameters-extensionreference

ParameterName

The parameter name.

public string? ParameterName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html#cfn-appconfig-deployment-dynamicextensionparameters-parametername

ParameterValue

The parameter value.

public string? ParameterValue { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html#cfn-appconfig-deployment-dynamicextensionparameters-parametervalue

Implements

CfnDeployment.IDynamicExtensionParametersProperty
Back to top Generated by DocFX