Class: Aws::ACM::Types::ImportCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::ImportCertificateRequest
- Defined in:
- gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb
Overview
Note:
When making an API call, you may pass ImportCertificateRequest data as a hash:
{
certificate_arn: "Arn",
certificate: "data", # required
private_key: "data", # required
certificate_chain: "data",
tags: [
{
key: "TagKey", # required
value: "TagValue",
},
],
}
Constant Summary collapse
- SENSITIVE =
[:private_key]
Instance Attribute Summary collapse
-
#certificate ⇒ String
The certificate to import.
-
#certificate_arn ⇒ String
The [Amazon Resource Name (ARN)][1] of an imported certificate to replace.
-
#certificate_chain ⇒ String
The PEM encoded certificate chain.
-
#private_key ⇒ String
The private key that matches the public key in the certificate.
-
#tags ⇒ Array<Types::Tag>
One or more resource tags to associate with the imported certificate.
Instance Attribute Details
#certificate ⇒ String
The certificate to import.
795 796 797 798 799 800 801 802 803 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 795 class ImportCertificateRequest < Struct.new( :certificate_arn, :certificate, :private_key, :certificate_chain, :tags) SENSITIVE = [:private_key] include Aws::Structure end |
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
795 796 797 798 799 800 801 802 803 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 795 class ImportCertificateRequest < Struct.new( :certificate_arn, :certificate, :private_key, :certificate_chain, :tags) SENSITIVE = [:private_key] include Aws::Structure end |
#certificate_chain ⇒ String
The PEM encoded certificate chain.
795 796 797 798 799 800 801 802 803 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 795 class ImportCertificateRequest < Struct.new( :certificate_arn, :certificate, :private_key, :certificate_chain, :tags) SENSITIVE = [:private_key] include Aws::Structure end |
#private_key ⇒ String
The private key that matches the public key in the certificate.
795 796 797 798 799 800 801 802 803 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 795 class ImportCertificateRequest < Struct.new( :certificate_arn, :certificate, :private_key, :certificate_chain, :tags) SENSITIVE = [:private_key] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
One or more resource tags to associate with the imported certificate.
Note: You cannot apply tags when reimporting a certificate.
795 796 797 798 799 800 801 802 803 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 795 class ImportCertificateRequest < Struct.new( :certificate_arn, :certificate, :private_key, :certificate_chain, :tags) SENSITIVE = [:private_key] include Aws::Structure end |