lib/aws-sdk-elasticloadbalancingv2/client.rb in aws-sdk-elasticloadbalancingv2-1.2.0 vs lib/aws-sdk-elasticloadbalancingv2/client.rb in aws-sdk-elasticloadbalancingv2-1.3.0

- old
+ new

@@ -256,11 +256,12 @@ # * {Types::CreateListenerOutput#listeners #listeners} => Array<Types::Listener> # # # @example Example: To create an HTTP listener # - # # This example creates an HTTP listener for the specified load balancer that forwards requests to the specified target group. + # # This example creates an HTTP listener for the specified load balancer that forwards requests to the specified target + # # group. # # resp = client.create_listener({ # default_actions: [ # { # target_group_arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", @@ -290,11 +291,14 @@ # ], # } # # @example Example: To create an HTTPS listener # - # # This example creates an HTTPS listener for the specified load balancer that forwards requests to the specified target group. Note that you must specify an SSL certificate for an HTTPS listener. You can create and manage certificates using AWS Certificate Manager (ACM). Alternatively, you can create a certificate using SSL/TLS tools, get the certificate signed by a certificate authority (CA), and upload the certificate to AWS Identity and Access Management (IAM). + # # This example creates an HTTPS listener for the specified load balancer that forwards requests to the specified target + # # group. Note that you must specify an SSL certificate for an HTTPS listener. You can create and manage certificates using + # # AWS Certificate Manager (ACM). Alternatively, you can create a certificate using SSL/TLS tools, get the certificate + # # signed by a certificate authority (CA), and upload the certificate to AWS Identity and Access Management (IAM). # # resp = client.create_listener({ # certificates: [ # { # certificate_arn: "arn:aws:iam::123456789012:server-certificate/my-server-cert", @@ -680,11 +684,12 @@ # * {Types::CreateRuleOutput#rules #rules} => Array<Types::Rule> # # # @example Example: To create a rule # - # # This example creates a rule that forwards requests to the specified target group if the URL contains the specified pattern (for example, /img/*). + # # This example creates a rule that forwards requests to the specified target group if the URL contains the specified + # # pattern (for example, /img/*). # # resp = client.create_rule({ # actions: [ # { # target_group_arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", @@ -873,11 +878,12 @@ # * {Types::CreateTargetGroupOutput#target_groups #target_groups} => Array<Types::TargetGroup> # # # @example Example: To create a target group # - # # This example creates a target group that you can use to route traffic to targets using HTTP on port 80. This target group uses the default health check configuration. + # # This example creates a target group that you can use to route traffic to targets using HTTP on port 80. This target + # # group uses the default health check configuration. # # resp = client.create_target_group({ # name: "my-targets", # port: 80, # protocol: "HTTP", @@ -1945,11 +1951,12 @@ # * {Types::DescribeTargetHealthOutput#target_health_descriptions #target_health_descriptions} => Array<Types::TargetHealthDescription> # # # @example Example: To describe the health of the targets for a target group # - # # This example describes the health of the targets for the specified target group. One target is healthy but the other is not specified in an action, so it can't receive traffic from the load balancer. + # # This example describes the health of the targets for the specified target group. One target is healthy but the other is + # # not specified in an action, so it can't receive traffic from the load balancer. # # resp = client.describe_target_health({ # target_group_arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067", # }) # @@ -2294,11 +2301,12 @@ # ], # } # # @example Example: To enable access logs # - # # This example enables access logs for the specified load balancer. Note that the S3 bucket must exist in the same region as the load balancer and must have a policy attached that grants access to the Elastic Load Balancing service. + # # This example enables access logs for the specified load balancer. Note that the S3 bucket must exist in the same region + # # as the load balancer and must have a policy attached that grants access to the Elastic Load Balancing service. # # resp = client.modify_load_balancer_attributes({ # attributes: [ # { # key: "access_logs.s3.enabled", @@ -2521,11 +2529,12 @@ # * {Types::ModifyTargetGroupOutput#target_groups #target_groups} => Array<Types::TargetGroup> # # # @example Example: To modify the health check configuration for a target group # - # # This example changes the configuration of the health checks used to evaluate the health of the targets for the specified target group. + # # This example changes the configuration of the health checks used to evaluate the health of the targets for the specified + # # target group. # # resp = client.modify_target_group({ # health_check_port: "443", # health_check_protocol: "HTTPS", # target_group_arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-https-targets/2453ed029918f21f", @@ -2721,11 +2730,12 @@ # ], # }) # # @example Example: To register targets with a target group using port overrides # - # # This example registers the specified instance with the specified target group using multiple ports. This enables you to register ECS containers on the same instance as targets in the target group. + # # This example registers the specified instance with the specified target group using multiple ports. This enables you to + # # register ECS containers on the same instance as targets in the target group. # # resp = client.register_targets({ # target_group_arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-new-targets/3bb63f11dfb0faf9", # targets: [ # { @@ -3080,10 +3090,10 @@ operation: config.api.operation(operation_name), client: self, params: params, config: config) context[:gem_name] = 'aws-sdk-elasticloadbalancingv2' - context[:gem_version] = '1.2.0' + context[:gem_version] = '1.3.0' Seahorse::Client::Request.new(handlers, context) end # Polls an API operation until a resource enters a desired state. #