Interface AcceleratorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AcceleratorProps.Jsii$Proxy
Example:
Accelerator accelerator = Accelerator.Builder.create(this, "Accelerator") .ipAddresses(List.of("1.1.1.1", "2.2.2.2")) .ipAddressType(IpAddressType.IPV4) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forAcceleratorProps
static final class
An implementation forAcceleratorProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic AcceleratorProps.Builder
builder()
default String
The name of the accelerator.default Boolean
Indicates whether the accelerator is enabled.IP addresses associated with the accelerator.default IpAddressType
The IP address type that an accelerator supports.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcceleratorName
The name of the accelerator.Default: - resource ID
-
getEnabled
Indicates whether the accelerator is enabled.Default: true
-
getIpAddresses
IP addresses associated with the accelerator.Optionally, if you've added your own IP address pool to Global Accelerator (BYOIP), you can choose IP addresses from your own pool to use for the accelerator's static IP addresses when you create an accelerator. You can specify one or two addresses, separated by a comma. Do not include the /32 suffix.
Only one IP address from each of your IP address ranges can be used for each accelerator. If you specify only one IP address from your IP address range, Global Accelerator assigns a second static IP address for the accelerator from the AWS IP address pool.
Note that you can't update IP addresses for an existing accelerator. To change them, you must create a new accelerator with the new addresses.
Default: - undefined. IP addresses will be from Amazon's pool of IP addresses.
-
getIpAddressType
The IP address type that an accelerator supports.For a standard accelerator, the value can be IPV4 or DUAL_STACK.
Default: - "IPV4"
-
builder
- Returns:
- a
AcceleratorProps.Builder
ofAcceleratorProps
-