Skip to content

Create Hsm Client Certificate

redshift_create_hsm_client_certificate R Documentation

Creates an HSM client certificate that an Amazon Redshift cluster will use to connect to the client's HSM in order to store and retrieve the keys used to encrypt the cluster databases

Description

Creates an HSM client certificate that an Amazon Redshift cluster will use to connect to the client's HSM in order to store and retrieve the keys used to encrypt the cluster databases.

The command returns a public key, which you must store in the HSM. In addition to creating the HSM certificate, you must create an Amazon Redshift HSM configuration that provides a cluster the information needed to store and use encryption keys in the HSM. For more information, go to Hardware Security Modules in the Amazon Redshift Cluster Management Guide.

Usage

redshift_create_hsm_client_certificate(HsmClientCertificateIdentifier,
  Tags)

Arguments

HsmClientCertificateIdentifier

[required] The identifier to be assigned to the new HSM client certificate that the cluster will use to connect to the HSM to use the database encryption keys.

Tags

A list of tag instances.

Value

A list with the following syntax:

list(
  HsmClientCertificate = list(
    HsmClientCertificateIdentifier = "string",
    HsmClientCertificatePublicKey = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$create_hsm_client_certificate(
  HsmClientCertificateIdentifier = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)