Interface BaseInstanceProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
AliasTargetInstanceProps, CnameInstanceBaseProps, CnameInstanceProps, IpInstanceBaseProps, IpInstanceProps, NonIpInstanceBaseProps, NonIpInstanceProps
All Known Implementing Classes:
AliasTargetInstanceProps.Jsii$Proxy, BaseInstanceProps.Jsii$Proxy, CnameInstanceBaseProps.Jsii$Proxy, CnameInstanceProps.Jsii$Proxy, IpInstanceBaseProps.Jsii$Proxy, IpInstanceProps.Jsii$Proxy, NonIpInstanceBaseProps.Jsii$Proxy, NonIpInstanceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:45.572Z") @Stability(Stable) public interface BaseInstanceProps extends software.amazon.jsii.JsiiSerializable
Used when the resource that's associated with the service instance is accessible using values other than an IP address or a domain name (CNAME), i.e. for non-ip-instances.

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.servicediscovery.*;
 BaseInstanceProps baseInstanceProps = BaseInstanceProps.builder()
         .customAttributes(Map.of(
                 "customAttributesKey", "customAttributes"))
         .instanceId("instanceId")
         .build();
 
  • Method Details