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.DescribeVPCEndpoints

Contents

Description

Describes one or more of your VPC endpoints.

Synopsis

Creating a Request

describeVPCEndpoints :: DescribeVPCEndpoints #

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

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

  • dvpceFilters - One or more filters. * service-name : The name of the AWS service. * vpc-id : The ID of the VPC in which the endpoint resides. * vpc-endpoint-id : The ID of the endpoint. * vpc-endpoint-state : The state of the endpoint. (pending | available | deleting | deleted )
  • dvpceNextToken - The token for the next set of items to return. (You received this token from a prior call.)
  • dvpceVPCEndpointIds - One or more endpoint IDs.
  • dvpceDryRun - 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 .
  • dvpceMaxResults - The maximum number of items to return for this request. The request returns a token that you can specify in a subsequent call to get the next set of results. Constraint: If the value is greater than 1000, we return only 1000 items.

data DescribeVPCEndpoints #

Contains the parameters for DescribeVpcEndpoints.

See: describeVPCEndpoints smart constructor.

Instances

Eq DescribeVPCEndpoints # 
Data DescribeVPCEndpoints # 

Methods

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

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

toConstr :: DescribeVPCEndpoints -> Constr #

dataTypeOf :: DescribeVPCEndpoints -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DescribeVPCEndpoints # 
Show DescribeVPCEndpoints # 
Generic DescribeVPCEndpoints # 
Hashable DescribeVPCEndpoints # 
NFData DescribeVPCEndpoints # 

Methods

rnf :: DescribeVPCEndpoints -> () #

AWSRequest DescribeVPCEndpoints # 
ToQuery DescribeVPCEndpoints # 
ToPath DescribeVPCEndpoints # 
ToHeaders DescribeVPCEndpoints # 
type Rep DescribeVPCEndpoints # 
type Rep DescribeVPCEndpoints = D1 (MetaData "DescribeVPCEndpoints" "Network.AWS.EC2.DescribeVPCEndpoints" "amazonka-ec2-1.4.5-C4CR35JggG2GhWFrIiKGhu" False) (C1 (MetaCons "DescribeVPCEndpoints'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_dvpceFilters") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Filter]))) (S1 (MetaSel (Just Symbol "_dvpceNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_dvpceVPCEndpointIds") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) ((:*:) (S1 (MetaSel (Just Symbol "_dvpceDryRun") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_dvpceMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Int)))))))
type Rs DescribeVPCEndpoints # 

Request Lenses

dvpceFilters :: Lens' DescribeVPCEndpoints [Filter] #

One or more filters. * service-name : The name of the AWS service. * vpc-id : The ID of the VPC in which the endpoint resides. * vpc-endpoint-id : The ID of the endpoint. * vpc-endpoint-state : The state of the endpoint. (pending | available | deleting | deleted )

dvpceNextToken :: Lens' DescribeVPCEndpoints (Maybe Text) #

The token for the next set of items to return. (You received this token from a prior call.)

dvpceVPCEndpointIds :: Lens' DescribeVPCEndpoints [Text] #

One or more endpoint IDs.

dvpceDryRun :: Lens' DescribeVPCEndpoints (Maybe Bool) #

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 .

dvpceMaxResults :: Lens' DescribeVPCEndpoints (Maybe Int) #

The maximum number of items to return for this request. The request returns a token that you can specify in a subsequent call to get the next set of results. Constraint: If the value is greater than 1000, we return only 1000 items.

Destructuring the Response

describeVPCEndpointsResponse #

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

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

data DescribeVPCEndpointsResponse #

Contains the output of DescribeVpcEndpoints.

See: describeVPCEndpointsResponse smart constructor.

Instances

Eq DescribeVPCEndpointsResponse # 
Data DescribeVPCEndpointsResponse # 

Methods

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

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

toConstr :: DescribeVPCEndpointsResponse -> Constr #

dataTypeOf :: DescribeVPCEndpointsResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DescribeVPCEndpointsResponse # 
Show DescribeVPCEndpointsResponse # 
Generic DescribeVPCEndpointsResponse # 
NFData DescribeVPCEndpointsResponse # 
type Rep DescribeVPCEndpointsResponse # 
type Rep DescribeVPCEndpointsResponse = D1 (MetaData "DescribeVPCEndpointsResponse" "Network.AWS.EC2.DescribeVPCEndpoints" "amazonka-ec2-1.4.5-C4CR35JggG2GhWFrIiKGhu" False) (C1 (MetaCons "DescribeVPCEndpointsResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dvpcersNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_dvpcersVPCEndpoints") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [VPCEndpoint]))) (S1 (MetaSel (Just Symbol "_dvpcersResponseStatus") NoSourceUnpackedness SourceStrict DecidedUnpack) (Rec0 Int)))))

Response Lenses

dvpcersNextToken :: Lens' DescribeVPCEndpointsResponse (Maybe Text) #

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.