amazonka-cloudfront-1.6.0: Amazon CloudFront 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.CloudFront.DeletePublicKey

Contents

Description

Remove a public key you previously added to CloudFront.

Synopsis

Creating a Request

deletePublicKey #

Arguments

:: Text

dpkId

-> DeletePublicKey 

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

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

  • dpkIfMatch - The value of the ETag header that you received when retrieving the public key identity to delete. For example: E2QWRUHAPOMQZL .
  • dpkId - The ID of the public key you want to remove from CloudFront.

data DeletePublicKey #

See: deletePublicKey smart constructor.

Instances
Eq DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Data DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Methods

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

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

toConstr :: DeletePublicKey -> Constr #

dataTypeOf :: DeletePublicKey -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Show DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Generic DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Associated Types

type Rep DeletePublicKey :: * -> * #

Hashable DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

AWSRequest DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Associated Types

type Rs DeletePublicKey :: * #

ToHeaders DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

ToPath DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

ToQuery DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

NFData DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Methods

rnf :: DeletePublicKey -> () #

type Rep DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

type Rep DeletePublicKey = D1 (MetaData "DeletePublicKey" "Network.AWS.CloudFront.DeletePublicKey" "amazonka-cloudfront-1.6.0-UYFoUyWv9X385WP5RsDEn" False) (C1 (MetaCons "DeletePublicKey'" PrefixI True) (S1 (MetaSel (Just "_dpkIfMatch") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_dpkId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))
type Rs DeletePublicKey # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Request Lenses

dpkIfMatch :: Lens' DeletePublicKey (Maybe Text) #

The value of the ETag header that you received when retrieving the public key identity to delete. For example: E2QWRUHAPOMQZL .

dpkId :: Lens' DeletePublicKey Text #

The ID of the public key you want to remove from CloudFront.

Destructuring the Response

deletePublicKeyResponse :: DeletePublicKeyResponse #

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

data DeletePublicKeyResponse #

See: deletePublicKeyResponse smart constructor.

Instances
Eq DeletePublicKeyResponse # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Data DeletePublicKeyResponse # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Methods

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

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

toConstr :: DeletePublicKeyResponse -> Constr #

dataTypeOf :: DeletePublicKeyResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DeletePublicKeyResponse # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Show DeletePublicKeyResponse # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Generic DeletePublicKeyResponse # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Associated Types

type Rep DeletePublicKeyResponse :: * -> * #

NFData DeletePublicKeyResponse # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

Methods

rnf :: DeletePublicKeyResponse -> () #

type Rep DeletePublicKeyResponse # 
Instance details

Defined in Network.AWS.CloudFront.DeletePublicKey

type Rep DeletePublicKeyResponse = D1 (MetaData "DeletePublicKeyResponse" "Network.AWS.CloudFront.DeletePublicKey" "amazonka-cloudfront-1.6.0-UYFoUyWv9X385WP5RsDEn" False) (C1 (MetaCons "DeletePublicKeyResponse'" PrefixI False) (U1 :: * -> *))