Class CfnVirtualNodePropsMixin.ListenerTimeoutProperty
An object that represents timeouts for different protocols.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnVirtualNodePropsMixin.ListenerTimeoutProperty : CfnVirtualNodePropsMixin.IListenerTimeoutProperty
Syntax (vb)
Public Class CfnVirtualNodePropsMixin.ListenerTimeoutProperty Implements CfnVirtualNodePropsMixin.IListenerTimeoutProperty
Remarks
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.AppMesh.Mixins;
var listenerTimeoutProperty = new ListenerTimeoutProperty {
Grpc = new GrpcTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
},
Http = new HttpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
},
Http2 = new HttpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
},
Tcp = new TcpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
}
}
};
Synopsis
Constructors
| ListenerTimeoutProperty() | An object that represents timeouts for different protocols. |
Properties
| Grpc | An object that represents types of timeouts. |
| Http | An object that represents types of timeouts. |
| Http2 | An object that represents types of timeouts. |
| Tcp | An object that represents types of timeouts. |
Constructors
ListenerTimeoutProperty()
An object that represents timeouts for different protocols.
public ListenerTimeoutProperty()
Remarks
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.AppMesh.Mixins;
var listenerTimeoutProperty = new ListenerTimeoutProperty {
Grpc = new GrpcTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
},
Http = new HttpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
},
Http2 = new HttpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
},
Tcp = new TcpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
}
}
};
Properties
Grpc
An object that represents types of timeouts.
public object? Grpc { get; set; }
Property Value
Remarks
Http
An object that represents types of timeouts.
public object? Http { get; set; }
Property Value
Remarks
Http2
An object that represents types of timeouts.
public object? Http2 { get; set; }
Property Value
Remarks
Tcp
An object that represents types of timeouts.
public object? Tcp { get; set; }