Class: Aws::ElasticLoadBalancingV2::Types::Certificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::Certificate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about an SSL server certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate.
-
#is_default ⇒ Boolean
Indicates whether the certificate is the default certificate.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate.
486 487 488 489 490 491 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 486 class Certificate < Struct.new( :certificate_arn, :is_default) SENSITIVE = [] include Aws::Structure end |
#is_default ⇒ Boolean
Indicates whether the certificate is the default certificate. Do not set this value when specifying a certificate as an input. This value is not included in the output when describing a listener, but is included when describing listener certificates.
486 487 488 489 490 491 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 486 class Certificate < Struct.new( :certificate_arn, :is_default) SENSITIVE = [] include Aws::Structure end |