java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.servicediscovery.InstanceBase
software.amazon.awscdk.services.servicediscovery.NonIpInstance
All Implemented Interfaces:
IResource, IInstance, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:24.902Z") @Stability(Stable) public class NonIpInstance extends InstanceBase
Instance accessible using values other than an IP address or a domain name (CNAME).

Specify the other values in Custom attributes.

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.*;
 Service service;
 NonIpInstance nonIpInstance = NonIpInstance.Builder.create(this, "MyNonIpInstance")
         .service(service)
         // the properties below are optional
         .customAttributes(Map.of(
                 "customAttributesKey", "customAttributes"))
         .instanceId("instanceId")
         .build();
 
  • Constructor Details

    • NonIpInstance

      protected NonIpInstance(software.amazon.jsii.JsiiObjectRef objRef)
    • NonIpInstance

      protected NonIpInstance(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • NonIpInstance

      @Stability(Stable) public NonIpInstance(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull NonIpInstanceProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details