aws_sdk_elasticloadbalancingv2/client/describe_ssl_policies.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DescribeSSLPolicies`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`names(impl Into<String>)`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::names) / [`set_names(Option<Vec::<String>>)`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::set_names):<br>required: **false**<br><p>The names of the policies.</p><br>
7 /// - [`marker(impl Into<String>)`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::set_marker):<br>required: **false**<br><p>The marker for the next set of results. (You received this marker from a previous call.)</p><br>
8 /// - [`page_size(i32)`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::page_size) / [`set_page_size(Option<i32>)`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::set_page_size):<br>required: **false**<br><p>The maximum number of results to return with this call.</p><br>
9 /// - [`load_balancer_type(LoadBalancerTypeEnum)`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::load_balancer_type) / [`set_load_balancer_type(Option<LoadBalancerTypeEnum>)`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::set_load_balancer_type):<br>required: **false**<br><p>The type of load balancer. The default lists the SSL policies for all load balancers.</p><br>
10 /// - On success, responds with [`DescribeSslPoliciesOutput`](crate::operation::describe_ssl_policies::DescribeSslPoliciesOutput) with field(s):
11 /// - [`ssl_policies(Option<Vec::<SslPolicy>>)`](crate::operation::describe_ssl_policies::DescribeSslPoliciesOutput::ssl_policies): <p>Information about the security policies.</p>
12 /// - [`next_marker(Option<String>)`](crate::operation::describe_ssl_policies::DescribeSslPoliciesOutput::next_marker): <p>If there are additional results, this is the marker for the next set of results. Otherwise, this is null.</p>
13 /// - On failure, responds with [`SdkError<DescribeSSLPoliciesError>`](crate::operation::describe_ssl_policies::DescribeSSLPoliciesError)
14 pub fn describe_ssl_policies(&self) -> crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder {
15 crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::new(self.handle.clone())
16 }
17}