1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeSSLPolicies`](crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DescribeSslPoliciesOutput`](crate::operation::describe_ssl_policies::DescribeSslPoliciesOutput) with field(s):
    ///   - [`ssl_policies(Option<Vec::<SslPolicy>>)`](crate::operation::describe_ssl_policies::DescribeSslPoliciesOutput::ssl_policies): <p>Information about the security policies.</p>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<DescribeSSLPoliciesError>`](crate::operation::describe_ssl_policies::DescribeSSLPoliciesError)
    pub fn describe_ssl_policies(&self) -> crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder {
        crate::operation::describe_ssl_policies::builders::DescribeSSLPoliciesFluentBuilder::new(self.handle.clone())
    }
}