interface VirtualServiceAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppMesh.VirtualServiceAttributes |
Java | software.amazon.awscdk.services.appmesh.VirtualServiceAttributes |
Python | aws_cdk.aws_appmesh.VirtualServiceAttributes |
TypeScript (source) | @aws-cdk/aws-appmesh » VirtualServiceAttributes |
Interface with properties ncecessary to import a reusable VirtualService.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
declare const mesh: appmesh.Mesh;
const virtualServiceAttributes: appmesh.VirtualServiceAttributes = {
mesh: mesh,
virtualServiceName: 'virtualServiceName',
};
Properties
Name | Type | Description |
---|---|---|
mesh | IMesh | The Mesh which the VirtualService belongs to. |
virtual | string | The name of the VirtualService, it is recommended this follows the fully-qualified domain name format. |
mesh
Type:
IMesh
The Mesh which the VirtualService belongs to.
virtualServiceName
Type:
string
The name of the VirtualService, it is recommended this follows the fully-qualified domain name format.