Interface CfnVirtualNode.AwsCloudMapServiceDiscoveryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVirtualNode.AwsCloudMapServiceDiscoveryProperty.Jsii$Proxy
Enclosing class:
CfnVirtualNode

@Stability(Stable) public static interface CfnVirtualNode.AwsCloudMapServiceDiscoveryProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the AWS Cloud Map service discovery information for your virtual node.

AWS Cloud Map is not available in the eu-south-1 Region.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appmesh.*;
 AwsCloudMapServiceDiscoveryProperty awsCloudMapServiceDiscoveryProperty = AwsCloudMapServiceDiscoveryProperty.builder()
         .namespaceName("namespaceName")
         .serviceName("serviceName")
         // the properties below are optional
         .attributes(List.of(AwsCloudMapInstanceAttributeProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .ipPreference("ipPreference")
         .build();
 

See Also: