Interface ICfnVirtualServiceProps
Properties for defining a CfnVirtualService
.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnVirtualServiceProps
Syntax (vb)
Public Interface ICfnVirtualServiceProps
Remarks
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 cfnVirtualServiceProps = new CfnVirtualServiceProps {
MeshName = "meshName",
Spec = new VirtualServiceSpecProperty {
Provider = new VirtualServiceProviderProperty {
VirtualNode = new VirtualNodeServiceProviderProperty {
VirtualNodeName = "virtualNodeName"
},
VirtualRouter = new VirtualRouterServiceProviderProperty {
VirtualRouterName = "virtualRouterName"
}
}
},
VirtualServiceName = "virtualServiceName",
// the properties below are optional
MeshOwner = "meshOwner",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
MeshName | The name of the service mesh to create the virtual service in. |
MeshOwner | The AWS IAM account ID of the service mesh owner. |
Spec | The virtual service specification to apply. |
Tags | Optional metadata that you can apply to the virtual service to assist with categorization and organization. |
VirtualServiceName | The name to use for the virtual service. |
Properties
MeshName
The name of the service mesh to create the virtual service in.
string MeshName { get; }
Property Value
System.String
Remarks
MeshOwner
The AWS IAM account ID of the service mesh owner.
virtual string MeshOwner { get; }
Property Value
System.String
Remarks
If the account ID is not your own, then the account that you specify must share the mesh with your account before you can create the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes .
Spec
The virtual service specification to apply.
object Spec { get; }
Property Value
System.Object
Remarks
Tags
Optional metadata that you can apply to the virtual service to assist with categorization and organization.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]
Remarks
Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
VirtualServiceName
The name to use for the virtual service.
string VirtualServiceName { get; }
Property Value
System.String