Class: Aws::ACM::Types::ImportCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::ImportCertificateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-acm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:private_key]
Instance Attribute Summary collapse
-
#certificate ⇒ String
The certificate to import.
-
#certificate_arn ⇒ String
The [Amazon Resource Name (ARN)] 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.
861 862 863 864 865 866 867 868 869 |
# File 'lib/aws-sdk-acm/types.rb', line 861 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.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
861 862 863 864 865 866 867 868 869 |
# File 'lib/aws-sdk-acm/types.rb', line 861 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.
861 862 863 864 865 866 867 868 869 |
# File 'lib/aws-sdk-acm/types.rb', line 861 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.
861 862 863 864 865 866 867 868 869 |
# File 'lib/aws-sdk-acm/types.rb', line 861 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.
861 862 863 864 865 866 867 868 869 |
# File 'lib/aws-sdk-acm/types.rb', line 861 class ImportCertificateRequest < Struct.new( :certificate_arn, :certificate, :private_key, :certificate_chain, :tags) SENSITIVE = [:private_key] include Aws::Structure end |