Class: Aws::Transfer::Types::ListedCertificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListedCertificate
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Describes the properties of a certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#active_date ⇒ Time
An optional date that specifies when the certificate becomes active.
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the specified certificate.
-
#certificate_id ⇒ String
An array of identifiers for the imported certificates.
-
#description ⇒ String
The name or short description that's used to identify the certificate.
-
#inactive_date ⇒ Time
An optional date that specifies when the certificate becomes inactive.
-
#status ⇒ String
The certificate can be either
ACTIVE
,PENDING_ROTATION
, orINACTIVE
. -
#type ⇒ String
The type for the certificate.
-
#usage ⇒ String
Specifies how this certificate is used.
Instance Attribute Details
#active_date ⇒ Time
An optional date that specifies when the certificate becomes active.
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4776 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |
#arn ⇒ String
The Amazon Resource Name (ARN) of the specified certificate.
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4776 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |
#certificate_id ⇒ String
An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4776 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The name or short description that's used to identify the certificate.
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4776 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |
#inactive_date ⇒ Time
An optional date that specifies when the certificate becomes inactive.
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4776 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The certificate can be either ACTIVE
, PENDING_ROTATION
, or
INACTIVE
. PENDING_ROTATION
means that this certificate will
replace the current certificate when it expires.
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4776 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type for the certificate. If a private key has been specified
for the certificate, its type is CERTIFICATE_WITH_PRIVATE_KEY
. If
there is no private key, the type is CERTIFICATE
.
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4776 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |
#usage ⇒ String
Specifies how this certificate is used. It can be used in the following ways:
SIGNING
: For signing AS2 messagesENCRYPTION
: For encrypting AS2 messagesTLS
: For securing AS2 communications sent over HTTPS
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4776 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |