Show / Hide Table of Contents

Interface CfnTaskDefinition.IKeyValuePairProperty

A key-value pair object.

Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTaskDefinition.IKeyValuePairProperty
Syntax (vb)
Public Interface CfnTaskDefinition.IKeyValuePairProperty
Remarks

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

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

Synopsis

Properties

Name

The name of the key-value pair.

Value

The value of the key-value pair.

Properties

Name

The name of the key-value pair.

string? Name { get; }
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-taskdefinition-keyvaluepair.html#cfn-ecs-taskdefinition-keyvaluepair-name

Value

The value of the key-value pair.

string? Value { get; }
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-taskdefinition-keyvaluepair.html#cfn-ecs-taskdefinition-keyvaluepair-value

Back to top Generated by DocFX