You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ACM::Types::ImportCertificateRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ImportCertificateRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  certificate_arn: "Arn",
  certificate: "data", # required
  private_key: "data", # required
  certificate_chain: "data",
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#certificateString

The certificate to import.

Returns:

  • (String)

    The certificate to import.

#certificate_arnString

The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.

Returns:

  • (String)

    The [Amazon Resource Name (ARN)][1] of an imported certificate to replace.

#certificate_chainString

The PEM encoded certificate chain.

Returns:

  • (String)

    The PEM encoded certificate chain.

#private_keyString

The private key that matches the public key in the certificate.

Returns:

  • (String)

    The private key that matches the public key in the certificate.

#tagsArray<Types::Tag>

One or more resource tags to associate with the imported certificate.

Note: You cannot apply tags when reimporting a certificate.

Returns:

  • (Array<Types::Tag>)

    One or more resource tags to associate with the imported certificate.