Class: Aws::OpsWorks::Types::SslConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::SslConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opsworks/types.rb
Overview
Describes an app’s SSL configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate ⇒ String
The contents of the certificate’s domain.crt file.
-
#chain ⇒ String
Optional.
-
#private_key ⇒ String
The private key; the contents of the certificate’s domain.kex file.
Instance Attribute Details
#certificate ⇒ String
The contents of the certificate’s domain.crt file.
4867 4868 4869 4870 4871 4872 4873 |
# File 'lib/aws-sdk-opsworks/types.rb', line 4867 class SslConfiguration < Struct.new( :certificate, :private_key, :chain) SENSITIVE = [] include Aws::Structure end |
#chain ⇒ String
Optional. Can be used to specify an intermediate certificate authority key or client authentication.
4867 4868 4869 4870 4871 4872 4873 |
# File 'lib/aws-sdk-opsworks/types.rb', line 4867 class SslConfiguration < Struct.new( :certificate, :private_key, :chain) SENSITIVE = [] include Aws::Structure end |
#private_key ⇒ String
The private key; the contents of the certificate’s domain.kex file.
4867 4868 4869 4870 4871 4872 4873 |
# File 'lib/aws-sdk-opsworks/types.rb', line 4867 class SslConfiguration < Struct.new( :certificate, :private_key, :chain) SENSITIVE = [] include Aws::Structure end |