paws.networking (version 0.1.6)

elb_describe_load_balancer_policy_types: Describes the specified load balancer policy types or all load balancer policy types

Description

Describes the specified load balancer policy types or all load balancer policy types.

Usage

elb_describe_load_balancer_policy_types(PolicyTypeNames)

Arguments

PolicyTypeNames

The names of the policy types. If no names are specified, describes all policy types defined by Elastic Load Balancing.

Request syntax

svc$describe_load_balancer_policy_types(
  PolicyTypeNames = list(
    "string"
  )
)

Details

The description of each type indicates how it can be used. For example, some policies can be used only with layer 7 listeners, some policies can be used only with layer 4 listeners, and some policies can be used only with your EC2 instances.

You can use CreateLoadBalancerPolicy to create a policy configuration for any of these policy types. Then, depending on the policy type, use either SetLoadBalancerPoliciesOfListener or SetLoadBalancerPoliciesForBackendServer to set the policy.

Examples

Run this code
# NOT RUN {
# This example describes the specified load balancer policy type.
# }
# NOT RUN {
svc$describe_load_balancer_policy_types(
  PolicyTypeNames = list(
    "ProxyProtocolPolicyType"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab