aws_sdk_devicefarm/client/
list_vpce_configurations.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListVPCEConfigurations`](crate::operation::list_vpce_configurations::builders::ListVPCEConfigurationsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(i32)`](crate::operation::list_vpce_configurations::builders::ListVPCEConfigurationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_vpce_configurations::builders::ListVPCEConfigurationsFluentBuilder::set_max_results):<br>required: **false**<br><p>An integer that specifies the maximum number of items you want to return in the API response.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_vpce_configurations::builders::ListVPCEConfigurationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_vpce_configurations::builders::ListVPCEConfigurationsFluentBuilder::set_next_token):<br>required: **false**<br><p>An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.</p><br>
    /// - On success, responds with [`ListVpceConfigurationsOutput`](crate::operation::list_vpce_configurations::ListVpceConfigurationsOutput) with field(s):
    ///   - [`vpce_configurations(Option<Vec::<VpceConfiguration>>)`](crate::operation::list_vpce_configurations::ListVpceConfigurationsOutput::vpce_configurations): <p>An array of <code>VPCEConfiguration</code> objects that contain information about your VPC endpoint configuration.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_vpce_configurations::ListVpceConfigurationsOutput::next_token): <p>An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.</p>
    /// - On failure, responds with [`SdkError<ListVPCEConfigurationsError>`](crate::operation::list_vpce_configurations::ListVPCEConfigurationsError)
    pub fn list_vpce_configurations(&self) -> crate::operation::list_vpce_configurations::builders::ListVPCEConfigurationsFluentBuilder {
        crate::operation::list_vpce_configurations::builders::ListVPCEConfigurationsFluentBuilder::new(self.handle.clone())
    }
}