Class CfnDeployment.DynamicExtensionParametersProperty
A map of dynamic extension parameter names to values to pass to associated extensions with PRE_START_DEPLOYMENT
actions.
Implements
Inherited Members
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
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 |
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
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
Remarks
ParameterName
The parameter name.
public string? ParameterName { get; set; }
Property Value
Remarks
ParameterValue
The parameter value.
public string? ParameterValue { get; set; }