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

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

Network.AWS.EC2.CreateVPCEndpoint

Contents

Description

Creates a VPC endpoint for a specified AWS service. An endpoint enables you to create a private connection between your VPC and another AWS service in your account. 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.

Currently, only endpoints to Amazon S3 are supported.

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 - 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.
  • cveClientToken - Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency .
  • 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 - One or more route table IDs.
  • cveVPCId - The ID of the VPC in which the endpoint will be used.
  • cveServiceName - The AWS service name, in the form com.amazonaws.region .service . To get a list of available services, use the DescribeVpcEndpointServices request.

data CreateVPCEndpoint Source #

Contains the parameters for CreateVpcEndpoint.

See: createVPCEndpoint smart constructor.

Instances

Eq CreateVPCEndpoint Source # 
Data CreateVPCEndpoint Source # 

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 # 
Show CreateVPCEndpoint Source # 
Generic CreateVPCEndpoint Source # 
Hashable CreateVPCEndpoint Source # 
NFData CreateVPCEndpoint Source # 

Methods

rnf :: CreateVPCEndpoint -> () #

AWSRequest CreateVPCEndpoint Source # 
ToPath CreateVPCEndpoint Source # 
ToHeaders CreateVPCEndpoint Source # 
ToQuery CreateVPCEndpoint Source # 
type Rep CreateVPCEndpoint Source # 
type Rep CreateVPCEndpoint = D1 (MetaData "CreateVPCEndpoint" "Network.AWS.EC2.CreateVPCEndpoint" "amazonka-ec2-1.4.5-4J1X1aohvSR7xjHvMmTrf6" False) (C1 (MetaCons "CreateVPCEndpoint'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_cvePolicyDocument") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_cveClientToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_cveDryRun") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))))) ((:*:) (S1 (MetaSel (Just Symbol "_cveRouteTableIds") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) ((:*:) (S1 (MetaSel (Just Symbol "_cveVPCId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_cveServiceName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))))
type Rs CreateVPCEndpoint Source # 

Request Lenses

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

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.

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 .

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 #

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 AWS service name, in the form com.amazonaws.region .service . To get a list of available services, use the DescribeVpcEndpointServices request.

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 # 
Data CreateVPCEndpointResponse Source # 

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 # 
Show CreateVPCEndpointResponse Source # 
Generic CreateVPCEndpointResponse Source # 
NFData CreateVPCEndpointResponse Source # 
type Rep CreateVPCEndpointResponse Source # 
type Rep CreateVPCEndpointResponse = D1 (MetaData "CreateVPCEndpointResponse" "Network.AWS.EC2.CreateVPCEndpoint" "amazonka-ec2-1.4.5-4J1X1aohvSR7xjHvMmTrf6" False) (C1 (MetaCons "CreateVPCEndpointResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_cversClientToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_cversVPCEndpoint") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe VPCEndpoint))) (S1 (MetaSel (Just Symbol "_cversResponseStatus") NoSourceUnpackedness SourceStrict DecidedUnpack) (Rec0 Int)))))

Response Lenses

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

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