Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol committed Nov 29, 2023
1 parent d32cd1a commit 0bbb6de
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions packages/aws-cdk-lib/aws-globalaccelerator/lib/accelerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,21 @@ export interface AcceleratorAttributes {
* The DNS name of the accelerator
*/
readonly dnsName: string;

/**
* The DNS name that points to the dual-stack accelerator's four static IP addresses: two IPv4 addresses and two IPv6 addresses.
*/
readonly dualStackDnsName?: string;

/**
* The array of IPv4 addresses in the IP address set
*/
readonly ipv4Addresses?: string[];

/**
* The array of IPv6 addresses in the IP address set
*/
readonly ipv6Addresses?: string[];
}

/**
Expand Down

0 comments on commit 0bbb6de

Please sign in to comment.