Show / Hide Table of Contents

Class CfnServicePropsMixin.KeyValuePairProperty

Describes a key-value pair, which is a string-to-string mapping.

Inheritance
object
CfnServicePropsMixin.KeyValuePairProperty
Implements
CfnServicePropsMixin.IKeyValuePairProperty
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.AppRunner
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnServicePropsMixin.KeyValuePairProperty : CfnServicePropsMixin.IKeyValuePairProperty
Syntax (vb)
Public Class CfnServicePropsMixin.KeyValuePairProperty Implements CfnServicePropsMixin.IKeyValuePairProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-keyvaluepair.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.AppRunner;

             var keyValuePairProperty = new KeyValuePairProperty {
                 Name = "name",
                 Value = "value"
             };

Synopsis

Constructors

KeyValuePairProperty()

Describes a key-value pair, which is a string-to-string mapping.

Properties

Name

The key name string to map to a value.

Value

The value string to which the key name is mapped.

Constructors

KeyValuePairProperty()

Describes a key-value pair, which is a string-to-string mapping.

public KeyValuePairProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-keyvaluepair.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.AppRunner;

             var keyValuePairProperty = new KeyValuePairProperty {
                 Name = "name",
                 Value = "value"
             };

Properties

Name

The key name string to map to a value.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-keyvaluepair.html#cfn-apprunner-service-keyvaluepair-name

Value

The value string to which the key name is mapped.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-keyvaluepair.html#cfn-apprunner-service-keyvaluepair-value

Implements

CfnServicePropsMixin.IKeyValuePairProperty
Back to top Generated by DocFX