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

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

Overview

Constant Summary collapse

SENSITIVE =
[:private_key]

Instance Attribute Summary collapse

Instance Attribute Details

#certificateString

The certificate to import.

Returns:

  • (String)


871
872
873
874
875
876
877
878
879
# File 'lib/aws-sdk-acm/types.rb', line 871

class ImportCertificateRequest < Struct.new(
  :certificate_arn,
  :certificate,
  :private_key,
  :certificate_chain,
  :tags)
  SENSITIVE = [:private_key]
  include Aws::Structure
end

#certificate_arnString

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

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html

Returns:

  • (String)


871
872
873
874
875
876
877
878
879
# File 'lib/aws-sdk-acm/types.rb', line 871

class ImportCertificateRequest < Struct.new(
  :certificate_arn,
  :certificate,
  :private_key,
  :certificate_chain,
  :tags)
  SENSITIVE = [:private_key]
  include Aws::Structure
end

#certificate_chainString

The PEM encoded certificate chain.

Returns:

  • (String)


871
872
873
874
875
876
877
878
879
# File 'lib/aws-sdk-acm/types.rb', line 871

class ImportCertificateRequest < Struct.new(
  :certificate_arn,
  :certificate,
  :private_key,
  :certificate_chain,
  :tags)
  SENSITIVE = [:private_key]
  include Aws::Structure
end

#private_keyString

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

Returns:

  • (String)


871
872
873
874
875
876
877
878
879
# File 'lib/aws-sdk-acm/types.rb', line 871

class ImportCertificateRequest < Struct.new(
  :certificate_arn,
  :certificate,
  :private_key,
  :certificate_chain,
  :tags)
  SENSITIVE = [:private_key]
  include Aws::Structure
end

#tagsArray<Types::Tag>

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

Note: You cannot apply tags when reimporting a certificate.

Returns:



871
872
873
874
875
876
877
878
879
# File 'lib/aws-sdk-acm/types.rb', line 871

class ImportCertificateRequest < Struct.new(
  :certificate_arn,
  :certificate,
  :private_key,
  :certificate_chain,
  :tags)
  SENSITIVE = [:private_key]
  include Aws::Structure
end