// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeAddresses`](crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`filters(Filter)`](crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder::set_filters):<br>required: **false**<br><p>One or more filters. Filter names and values are case-sensitive.</p> <ul> <li> <p><code>allocation-id</code> - The allocation ID for the address.</p></li> <li> <p><code>association-id</code> - The association ID for the address.</p></li> <li> <p><code>instance-id</code> - The ID of the instance the address is associated with, if any.</p></li> <li> <p><code>network-border-group</code> - A unique set of Availability Zones, Local Zones, or Wavelength Zones from where Amazon Web Services advertises IP addresses.</p></li> <li> <p><code>network-interface-id</code> - The ID of the network interface that the address is associated with, if any.</p></li> <li> <p><code>network-interface-owner-id</code> - The Amazon Web Services account ID of the owner.</p></li> <li> <p><code>private-ip-address</code> - The private IP address associated with the Elastic IP address.</p></li> <li> <p><code>public-ip</code> - The Elastic IP address, or the carrier IP address.</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>
/// - [`public_ips(impl Into<String>)`](crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder::public_ips) / [`set_public_ips(Option<Vec::<String>>)`](crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder::set_public_ips):<br>required: **false**<br><p>One or more Elastic IP addresses.</p> <p>Default: Describes all your Elastic IP addresses.</p><br>
/// - [`allocation_ids(impl Into<String>)`](crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder::allocation_ids) / [`set_allocation_ids(Option<Vec::<String>>)`](crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder::set_allocation_ids):<br>required: **false**<br><p>Information about the allocation IDs.</p><br>
/// - [`dry_run(bool)`](crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder::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>
/// - On success, responds with [`DescribeAddressesOutput`](crate::operation::describe_addresses::DescribeAddressesOutput) with field(s):
/// - [`addresses(Option<Vec::<Address>>)`](crate::operation::describe_addresses::DescribeAddressesOutput::addresses): <p>Information about the Elastic IP addresses.</p>
/// - On failure, responds with [`SdkError<DescribeAddressesError>`](crate::operation::describe_addresses::DescribeAddressesError)
pub fn describe_addresses(&self) -> crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder {
crate::operation::describe_addresses::builders::DescribeAddressesFluentBuilder::new(self.handle.clone())
}
}