Skip to content

Commit

Permalink
Add defaults, remove from awslint.json
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol committed Dec 20, 2023
1 parent 12c828b commit f577d64
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/aws-cdk-lib/aws-globalaccelerator/lib/accelerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,22 @@ export interface AcceleratorAttributes {

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

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

/**
* The array of IPv6 addresses in the IP address set
*
* @default - undefined
*/
readonly ipv6Addresses?: string[];
}
Expand Down

0 comments on commit f577d64

Please sign in to comment.