Class: Aws::Transfer::Types::ListedCertificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListedCertificate
- Includes:
- Structure
- Defined in:
- 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`, or `INACTIVE`.
-
#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.
3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 |
# File 'lib/aws-sdk-transfer/types.rb', line 3846 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.
3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 |
# File 'lib/aws-sdk-transfer/types.rb', line 3846 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.
3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 |
# File 'lib/aws-sdk-transfer/types.rb', line 3846 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.
3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 |
# File 'lib/aws-sdk-transfer/types.rb', line 3846 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.
3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 |
# File 'lib/aws-sdk-transfer/types.rb', line 3846 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.
3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 |
# File 'lib/aws-sdk-transfer/types.rb', line 3846 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`.
3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 |
# File 'lib/aws-sdk-transfer/types.rb', line 3846 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.
3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 |
# File 'lib/aws-sdk-transfer/types.rb', line 3846 class ListedCertificate < Struct.new( :arn, :certificate_id, :usage, :status, :active_date, :inactive_date, :type, :description) SENSITIVE = [] include Aws::Structure end |