Skip to content

Get Server Certificate

iam_get_server_certificate R Documentation

Retrieves information about the specified server certificate stored in IAM

Description

Retrieves information about the specified server certificate stored in IAM.

For more information about working with server certificates, see Working with server certificates in the IAM User Guide. This topic includes a list of Amazon Web Services services that can use the server certificates that you manage with IAM.

Usage

iam_get_server_certificate(ServerCertificateName)

Arguments

ServerCertificateName

[required] The name of the server certificate you want to retrieve information about.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

Value

A list with the following syntax:

list(
  ServerCertificate = list(
    ServerCertificateMetadata = list(
      Path = "string",
      ServerCertificateName = "string",
      ServerCertificateId = "string",
      Arn = "string",
      UploadDate = as.POSIXct(
        "2015-01-01"
      ),
      Expiration = as.POSIXct(
        "2015-01-01"
      )
    ),
    CertificateBody = "string",
    CertificateChain = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$get_server_certificate(
  ServerCertificateName = "string"
)