Skip to content

Commit

Permalink
some are optional
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol committed Nov 25, 2023
1 parent 30cf45c commit b69f399
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/aws-cdk-lib/aws-globalaccelerator/lib/accelerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ export interface IAccelerator extends cdk.IResource {
*
* @attribute
*/
readonly dualStackDnsName: string;
readonly dualStackDnsName?: string;

/**
* The array of IPv4 addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
*
* @attribute
*/
readonly ipv4Addresses: string[];
readonly ipv4Addresses?: string[];

/**
* The array of IPv6 addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
*
* @attribute
*/
readonly ipv6Addresses: string[];
readonly ipv6Addresses?: string[];
}

/**
Expand Down Expand Up @@ -103,17 +103,17 @@ 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.
*/
readonly dualStackDnsName: string;
readonly dualStackDnsName?: string;

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

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

/**
Expand Down

0 comments on commit b69f399

Please sign in to comment.