Class: Aws::ElasticLoadBalancingV2::Types::Certificate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb

Overview

Information about an SSL server certificate.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_arnString

The Amazon Resource Name (ARN) of the certificate.

Returns:

  • (String)


415
416
417
418
419
420
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 415

class Certificate < Struct.new(
  :certificate_arn,
  :is_default)
  SENSITIVE = []
  include Aws::Structure
end

#is_defaultBoolean

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.

Returns:

  • (Boolean)


415
416
417
418
419
420
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 415

class Certificate < Struct.new(
  :certificate_arn,
  :is_default)
  SENSITIVE = []
  include Aws::Structure
end