Skip to content

Commit 51e671f

Browse files
authoredFeb 7, 2025··
fix(vpc): typo VPC Endpoint Payment Cryptography (#33018)
### Issue # (if applicable) #33017 Closes #33017. ### Reason for this change Typo ### Description of changes Fixed Typo ### Describe any new or updated permissions being added NA ### Description of how you validated changes No ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 2e5e32a commit 51e671f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎packages/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.ts

+2
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,9 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
523523
public static readonly PARALLEL_COMPUTING_SERVICE = new InterfaceVpcEndpointAwsService('pcs');
524524
public static readonly PARALLEL_COMPUTING_SERVICE_FIPS = new InterfaceVpcEndpointAwsService('pcs-fips');
525525
public static readonly PAYMENT_CRYPTOGRAPHY_CONTROLPLANE = new InterfaceVpcEndpointAwsService('payment-cryptography.controlplane');
526+
/** @deprecated - Use InterfaceVpcEndpointAwsService.PAYMENT_CRYPTOGRAPHY_DATAPLANE instead. */
526527
public static readonly PAYMENT_CRYTOGRAPHY_DATAPLANE = new InterfaceVpcEndpointAwsService('payment-cryptography.dataplane');
528+
public static readonly PAYMENT_CRYPTOGRAPHY_DATAPLANE = new InterfaceVpcEndpointAwsService('payment-cryptography.dataplane');
527529
public static readonly PERSONALIZE = new InterfaceVpcEndpointAwsService('personalize');
528530
public static readonly PERSONALIZE_EVENTS = new InterfaceVpcEndpointAwsService('personalize-events');
529531
public static readonly PERSONALIZE_RUNTIME = new InterfaceVpcEndpointAwsService('personalize-runtime');

0 commit comments

Comments
 (0)
Please sign in to comment.