You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticLoadBalancing::Types::ModifyLoadBalancerAttributesInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ModifyLoadBalancerAttributesInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  load_balancer_name: "AccessPointName", # required
  load_balancer_attributes: { # required
    cross_zone_load_balancing: {
      enabled: false, # required
    },
    access_log: {
      enabled: false, # required
      s3_bucket_name: "S3BucketName",
      emit_interval: 1,
      s3_bucket_prefix: "AccessLogPrefix",
    },
    connection_draining: {
      enabled: false, # required
      timeout: 1,
    },
    connection_settings: {
      idle_timeout: 1, # required
    },
    additional_attributes: [
      {
        key: "AdditionalAttributeKey",
        value: "AdditionalAttributeValue",
      },
    ],
  },
}

Contains the parameters for ModifyLoadBalancerAttributes.

Instance Attribute Summary collapse

Instance Attribute Details

#load_balancer_attributesTypes::LoadBalancerAttributes

The attributes for the load balancer.

Returns:

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)

    The name of the load balancer.