Interface AcceleratorAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AcceleratorAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:22.495Z")
@Stability(Stable)
public interface AcceleratorAttributes
extends software.amazon.jsii.JsiiSerializable
Attributes required to import an existing accelerator to the stack.
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.*;
AcceleratorAttributes acceleratorAttributes = AcceleratorAttributes.builder()
.acceleratorArn("acceleratorArn")
.dnsName("dnsName")
// the properties below are optional
.dualStackDnsName("dualStackDnsName")
.ipv4Addresses(List.of("ipv4Addresses"))
.ipv6Addresses(List.of("ipv6Addresses"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAcceleratorAttributesstatic final classAn implementation forAcceleratorAttributes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ARN of the accelerator.The DNS name of the accelerator.default StringThe DNS name that points to the dual-stack accelerator's four static IP addresses: two IPv4 addresses and two IPv6 addresses.The array of IPv4 addresses in the IP address set.The array of IPv6 addresses in the IP address set.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcceleratorArn
The ARN of the accelerator. -
getDnsName
The DNS name of the accelerator. -
getDualStackDnsName
The DNS name that points to the dual-stack accelerator's four static IP addresses: two IPv4 addresses and two IPv6 addresses.Default: - undefined
-
getIpv4Addresses
The array of IPv4 addresses in the IP address set.Default: - undefined
-
getIpv6Addresses
The array of IPv6 addresses in the IP address set.Default: - undefined
-
builder
- Returns:
- a
AcceleratorAttributes.BuilderofAcceleratorAttributes
-