aws_sdk_redshift/client/
delete_endpoint_access.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteEndpointAccess`](crate::operation::delete_endpoint_access::builders::DeleteEndpointAccessFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`endpoint_name(impl Into<String>)`](crate::operation::delete_endpoint_access::builders::DeleteEndpointAccessFluentBuilder::endpoint_name) / [`set_endpoint_name(Option<String>)`](crate::operation::delete_endpoint_access::builders::DeleteEndpointAccessFluentBuilder::set_endpoint_name):<br>required: **true**<br><p>The Redshift-managed VPC endpoint to delete.</p><br>
7    /// - On success, responds with [`DeleteEndpointAccessOutput`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput) with field(s):
8    ///   - [`cluster_identifier(Option<String>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::cluster_identifier): <p>The cluster identifier of the cluster associated with the endpoint.</p>
9    ///   - [`resource_owner(Option<String>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::resource_owner): <p>The Amazon Web Services account ID of the owner of the cluster.</p>
10    ///   - [`subnet_group_name(Option<String>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::subnet_group_name): <p>The subnet group name where Amazon Redshift chooses to deploy the endpoint.</p>
11    ///   - [`endpoint_status(Option<String>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::endpoint_status): <p>The status of the endpoint.</p>
12    ///   - [`endpoint_name(Option<String>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::endpoint_name): <p>The name of the endpoint.</p>
13    ///   - [`endpoint_create_time(Option<DateTime>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::endpoint_create_time): <p>The time (UTC) that the endpoint was created.</p>
14    ///   - [`port(Option<i32>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::port): <p>The port number on which the cluster accepts incoming connections.</p>
15    ///   - [`address(Option<String>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::address): <p>The DNS address of the endpoint.</p>
16    ///   - [`vpc_security_groups(Option<Vec::<VpcSecurityGroupMembership>>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::vpc_security_groups): <p>The security groups associated with the endpoint.</p>
17    ///   - [`vpc_endpoint(Option<VpcEndpoint>)`](crate::operation::delete_endpoint_access::DeleteEndpointAccessOutput::vpc_endpoint): <p>The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.</p>
18    /// - On failure, responds with [`SdkError<DeleteEndpointAccessError>`](crate::operation::delete_endpoint_access::DeleteEndpointAccessError)
19    pub fn delete_endpoint_access(&self) -> crate::operation::delete_endpoint_access::builders::DeleteEndpointAccessFluentBuilder {
20        crate::operation::delete_endpoint_access::builders::DeleteEndpointAccessFluentBuilder::new(self.handle.clone())
21    }
22}