Class InterfaceVpcEndpointTarget

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.route53.targets.InterfaceVpcEndpointTarget
All Implemented Interfaces:
IAliasRecordTarget, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:23.920Z") @Stability(Stable) public class InterfaceVpcEndpointTarget extends software.amazon.jsii.JsiiObject implements IAliasRecordTarget
Set an InterfaceVpcEndpoint as a target for an ARecord.

Example:

 import software.amazon.awscdk.services.ec2.*;
 HostedZone zone;
 InterfaceVpcEndpoint interfaceVpcEndpoint;
 ARecord.Builder.create(this, "AliasRecord")
         .zone(zone)
         .target(RecordTarget.fromAlias(new InterfaceVpcEndpointTarget(interfaceVpcEndpoint)))
         .build();
 
  • Constructor Details

    • InterfaceVpcEndpointTarget

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

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

      @Stability(Stable) public InterfaceVpcEndpointTarget(@NotNull InterfaceVpcEndpoint vpcEndpoint)
      Parameters:
      vpcEndpoint - This parameter is required.
  • Method Details