Class: Aws::Lightsail::Types::UpdateLoadBalancerAttributeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::UpdateLoadBalancerAttributeRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_name ⇒ String
The name of the attribute you want to update.
-
#attribute_value ⇒ String
The value that you want to specify for the attribute name.
-
#load_balancer_name ⇒ String
The name of the load balancer that you want to modify (e.g.,
my-load-balancer
..
Instance Attribute Details
#attribute_name ⇒ String
The name of the attribute you want to update.
14532 14533 14534 14535 14536 14537 14538 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 14532 class UpdateLoadBalancerAttributeRequest < Struct.new( :load_balancer_name, :attribute_name, :attribute_value) SENSITIVE = [] include Aws::Structure end |
#attribute_value ⇒ String
The value that you want to specify for the attribute name.
The following values are supported depending on what you specify for
the attributeName
request parameter:
If you specify
HealthCheckPath
for theattributeName
request parameter, then theattributeValue
request parameter must be the path to ping on the target (for example,/weather/us/wa/seattle
).If you specify
SessionStickinessEnabled
for theattributeName
request parameter, then theattributeValue
request parameter must betrue
to activate session stickiness orfalse
to deactivate session stickiness.If you specify
SessionStickiness_LB_CookieDurationSeconds
for theattributeName
request parameter, then theattributeValue
request parameter must be an interger that represents the cookie duration in seconds.If you specify
HttpsRedirectionEnabled
for theattributeName
request parameter, then theattributeValue
request parameter must betrue
to activate HTTP to HTTPS redirection orfalse
to deactivate HTTP to HTTPS redirection.If you specify
TlsPolicyName
for theattributeName
request parameter, then theattributeValue
request parameter must be the name of the TLS policy.Use the GetLoadBalancerTlsPolicies action to get a list of TLS policy names that you can specify.
14532 14533 14534 14535 14536 14537 14538 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 14532 class UpdateLoadBalancerAttributeRequest < Struct.new( :load_balancer_name, :attribute_name, :attribute_value) SENSITIVE = [] include Aws::Structure end |
#load_balancer_name ⇒ String
The name of the load balancer that you want to modify (e.g.,
my-load-balancer
.
14532 14533 14534 14535 14536 14537 14538 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 14532 class UpdateLoadBalancerAttributeRequest < Struct.new( :load_balancer_name, :attribute_name, :attribute_value) SENSITIVE = [] include Aws::Structure end |