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 whether this certificate is used for signing or encryption.
Instance Attribute Details
#active_date ⇒ Time
An optional date that specifies when the certificate becomes active.
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3778 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.
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3778 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.
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3778 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.
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3778 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.
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3778 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.
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3778 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
.
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3778 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |
#usage ⇒ String
Specifies whether this certificate is used for signing or encryption.
3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3778 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |