amazonka-iam-0.0.0: Amazon Identity and Access Management SDK.

Safe HaskellNone
LanguageHaskell2010

Network.AWS.IAM.UploadServerCertificate

Contents

Description

Uploads a server certificate entity for the AWS account. The server certificate entity includes a public key certificate, a private key, and an optional certificate chain, which should all be PEM-encoded. For information about the number of server certificates you can upload, see Limitations on IAM Entities in the Using IAM guide.

http://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadServerCertificate.html

Synopsis

Request

Request constructor

Request lenses

uscCertificateBody :: Lens' UploadServerCertificate Text Source

The contents of the public key certificate in PEM-encoded format.

uscCertificateChain :: Lens' UploadServerCertificate (Maybe Text) Source

The contents of the certificate chain. This is typically a concatenation of the PEM-encoded public key certificates of the chain.

uscPath :: Lens' UploadServerCertificate (Maybe Text) Source

The path for the server certificate. For more information about paths, see IAM Identifiers in the Using IAM guide. This parameter is optional. If it is not included, it defaults to a slash (/).

uscPrivateKey :: Lens' UploadServerCertificate Text Source

The contents of the private key in PEM-encoded format.

uscServerCertificateName :: Lens' UploadServerCertificate Text Source

The name for the server certificate. Do not include the path in this value.

Response

Response constructor

Response lenses

uscrServerCertificateMetadata :: Lens' UploadServerCertificateResponse (Maybe ServerCertificateMetadata) Source

The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.