amazonka-ec2-1.6.1: Amazon Elastic Compute Cloud SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.EC2.CreateVPCEndpoint

Contents

Description

Creates a VPC endpoint for a specified service. An endpoint enables you to create a private connection between your VPC and the service. The service may be provided by AWS, an AWS Marketplace partner, or another AWS account. For more information, see VPC Endpoints in the Amazon Virtual Private Cloud User Guide .

A gateway endpoint serves as a target for a route in your route table for traffic destined for the AWS service. You can specify an endpoint policy to attach to the endpoint that will control access to the service from your VPC. You can also specify the VPC route tables that use the endpoint.

An interface endpoint is a network interface in your subnet that serves as an endpoint for communicating with the specified service. You can specify the subnets in which to create an endpoint, and the security groups to associate with the endpoint network interface.

Use DescribeVpcEndpointServices to get a list of supported services.

Synopsis

Creating a Request

createVPCEndpoint Source #

Creates a value of CreateVPCEndpoint with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • cvePolicyDocument - (Gateway endpoint) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format. If this parameter is not specified, we attach a default policy that allows full access to the service.
  • cveSecurityGroupIds - (Interface endpoint) The ID of one or more security groups to associate with the endpoint network interface.
  • cveClientToken - Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency .
  • cveSubnetIds - (Interface endpoint) The ID of one or more subnets in which to create an endpoint network interface.
  • cveVPCEndpointType - The type of endpoint. Default: Gateway
  • cvePrivateDNSEnabled - (Interface endpoint) 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 . Use ModifyVpcAttribute to set the VPC attributes. Default: true
  • cveDryRun - Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation . Otherwise, it is UnauthorizedOperation .
  • cveRouteTableIds - (Gateway endpoint) One or more route table IDs.
  • cveVPCId - The ID of the VPC in which the endpoint will be used.
  • cveServiceName - The service name. To get a list of available services, use the DescribeVpcEndpointServices request, or get the name from the service provider.

data CreateVPCEndpoint Source #

Contains the parameters for CreateVpcEndpoint.

See: createVPCEndpoint smart constructor.

Instances
Eq CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Data CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CreateVPCEndpoint -> c CreateVPCEndpoint #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CreateVPCEndpoint #

toConstr :: CreateVPCEndpoint -> Constr #

dataTypeOf :: CreateVPCEndpoint -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c CreateVPCEndpoint) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CreateVPCEndpoint) #

gmapT :: (forall b. Data b => b -> b) -> CreateVPCEndpoint -> CreateVPCEndpoint #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CreateVPCEndpoint -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CreateVPCEndpoint -> r #

gmapQ :: (forall d. Data d => d -> u) -> CreateVPCEndpoint -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CreateVPCEndpoint -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CreateVPCEndpoint -> m CreateVPCEndpoint #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateVPCEndpoint -> m CreateVPCEndpoint #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateVPCEndpoint -> m CreateVPCEndpoint #

Read CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Show CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Generic CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Associated Types

type Rep CreateVPCEndpoint :: Type -> Type #

Hashable CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

AWSRequest CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Associated Types

type Rs CreateVPCEndpoint :: Type #

ToHeaders CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

ToPath CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

ToQuery CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

NFData CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Methods

rnf :: CreateVPCEndpoint -> () #

type Rep CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

type Rs CreateVPCEndpoint Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Request Lenses

cvePolicyDocument :: Lens' CreateVPCEndpoint (Maybe Text) Source #

(Gateway endpoint) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format. If this parameter is not specified, we attach a default policy that allows full access to the service.

cveSecurityGroupIds :: Lens' CreateVPCEndpoint [Text] Source #

(Interface endpoint) The ID of one or more security groups to associate with the endpoint network interface.

cveClientToken :: Lens' CreateVPCEndpoint (Maybe Text) Source #

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency .

cveSubnetIds :: Lens' CreateVPCEndpoint [Text] Source #

(Interface endpoint) The ID of one or more subnets in which to create an endpoint network interface.

cveVPCEndpointType :: Lens' CreateVPCEndpoint (Maybe VPCEndpointType) Source #

The type of endpoint. Default: Gateway

cvePrivateDNSEnabled :: Lens' CreateVPCEndpoint (Maybe Bool) Source #

(Interface endpoint) 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 . Use ModifyVpcAttribute to set the VPC attributes. Default: true

cveDryRun :: Lens' CreateVPCEndpoint (Maybe Bool) Source #

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation . Otherwise, it is UnauthorizedOperation .

cveRouteTableIds :: Lens' CreateVPCEndpoint [Text] Source #

(Gateway endpoint) One or more route table IDs.

cveVPCId :: Lens' CreateVPCEndpoint Text Source #

The ID of the VPC in which the endpoint will be used.

cveServiceName :: Lens' CreateVPCEndpoint Text Source #

The service name. To get a list of available services, use the DescribeVpcEndpointServices request, or get the name from the service provider.

Destructuring the Response

createVPCEndpointResponse Source #

Creates a value of CreateVPCEndpointResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data CreateVPCEndpointResponse Source #

Contains the output of CreateVpcEndpoint.

See: createVPCEndpointResponse smart constructor.

Instances
Eq CreateVPCEndpointResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Data CreateVPCEndpointResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CreateVPCEndpointResponse -> c CreateVPCEndpointResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CreateVPCEndpointResponse #

toConstr :: CreateVPCEndpointResponse -> Constr #

dataTypeOf :: CreateVPCEndpointResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c CreateVPCEndpointResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CreateVPCEndpointResponse) #

gmapT :: (forall b. Data b => b -> b) -> CreateVPCEndpointResponse -> CreateVPCEndpointResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CreateVPCEndpointResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CreateVPCEndpointResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> CreateVPCEndpointResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CreateVPCEndpointResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CreateVPCEndpointResponse -> m CreateVPCEndpointResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateVPCEndpointResponse -> m CreateVPCEndpointResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateVPCEndpointResponse -> m CreateVPCEndpointResponse #

Read CreateVPCEndpointResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Show CreateVPCEndpointResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Generic CreateVPCEndpointResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

Associated Types

type Rep CreateVPCEndpointResponse :: Type -> Type #

NFData CreateVPCEndpointResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

type Rep CreateVPCEndpointResponse Source # 
Instance details

Defined in Network.AWS.EC2.CreateVPCEndpoint

type Rep CreateVPCEndpointResponse = D1 (MetaData "CreateVPCEndpointResponse" "Network.AWS.EC2.CreateVPCEndpoint" "amazonka-ec2-1.6.1-GgG1M0FWcBrE5I5IM2QktE" False) (C1 (MetaCons "CreateVPCEndpointResponse'" PrefixI True) (S1 (MetaSel (Just "_cversClientToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_cversVPCEndpoint") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe VPCEndpoint)) :*: S1 (MetaSel (Just "_cversResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))))

Response Lenses

cversClientToken :: Lens' CreateVPCEndpointResponse (Maybe Text) Source #

Unique, case-sensitive identifier you provide to ensure the idempotency of the request.