Show / Hide Table of Contents

Class CfnExpressGatewayServicePropsMixin.KeyValuePairProperty

A key-value pair object.

Inheritance
object
CfnExpressGatewayServicePropsMixin.KeyValuePairProperty
Implements
CfnExpressGatewayServicePropsMixin.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.Mixins.Preview.AWS.ECS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnExpressGatewayServicePropsMixin.KeyValuePairProperty : CfnExpressGatewayServicePropsMixin.IKeyValuePairProperty
Syntax (vb)
Public Class CfnExpressGatewayServicePropsMixin.KeyValuePairProperty Implements CfnExpressGatewayServicePropsMixin.IKeyValuePairProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-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.Mixins.Preview.AWS.ECS.Mixins;

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

Synopsis

Constructors

KeyValuePairProperty()

A key-value pair object.

Properties

Name

The name of the key-value pair.

Value

The value of the key-value pair.

Constructors

KeyValuePairProperty()

A key-value pair object.

public KeyValuePairProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-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.Mixins.Preview.AWS.ECS.Mixins;

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

Properties

Name

The name of the key-value pair.

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

string

Remarks

For environment variables, this is the name of the environment variable.

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

Value

The value of the key-value pair.

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

string

Remarks

For environment variables, this is the value of the environment variable.

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

Implements

CfnExpressGatewayServicePropsMixin.IKeyValuePairProperty
Back to top Generated by DocFX