aws-sdk-ec2 1.246.0

AWS SDK for Amazon Elastic Compute Cloud
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteIpamInternetRegistryAssociation`](crate::operation::delete_ipam_internet_registry_association::builders::DeleteIpamInternetRegistryAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`dry_run(bool)`](crate::operation::delete_ipam_internet_registry_association::builders::DeleteIpamInternetRegistryAssociationFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::delete_ipam_internet_registry_association::builders::DeleteIpamInternetRegistryAssociationFluentBuilder::set_dry_run):<br>required: **false**<br><p>Checks whether you have the required permissions for the operation, 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>
    ///   - [`ipam_internet_registry_association_id(impl Into<String>)`](crate::operation::delete_ipam_internet_registry_association::builders::DeleteIpamInternetRegistryAssociationFluentBuilder::ipam_internet_registry_association_id) / [`set_ipam_internet_registry_association_id(Option<String>)`](crate::operation::delete_ipam_internet_registry_association::builders::DeleteIpamInternetRegistryAssociationFluentBuilder::set_ipam_internet_registry_association_id):<br>required: **true**<br><p>The ID of the IPAM internet registry association to delete.</p><br>
    /// - On success, responds with [`DeleteIpamInternetRegistryAssociationOutput`](crate::operation::delete_ipam_internet_registry_association::DeleteIpamInternetRegistryAssociationOutput) with field(s):
    ///   - [`ipam_internet_registry_association(Option<IpamInternetRegistryAssociation>)`](crate::operation::delete_ipam_internet_registry_association::DeleteIpamInternetRegistryAssociationOutput::ipam_internet_registry_association): <p>Information about the deleted internet registry association.</p>
    /// - On failure, responds with [`SdkError<DeleteIpamInternetRegistryAssociationError>`](crate::operation::delete_ipam_internet_registry_association::DeleteIpamInternetRegistryAssociationError)
    pub fn delete_ipam_internet_registry_association(
        &self,
    ) -> crate::operation::delete_ipam_internet_registry_association::builders::DeleteIpamInternetRegistryAssociationFluentBuilder {
        crate::operation::delete_ipam_internet_registry_association::builders::DeleteIpamInternetRegistryAssociationFluentBuilder::new(
            self.handle.clone(),
        )
    }
}