interface VirtualServiceAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.VirtualServiceAttributes |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#VirtualServiceAttributes |
![]() | software.amazon.awscdk.services.appmesh.VirtualServiceAttributes |
![]() | aws_cdk.aws_appmesh.VirtualServiceAttributes |
![]() | aws-cdk-lib » 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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
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.