Show / Hide Table of Contents

Class CfnGatewayRoute.HttpGatewayRouteRewriteProperty

An object representing the gateway route to rewrite.

Inheritance
object
CfnGatewayRoute.HttpGatewayRouteRewriteProperty
Implements
CfnGatewayRoute.IHttpGatewayRouteRewriteProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGatewayRoute.HttpGatewayRouteRewriteProperty : CfnGatewayRoute.IHttpGatewayRouteRewriteProperty
Syntax (vb)
Public Class CfnGatewayRoute.HttpGatewayRouteRewriteProperty Implements 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

Constructors

HttpGatewayRouteRewriteProperty()

An object representing the gateway route to rewrite.

Properties

Hostname

The host name to rewrite.

Path

The path to rewrite.

Prefix

The specified beginning characters to rewrite.

Constructors

HttpGatewayRouteRewriteProperty()

An object representing the gateway route to rewrite.

public HttpGatewayRouteRewriteProperty()
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"
                 }
             };

Properties

Hostname

The host name to rewrite.

public object? Hostname { get; set; }
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.

public object? Path { get; set; }
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.

public object? Prefix { get; set; }
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

Implements

CfnGatewayRoute.IHttpGatewayRouteRewriteProperty
Back to top Generated by DocFX