AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DescribeSSLPolicies operation. 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.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ElasticLoadBalancingV2.AmazonElasticLoadBalancingV2Request
      Amazon.ElasticLoadBalancingV2.Model.DescribeSSLPoliciesRequest

Namespace: Amazon.ElasticLoadBalancingV2.Model
Assembly: AWSSDK.ElasticLoadBalancingV2.dll
Version: 3.x.y.z

Syntax

C#
public class DescribeSSLPoliciesRequest : AmazonElasticLoadBalancingV2Request
         IAmazonWebServiceRequest

The DescribeSSLPoliciesRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property LoadBalancerType Amazon.ElasticLoadBalancingV2.LoadBalancerTypeEnum

Gets and sets the property LoadBalancerType.

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

Public Property Marker System.String

Gets and sets the property Marker.

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

Public Property Names System.Collections.Generic.List<System.String>

Gets and sets the property Names.

The names of the policies.

Public Property PageSize System.Int32

Gets and sets the property PageSize.

The maximum number of results to return with this call.

Examples

This example describes the specified policy used for SSL negotiation.

To describe a policy used for SSL negotiation


var client = new AmazonElasticLoadBalancingV2Client();
var response = client.DescribeSSLPolicies(new DescribeSSLPoliciesRequest 
{
    Names = new List<string> {
        "ELBSecurityPolicy-2015-05"
    }
});

List<SslPolicy> sslPolicies = response.SslPolicies;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5