Class AliasTargetInstance

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.AliasTargetInstance
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.860Z") @Stability(Stable) public class AliasTargetInstance extends InstanceBase
Instance that uses Route 53 Alias record type.

Currently, the only resource types supported are Elastic Load Balancers.

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;
 AliasTargetInstance aliasTargetInstance = AliasTargetInstance.Builder.create(this, "MyAliasTargetInstance")
         .dnsName("dnsName")
         .service(service)
         // the properties below are optional
         .customAttributes(Map.of(
                 "customAttributesKey", "customAttributes"))
         .instanceId("instanceId")
         .build();
 
  • Constructor Details

    • AliasTargetInstance

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

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

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

    • getDnsName

      @Stability(Stable) @NotNull public String getDnsName()
      The Route53 DNS name of the alias target.
    • getInstanceId

      @Stability(Stable) @NotNull public String getInstanceId()
      The Id of the instance.
      Specified by:
      getInstanceId in interface IInstance
      Specified by:
      getInstanceId in class InstanceBase
    • getService

      @Stability(Stable) @NotNull public IService getService()
      The Cloudmap service to which the instance is registered.
      Specified by:
      getService in interface IInstance
      Specified by:
      getService in class InstanceBase