interface GatewayRouteTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnGatewayRoutePropsMixin.GatewayRouteTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnGatewayRoutePropsMixin_GatewayRouteTargetProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnGatewayRoutePropsMixin.GatewayRouteTargetProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnGatewayRoutePropsMixin.GatewayRouteTargetProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnGatewayRoutePropsMixin » GatewayRouteTargetProperty |
An object that represents a gateway route target.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appmesh as appmesh } from '@aws-cdk/cfn-property-mixins';
const gatewayRouteTargetProperty: appmesh.CfnGatewayRoutePropsMixin.GatewayRouteTargetProperty = {
port: 123,
virtualService: {
virtualServiceName: 'virtualServiceName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| port? | number | The port number of the gateway route target. |
| virtual | IResolvable | Gateway | An object that represents a virtual service gateway route target. |
port?
Type:
number
(optional)
The port number of the gateway route target.
virtualService?
Type:
IResolvable | Gateway
(optional)
An object that represents a virtual service gateway route target.

.NET
Go
Java
Python
TypeScript