Show / Hide Table of Contents

Class CfnExtensionAssociationProps

Properties for defining a CfnExtensionAssociation.

Inheritance
object
CfnExtensionAssociationProps
Implements
ICfnExtensionAssociationProps
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 CfnExtensionAssociationProps : ICfnExtensionAssociationProps
Syntax (vb)
Public Class CfnExtensionAssociationProps Implements ICfnExtensionAssociationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.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 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 for defining a CfnExtensionAssociation.

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()

Properties for defining a CfnExtensionAssociation.

public CfnExtensionAssociationProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.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 cfnExtensionAssociationProps = new CfnExtensionAssociationProps {
                 ExtensionIdentifier = "extensionIdentifier",
                 ExtensionVersionNumber = 123,
                 Parameters = new Dictionary<string, string> {
                     { "parametersKey", "parameters" }
                 },
                 ResourceIdentifier = "resourceIdentifier",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

ExtensionIdentifier

The name, the ID, or the Amazon Resource Name (ARN) of the extension.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-extensionidentifier

ExtensionVersionNumber

The version number of the extension.

public double? ExtensionVersionNumber { get; set; }
Property Value

double?

Remarks

If not specified, AWS AppConfig uses the maximum version of the extension.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-extensionversionnumber

Parameters

The parameter names and values defined in the extensions.

public object? Parameters { get; set; }
Property Value

object

Remarks

Extension parameters marked Required must be entered for this field.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-parameters

ResourceIdentifier

The ARN of an application, configuration profile, or environment.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-resourceidentifier

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extensionassociation.html#cfn-appconfig-extensionassociation-tags

Implements

ICfnExtensionAssociationProps
Back to top Generated by DocFX