Class: Aws::Redshift::Types::CreateHsmClientCertificateMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-redshift/types.rb

Overview

Note:

When making an API call, you may pass CreateHsmClientCertificateMessage data as a hash:

{
  hsm_client_certificate_identifier: "String", # required
  tags: [
    {
      key: "String",
      value: "String",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#hsm_client_certificate_identifierString

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.

Returns:

  • (String)


2146
2147
2148
2149
2150
# File 'lib/aws-sdk-redshift/types.rb', line 2146

class CreateHsmClientCertificateMessage < Struct.new(
  :hsm_client_certificate_identifier,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of tag instances.

Returns:



2146
2147
2148
2149
2150
# File 'lib/aws-sdk-redshift/types.rb', line 2146

class CreateHsmClientCertificateMessage < Struct.new(
  :hsm_client_certificate_identifier,
  :tags)
  include Aws::Structure
end