java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.globalaccelerator.RawEndpoint
All Implemented Interfaces:
IEndpoint, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:16.583Z") @Stability(Stable) public class RawEndpoint extends software.amazon.jsii.JsiiObject implements IEndpoint
Untyped endpoint implementation.

Prefer using the classes in the aws-globalaccelerator-endpoints package instead, as they accept typed constructs. You can use this class if you want to use an endpoint type that does not have an appropriate class in that package yet.

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.globalaccelerator.*;
 RawEndpoint rawEndpoint = RawEndpoint.Builder.create()
         .endpointId("endpointId")
         // the properties below are optional
         .preserveClientIp(false)
         .region("region")
         .weight(123)
         .build();
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
    A fluent builder for RawEndpoint.

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode

    Nested classes/interfaces inherited from interface software.amazon.awscdk.services.globalaccelerator.IEndpoint

    IEndpoint.Jsii$Default, IEndpoint.Jsii$Proxy
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
     
    protected
    RawEndpoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    RawEndpoint(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    The region where the endpoint is located.
    Render the endpoint to an endpoint configuration.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • RawEndpoint

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

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

      @Stability(Stable) public RawEndpoint(@NotNull RawEndpointProps props)
      Parameters:
      props - This parameter is required.
  • Method Details

    • renderEndpointConfiguration

      @Stability(Stable) @NotNull public Object renderEndpointConfiguration()
      Render the endpoint to an endpoint configuration.
      Specified by:
      renderEndpointConfiguration in interface IEndpoint
    • getRegion

      @Stability(Stable) @Nullable public String getRegion()
      The region where the endpoint is located.

      If the region cannot be determined, undefined is returned

      Specified by:
      getRegion in interface IEndpoint