Class: Aws::Lightsail::Types::LoadBalancerTlsPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::LoadBalancerTlsPolicy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lightsail/types.rb
Overview
Describes the TLS security policies that are available for Lightsail load balancers.
For more information about load balancer TLS security policies, see [Configuring TLS security policies on your Amazon Lightsail load balancers] in the *Amazon Lightsail Developer Guide*.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ciphers ⇒ Array<String>
The ciphers used by the TLS security policy.
-
#description ⇒ String
The description of the TLS security policy.
-
#is_default ⇒ Boolean
A Boolean value that indicates whether the TLS security policy is the default.
-
#name ⇒ String
The name of the TLS security policy.
-
#protocols ⇒ Array<String>
The protocols used in a given TLS security policy.
Instance Attribute Details
#ciphers ⇒ Array<String>
The ciphers used by the TLS security policy.
The ciphers are listed in order of preference.
11682 11683 11684 11685 11686 11687 11688 11689 11690 |
# File 'lib/aws-sdk-lightsail/types.rb', line 11682 class LoadBalancerTlsPolicy < Struct.new( :name, :is_default, :description, :protocols, :ciphers) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description of the TLS security policy.
11682 11683 11684 11685 11686 11687 11688 11689 11690 |
# File 'lib/aws-sdk-lightsail/types.rb', line 11682 class LoadBalancerTlsPolicy < Struct.new( :name, :is_default, :description, :protocols, :ciphers) SENSITIVE = [] include Aws::Structure end |
#is_default ⇒ Boolean
A Boolean value that indicates whether the TLS security policy is the default.
11682 11683 11684 11685 11686 11687 11688 11689 11690 |
# File 'lib/aws-sdk-lightsail/types.rb', line 11682 class LoadBalancerTlsPolicy < Struct.new( :name, :is_default, :description, :protocols, :ciphers) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the TLS security policy.
11682 11683 11684 11685 11686 11687 11688 11689 11690 |
# File 'lib/aws-sdk-lightsail/types.rb', line 11682 class LoadBalancerTlsPolicy < Struct.new( :name, :is_default, :description, :protocols, :ciphers) SENSITIVE = [] include Aws::Structure end |
#protocols ⇒ Array<String>
The protocols used in a given TLS security policy.
11682 11683 11684 11685 11686 11687 11688 11689 11690 |
# File 'lib/aws-sdk-lightsail/types.rb', line 11682 class LoadBalancerTlsPolicy < Struct.new( :name, :is_default, :description, :protocols, :ciphers) SENSITIVE = [] include Aws::Structure end |