Class: Aws::OpsWorks::Types::SslConfiguration

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

Overview

Describes an app's SSL configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificateString

The contents of the certificate's domain.crt file.

Returns:

  • (String)


4847
4848
4849
4850
4851
4852
4853
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 4847

class SslConfiguration < Struct.new(
  :certificate,
  :private_key,
  :chain)
  SENSITIVE = []
  include Aws::Structure
end

#chainString

Optional. Can be used to specify an intermediate certificate authority key or client authentication.

Returns:

  • (String)


4847
4848
4849
4850
4851
4852
4853
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 4847

class SslConfiguration < Struct.new(
  :certificate,
  :private_key,
  :chain)
  SENSITIVE = []
  include Aws::Structure
end

#private_keyString

The private key; the contents of the certificate's domain.kex file.

Returns:

  • (String)


4847
4848
4849
4850
4851
4852
4853
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 4847

class SslConfiguration < Struct.new(
  :certificate,
  :private_key,
  :chain)
  SENSITIVE = []
  include Aws::Structure
end