Skip to content

Commit

Permalink
lint out optional attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol committed Nov 29, 2023
1 parent 164b358 commit d32cd1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
15 changes: 0 additions & 15 deletions packages/aws-cdk-lib/aws-globalaccelerator/lib/accelerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,21 +99,6 @@ 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
5 changes: 4 additions & 1 deletion packages/aws-cdk-lib/awslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,9 @@
"props-physical-name:aws-cdk-lib.aws_apigateway.ResourceProps",
"props-physical-name:aws-cdk-lib.aws_appsync.SourceApiAssociationProps",
"docs-public-apis:aws-cdk-lib.aws_backup.Schedule",
"props-default-doc:aws-cdk-lib.aws_appsync.SourceApi.description"
"props-default-doc:aws-cdk-lib.aws_appsync.SourceApi.description",
"props-default-doc:aws-cdk-lib.aws_globalaccelerator.AcceleratorAttributes.dualStackDnsName",
"props-default-doc:aws-cdk-lib.aws_globalaccelerator.AcceleratorAttributes.ipv4Addresses",
"props-default-doc:aws-cdk-lib.aws_globalaccelerator.AcceleratorAttributes.ipv6Addresses"
]
}

0 comments on commit d32cd1a

Please sign in to comment.