Skip to content

Describe Ssl Policies

elbv2_describe_ssl_policies R Documentation

Describes the specified policies or all policies used for SSL negotiation

Description

Describes the specified policies or all policies used for SSL negotiation.

For more information, see Security policies in the Application Load Balancers Guide or Security policies in the Network Load Balancers Guide.

Usage

elbv2_describe_ssl_policies(Names, Marker, PageSize, LoadBalancerType)

Arguments

Names

The names of the policies.

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.

LoadBalancerType

The type of load balancer. The default lists the SSL policies for all load balancers.

Value

A list with the following syntax:

list(
  SslPolicies = list(
    list(
      SslProtocols = list(
        "string"
      ),
      Ciphers = list(
        list(
          Name = "string",
          Priority = 123
        )
      ),
      Name = "string",
      SupportedLoadBalancerTypes = list(
        "string"
      )
    )
  ),
  NextMarker = "string"
)

Request syntax

svc$describe_ssl_policies(
  Names = list(
    "string"
  ),
  Marker = "string",
  PageSize = 123,
  LoadBalancerType = "application"|"network"|"gateway"
)

Examples

## Not run: 
# This example describes the specified policy used for SSL negotiation.
svc$describe_ssl_policies(
  Names = list(
    "ELBSecurityPolicy-2015-05"
  )
)

## End(Not run)