interface CfnVPCEndpointProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVPCEndpointProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVPCEndpointProps |
Java | software.amazon.awscdk.services.ec2.CfnVPCEndpointProps |
Python | aws_cdk.aws_ec2.CfnVPCEndpointProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVPCEndpointProps |
Properties for defining a CfnVPCEndpoint
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
declare const policyDocument: any;
const cfnVPCEndpointProps: ec2.CfnVPCEndpointProps = {
serviceName: 'serviceName',
vpcId: 'vpcId',
// the properties below are optional
policyDocument: policyDocument,
privateDnsEnabled: false,
routeTableIds: ['routeTableIds'],
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcEndpointType: 'vpcEndpointType',
};
Properties
Name | Type | Description |
---|---|---|
service | string | The name of the endpoint service. |
vpc | string | The ID of the VPC. |
policy | any | An endpoint policy, which controls access to the service from the VPC. |
private | boolean | IResolvable | Indicate whether to associate a private hosted zone with the specified VPC. |
route | string[] | The IDs of the route tables. |
security | string[] | The IDs of the security groups to associate with the endpoint network interfaces. |
subnet | string[] | The IDs of the subnets in which to create endpoint network interfaces. |
vpc | string | The type of endpoint. |
serviceName
Type:
string
The name of the endpoint service.
vpcId
Type:
string
The ID of the VPC.
policyDocument?
Type:
any
(optional)
An endpoint policy, which controls access to the service from the VPC.
The default endpoint policy allows full access to the service. Endpoint policies are supported only for gateway and interface endpoints.
For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. For example, if you have a JSON policy, you can convert it to YAML before including it in the YAML template, and AWS CloudFormation converts the policy to JSON format before calling the API actions for AWS PrivateLink . Alternatively, you can include the JSON directly in the YAML, as shown in the following Properties
section:
Properties: VpcEndpointType: 'Interface' ServiceName: !Sub 'com.amazonaws.${AWS::Region}.logs' PolicyDocument: '{ "Version":"2012-10-17", "Statement": [{ "Effect":"Allow", "Principal":"*", "Action":["logs:Describe*","logs:Get*","logs:List*","logs:FilterLogEvents"], "Resource":"*" }] }'
privateDnsEnabled?
Type:
boolean |
IResolvable
(optional)
Indicate whether to associate a private hosted zone with the specified VPC.
The private hosted zone contains a record set for the default public DNS name for the service for the Region (for example, kinesis.us-east-1.amazonaws.com
), which resolves to the private IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to the default public DNS name for the service instead of the public DNS names that are automatically generated by the VPC endpoint service.
To use a private hosted zone, you must set the following VPC attributes to true
: enableDnsHostnames
and enableDnsSupport
.
This property is supported only for interface endpoints.
Default: false
routeTableIds?
Type:
string[]
(optional)
The IDs of the route tables.
Routing is supported only for gateway endpoints.
securityGroupIds?
Type:
string[]
(optional)
The IDs of the security groups to associate with the endpoint network interfaces.
If this parameter is not specified, we use the default security group for the VPC. Security groups are supported only for interface endpoints.
subnetIds?
Type:
string[]
(optional)
The IDs of the subnets in which to create endpoint network interfaces.
You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint. You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
vpcEndpointType?
Type:
string
(optional)
The type of endpoint.
Default: Gateway