Show / Hide Table of Contents

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 CfnGatewayRoute.IHttpGatewayRouteRewriteProperty
Syntax (vb)
Public Interface CfnGatewayRoute.IHttpGatewayRouteRewriteProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-httpgatewayrouterewrite.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 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.

object? Hostname { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-httpgatewayrouterewrite.html#cfn-appmesh-gatewayroute-httpgatewayrouterewrite-hostname

Type union: either IResolvable or CfnGatewayRoute.IGatewayRouteHostnameRewriteProperty

Path

The path to rewrite.

object? Path { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-httpgatewayrouterewrite.html#cfn-appmesh-gatewayroute-httpgatewayrouterewrite-path

Type union: either IResolvable or CfnGatewayRoute.IHttpGatewayRoutePathRewriteProperty

Prefix

The specified beginning characters to rewrite.

object? Prefix { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-httpgatewayrouterewrite.html#cfn-appmesh-gatewayroute-httpgatewayrouterewrite-prefix

Type union: either IResolvable or CfnGatewayRoute.IHttpGatewayRoutePrefixRewriteProperty

Back to top Generated by DocFX