Interface CfnVirtualServiceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualServiceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.866Z")
@Stability(Stable)
public interface CfnVirtualServiceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnVirtualServicePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appmesh.*;
CfnVirtualServiceMixinProps cfnVirtualServiceMixinProps = CfnVirtualServiceMixinProps.builder()
.meshName("meshName")
.meshOwner("meshOwner")
.spec(VirtualServiceSpecProperty.builder()
.provider(VirtualServiceProviderProperty.builder()
.virtualNode(VirtualNodeServiceProviderProperty.builder()
.virtualNodeName("virtualNodeName")
.build())
.virtualRouter(VirtualRouterServiceProviderProperty.builder()
.virtualRouterName("virtualRouterName")
.build())
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.virtualServiceName("virtualServiceName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVirtualServiceMixinPropsstatic final classAn implementation forCfnVirtualServiceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the service mesh to create the virtual service in.default StringThe AWS IAM account ID of the service mesh owner.default ObjectgetSpec()The virtual service specification to apply.getTags()Optional metadata that you can apply to the virtual service to assist with categorization and organization.default StringThe name to use for the virtual service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMeshName
The name of the service mesh to create the virtual service in.- See Also:
-
getMeshOwner
The AWS IAM account ID of the service mesh owner.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 .
- See Also:
-
getSpec
The virtual service specification to apply.Returns union: either
IResolvableorCfnVirtualServicePropsMixin.VirtualServiceSpecProperty- See Also:
-
getTags
Optional metadata that you can apply to the virtual service to assist with categorization and organization.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.
- See Also:
-
getVirtualServiceName
The name to use for the virtual service.- See Also:
-
builder
-