Skip to content

Commit 98386f5

Browse files
authored
chore(ec2): add email-smtp interface endpoint (#22558)
Added interface VPC endpoint for SES to InterfaceVpcEndpointAwsService to make it easier to implement ones SES VPC endpoint: https://docs.aws.amazon.com/ses/latest/dg/send-email-set-up-vpc-endpoints.html ---- ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent c227f12 commit 98386f5

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,7 @@ export class InterfaceVpcEndpointAwsService implements IInterfaceVpcEndpointServ
401401
public static readonly WORKSPACES = new InterfaceVpcEndpointAwsService('workspaces');
402402
public static readonly XRAY = new InterfaceVpcEndpointAwsService('xray');
403403
public static readonly SECURITYHUB = new InterfaceVpcEndpointAwsService('securityhub');
404+
public static readonly EMAIL_SMTP = new InterfaceVpcEndpointAwsService('email-smtp');
404405

405406
/**
406407
* The name of the service. e.g. com.amazonaws.us-east-1.ecs

packages/@aws-cdk/aws-ec2/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@
324324
"docs-public-apis:@aws-cdk/aws-ec2.InterfaceVpcEndpointAwsService.TRANSCRIBE",
325325
"docs-public-apis:@aws-cdk/aws-ec2.InterfaceVpcEndpointAwsService.XRAY",
326326
"docs-public-apis:@aws-cdk/aws-ec2.InterfaceVpcEndpointAwsService.SECURITYHUB",
327+
"docs-public-apis:@aws-cdk/aws-ec2.InterfaceVpcEndpointAwsService.EMAIL_SMTP",
327328
"docs-public-apis:@aws-cdk/aws-ec2.Port.toString",
328329
"docs-public-apis:@aws-cdk/aws-ec2.PrivateSubnet.fromPrivateSubnetAttributes",
329330
"docs-public-apis:@aws-cdk/aws-ec2.PublicSubnet.fromPublicSubnetAttributes",

0 commit comments

Comments
 (0)