Show / Hide Table of Contents

Class CfnVirtualNodePropsMixin.DurationProperty

An object that represents a duration of time.

Inheritance
object
CfnVirtualNodePropsMixin.DurationProperty
Implements
CfnVirtualNodePropsMixin.IDurationProperty
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.AppMesh
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnVirtualNodePropsMixin.DurationProperty : CfnVirtualNodePropsMixin.IDurationProperty
Syntax (vb)
Public Class CfnVirtualNodePropsMixin.DurationProperty Implements CfnVirtualNodePropsMixin.IDurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-duration.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.AppMesh;

             var durationProperty = new DurationProperty {
                 Unit = "unit",
                 Value = 123
             };

Synopsis

Constructors

DurationProperty()

An object that represents a duration of time.

Properties

Unit

A unit of time.

Value

A number of time units.

Constructors

DurationProperty()

An object that represents a duration of time.

public DurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-duration.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.AppMesh;

             var durationProperty = new DurationProperty {
                 Unit = "unit",
                 Value = 123
             };

Properties

Unit

A unit of time.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-duration.html#cfn-appmesh-virtualnode-duration-unit

Value

A number of time units.

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-duration.html#cfn-appmesh-virtualnode-duration-value

Implements

CfnVirtualNodePropsMixin.IDurationProperty
Back to top Generated by DocFX