aws_sdk_rds/client/
modify_db_proxy_endpoint.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 [`ModifyDBProxyEndpoint`](crate::operation::modify_db_proxy_endpoint::builders::ModifyDBProxyEndpointFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`db_proxy_endpoint_name(impl Into<String>)`](crate::operation::modify_db_proxy_endpoint::builders::ModifyDBProxyEndpointFluentBuilder::db_proxy_endpoint_name) / [`set_db_proxy_endpoint_name(Option<String>)`](crate::operation::modify_db_proxy_endpoint::builders::ModifyDBProxyEndpointFluentBuilder::set_db_proxy_endpoint_name):<br>required: **true**<br><p>The name of the DB proxy sociated with the DB proxy endpoint that you want to modify.</p><br>
7    ///   - [`new_db_proxy_endpoint_name(impl Into<String>)`](crate::operation::modify_db_proxy_endpoint::builders::ModifyDBProxyEndpointFluentBuilder::new_db_proxy_endpoint_name) / [`set_new_db_proxy_endpoint_name(Option<String>)`](crate::operation::modify_db_proxy_endpoint::builders::ModifyDBProxyEndpointFluentBuilder::set_new_db_proxy_endpoint_name):<br>required: **false**<br><p>The new identifier for the <code>DBProxyEndpoint</code>. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.</p><br>
8    ///   - [`vpc_security_group_ids(impl Into<String>)`](crate::operation::modify_db_proxy_endpoint::builders::ModifyDBProxyEndpointFluentBuilder::vpc_security_group_ids) / [`set_vpc_security_group_ids(Option<Vec::<String>>)`](crate::operation::modify_db_proxy_endpoint::builders::ModifyDBProxyEndpointFluentBuilder::set_vpc_security_group_ids):<br>required: **false**<br><p>The VPC security group IDs for the DB proxy endpoint. When the DB proxy endpoint uses a different VPC than the original proxy, you also specify a different set of security group IDs than for the original proxy.</p><br>
9    /// - On success, responds with [`ModifyDbProxyEndpointOutput`](crate::operation::modify_db_proxy_endpoint::ModifyDbProxyEndpointOutput) with field(s):
10    ///   - [`db_proxy_endpoint(Option<DbProxyEndpoint>)`](crate::operation::modify_db_proxy_endpoint::ModifyDbProxyEndpointOutput::db_proxy_endpoint): <p>The <code>DBProxyEndpoint</code> object representing the new settings for the DB proxy endpoint.</p>
11    /// - On failure, responds with [`SdkError<ModifyDBProxyEndpointError>`](crate::operation::modify_db_proxy_endpoint::ModifyDBProxyEndpointError)
12    pub fn modify_db_proxy_endpoint(&self) -> crate::operation::modify_db_proxy_endpoint::builders::ModifyDBProxyEndpointFluentBuilder {
13        crate::operation::modify_db_proxy_endpoint::builders::ModifyDBProxyEndpointFluentBuilder::new(self.handle.clone())
14    }
15}