paws.networking (version 0.1.6)

elbv2_describe_rules: Describes the specified rules or the rules for the specified listener

Description

Describes the specified rules or the rules for the specified listener. You must specify either a listener or one or more rules.

Usage

elbv2_describe_rules(ListenerArn, RuleArns, Marker, PageSize)

Arguments

ListenerArn

The Amazon Resource Name (ARN) of the listener.

RuleArns

The Amazon Resource Names (ARN) of the rules.

Marker

The marker for the next set of results. (You received this marker from a previous call.)

PageSize

The maximum number of results to return with this call.

Request syntax

svc$describe_rules(
  ListenerArn = "string",
  RuleArns = list(
    "string"
  ),
  Marker = "string",
  PageSize = 123
)

Examples

Run this code
# NOT RUN {
# This example describes the specified rule.
# }
# NOT RUN {
svc$describe_rules(
  RuleArns = list(
    "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/..."
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace