1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeVpcEndpointServices`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`dry_run(bool)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::set_dry_run):<br>required: **false**<br><p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p><br>
    ///   - [`service_names(impl Into<String>)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::service_names) / [`set_service_names(Option<Vec::<String>>)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::set_service_names):<br>required: **false**<br><p>The service names.</p><br>
    ///   - [`filters(Filter)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::set_filters):<br>required: **false**<br><p>The filters.</p> <ul>  <li>   <p><code>owner</code> - The ID or alias of the Amazon Web Services account that owns the service.</p></li>  <li>   <p><code>service-name</code> - The name of the service.</p></li>  <li>   <p><code>service-type</code> - The type of service (<code>Interface</code> | <code>Gateway</code> | <code>GatewayLoadBalancer</code>).</p></li>  <li>   <p><code>supported-ip-address-types</code> - The IP address type (<code>ipv4</code> | <code>ipv6</code>).</p></li>  <li>   <p><code>tag</code>:<key>     - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key      <code>Owner</code> and the value      <code>TeamA</code>, specify      <code>tag:Owner</code> for the filter name and      <code>TeamA</code> for the filter value.    </key></p></li>  <li>   <p><code>tag-key</code> - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.</p></li> </ul><br>
    ///   - [`max_results(i32)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of items to return for this request. The request returns a token that you can specify in a subsequent call to get the next set of results.</p> <p>Constraint: If the value is greater than 1,000, we return only 1,000 items.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of items to return. (You received this token from a prior call.)</p><br>
    /// - On success, responds with [`DescribeVpcEndpointServicesOutput`](crate::operation::describe_vpc_endpoint_services::DescribeVpcEndpointServicesOutput) with field(s):
    ///   - [`service_names(Option<Vec::<String>>)`](crate::operation::describe_vpc_endpoint_services::DescribeVpcEndpointServicesOutput::service_names): <p>The supported services.</p>
    ///   - [`service_details(Option<Vec::<ServiceDetail>>)`](crate::operation::describe_vpc_endpoint_services::DescribeVpcEndpointServicesOutput::service_details): <p>Information about the service.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_vpc_endpoint_services::DescribeVpcEndpointServicesOutput::next_token): <p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>
    /// - On failure, responds with [`SdkError<DescribeVpcEndpointServicesError>`](crate::operation::describe_vpc_endpoint_services::DescribeVpcEndpointServicesError)
    pub fn describe_vpc_endpoint_services(
        &self,
    ) -> crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder {
        crate::operation::describe_vpc_endpoint_services::builders::DescribeVpcEndpointServicesFluentBuilder::new(self.handle.clone())
    }
}