Show / Hide Table of Contents

Class CfnDeploymentPropsMixin.DynamicExtensionParametersProperty

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

Inheritance
object
CfnDeploymentPropsMixin.DynamicExtensionParametersProperty
Implements
CfnDeploymentPropsMixin.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.CfnPropertyMixins.AWS.AppConfig
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDeploymentPropsMixin.DynamicExtensionParametersProperty : CfnDeploymentPropsMixin.IDynamicExtensionParametersProperty
Syntax (vb)
Public Class CfnDeploymentPropsMixin.DynamicExtensionParametersProperty Implements CfnDeploymentPropsMixin.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.CfnPropertyMixins.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.CfnPropertyMixins.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

CfnDeploymentPropsMixin.IDynamicExtensionParametersProperty
Back to top Generated by DocFX