Interface CfnGatewayRoute.IHttpGatewayRouteRewriteProperty
An object representing the gateway route to rewrite.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IHttpGatewayRouteRewriteProperty
Syntax (vb)
Public Interface 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
Properties
Hostname | The host name to rewrite. |
Path | The path to rewrite. |
Prefix | The specified beginning characters to rewrite. |
Properties
Hostname
The host name to rewrite.
virtual object Hostname { get; }
Property Value
System.Object
Remarks
Path
The path to rewrite.
virtual object Path { get; }
Property Value
System.Object
Remarks
Prefix
The specified beginning characters to rewrite.
virtual object Prefix { get; }
Property Value
System.Object