Show / Hide Table of Contents

Interface CfnRoute.IGrpcTimeoutProperty

An object that represents types of timeouts.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRoute.IGrpcTimeoutProperty
Syntax (vb)
Public Interface CfnRoute.IGrpcTimeoutProperty
Remarks

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

             var grpcTimeoutProperty = new GrpcTimeoutProperty {
                 Idle = new DurationProperty {
                     Unit = "unit",
                     Value = 123
                 },
                 PerRequest = new DurationProperty {
                     Unit = "unit",
                     Value = 123
                 }
             };

Synopsis

Properties

Idle

An object that represents an idle timeout.

PerRequest

An object that represents a per request timeout.

Properties

Idle

An object that represents an idle timeout.

object? Idle { get; }
Property Value

object

Remarks

An idle timeout bounds the amount of time that a connection may be idle. The default value is none.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpctimeout.html#cfn-appmesh-route-grpctimeout-idle

Type union: either IResolvable or CfnRoute.IDurationProperty

PerRequest

An object that represents a per request timeout.

object? PerRequest { get; }
Property Value

object

Remarks

The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpctimeout.html#cfn-appmesh-route-grpctimeout-perrequest

Type union: either IResolvable or CfnRoute.IDurationProperty

Back to top Generated by DocFX