Class CfnExtensionAssociationProps
Properties for defining a CfnExtensionAssociation
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.AppConfig
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnExtensionAssociationProps : Object, ICfnExtensionAssociationProps
Syntax (vb)
Public Class CfnExtensionAssociationProps
Inherits Object
Implements ICfnExtensionAssociationProps
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 cfnExtensionAssociationProps = new CfnExtensionAssociationProps {
ExtensionIdentifier = "extensionIdentifier",
ExtensionVersionNumber = 123,
Parameters = new Dictionary<string, string> {
{ "parametersKey", "parameters" }
},
ResourceIdentifier = "resourceIdentifier",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnExtensionAssociationProps() |
Properties
ExtensionIdentifier | The name, the ID, or the Amazon Resource Name (ARN) of the extension. |
ExtensionVersionNumber | The version number of the extension. |
Parameters | The parameter names and values defined in the extensions. |
ResourceIdentifier | The ARN of an application, configuration profile, or environment. |
Tags | Adds one or more tags for the specified extension association. |
Constructors
CfnExtensionAssociationProps()
public CfnExtensionAssociationProps()
Properties
ExtensionIdentifier
The name, the ID, or the Amazon Resource Name (ARN) of the extension.
public string ExtensionIdentifier { get; set; }
Property Value
System.String
Remarks
ExtensionVersionNumber
The version number of the extension.
public Nullable<double> ExtensionVersionNumber { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
If not specified, AWS AppConfig uses the maximum version of the extension.
Parameters
The parameter names and values defined in the extensions.
public object Parameters { get; set; }
Property Value
System.Object
Remarks
Extension parameters marked Required
must be entered for this field.
ResourceIdentifier
The ARN of an application, configuration profile, or environment.
public string ResourceIdentifier { get; set; }
Property Value
System.String
Remarks
Tags
Adds one or more tags for the specified extension association.
public ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]
Remarks
Tags are metadata that help you categorize resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define.