Class CfnGatewayRoute.HttpGatewayRouteRewriteProperty
An object representing the gateway route to rewrite.
Inheritance
System.Object
CfnGatewayRoute.HttpGatewayRouteRewriteProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class HttpGatewayRouteRewriteProperty : Object, CfnGatewayRoute.IHttpGatewayRouteRewriteProperty
Syntax (vb)
Public Class HttpGatewayRouteRewriteProperty
Inherits Object
Implements CfnGatewayRoute.IHttpGatewayRouteRewriteProperty
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.AWS.AppMesh;
var httpGatewayRouteRewriteProperty = new HttpGatewayRouteRewriteProperty {
Hostname = new GatewayRouteHostnameRewriteProperty {
DefaultTargetHostname = "defaultTargetHostname"
},
Path = new HttpGatewayRoutePathRewriteProperty {
Exact = "exact"
},
Prefix = new HttpGatewayRoutePrefixRewriteProperty {
DefaultPrefix = "defaultPrefix",
Value = "value"
}
};
Synopsis
Constructors
HttpGatewayRouteRewriteProperty() |
Properties
Hostname | The host name to rewrite. |
Path | The path to rewrite. |
Prefix | The specified beginning characters to rewrite. |
Constructors
HttpGatewayRouteRewriteProperty()
public HttpGatewayRouteRewriteProperty()
Properties
Hostname
The host name to rewrite.
public object Hostname { get; set; }
Property Value
System.Object
Remarks
Path
The path to rewrite.
public object Path { get; set; }
Property Value
System.Object
Remarks
Prefix
The specified beginning characters to rewrite.
public object Prefix { get; set; }
Property Value
System.Object