Struct aws_sdk_finspace::operation::update_kx_environment_network::builders::UpdateKxEnvironmentNetworkFluentBuilder
source · pub struct UpdateKxEnvironmentNetworkFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateKxEnvironmentNetwork.
Updates environment network to connect to your internal network by using a transit gateway. This API supports request to create a transit gateway attachment from FinSpace VPC to your transit gateway ID and create a custom Route-53 outbound resolvers.
Once you send a request to update a network, you cannot change it again. Network update might require termination of any clusters that are running in the existing network.
Implementations§
source§impl UpdateKxEnvironmentNetworkFluentBuilder
impl UpdateKxEnvironmentNetworkFluentBuilder
sourcepub fn as_input(&self) -> &UpdateKxEnvironmentNetworkInputBuilder
pub fn as_input(&self) -> &UpdateKxEnvironmentNetworkInputBuilder
Access the UpdateKxEnvironmentNetwork as a reference.
sourcepub async fn send(
self
) -> Result<UpdateKxEnvironmentNetworkOutput, SdkError<UpdateKxEnvironmentNetworkError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateKxEnvironmentNetworkOutput, SdkError<UpdateKxEnvironmentNetworkError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateKxEnvironmentNetworkOutput, UpdateKxEnvironmentNetworkError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateKxEnvironmentNetworkOutput, UpdateKxEnvironmentNetworkError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn environment_id(self, input: impl Into<String>) -> Self
pub fn environment_id(self, input: impl Into<String>) -> Self
A unique identifier for the kdb environment.
sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
A unique identifier for the kdb environment.
sourcepub fn get_environment_id(&self) -> &Option<String>
pub fn get_environment_id(&self) -> &Option<String>
A unique identifier for the kdb environment.
sourcepub fn transit_gateway_configuration(
self,
input: TransitGatewayConfiguration
) -> Self
pub fn transit_gateway_configuration( self, input: TransitGatewayConfiguration ) -> Self
Specifies the transit gateway and network configuration to connect the kdb environment to an internal network.
sourcepub fn set_transit_gateway_configuration(
self,
input: Option<TransitGatewayConfiguration>
) -> Self
pub fn set_transit_gateway_configuration( self, input: Option<TransitGatewayConfiguration> ) -> Self
Specifies the transit gateway and network configuration to connect the kdb environment to an internal network.
sourcepub fn get_transit_gateway_configuration(
&self
) -> &Option<TransitGatewayConfiguration>
pub fn get_transit_gateway_configuration( &self ) -> &Option<TransitGatewayConfiguration>
Specifies the transit gateway and network configuration to connect the kdb environment to an internal network.
sourcepub fn custom_dns_configuration(self, input: CustomDnsServer) -> Self
pub fn custom_dns_configuration(self, input: CustomDnsServer) -> Self
Appends an item to customDNSConfiguration.
To override the contents of this collection use set_custom_dns_configuration.
A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers.
sourcepub fn set_custom_dns_configuration(
self,
input: Option<Vec<CustomDnsServer>>
) -> Self
pub fn set_custom_dns_configuration( self, input: Option<Vec<CustomDnsServer>> ) -> Self
A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers.
sourcepub fn get_custom_dns_configuration(&self) -> &Option<Vec<CustomDnsServer>>
pub fn get_custom_dns_configuration(&self) -> &Option<Vec<CustomDnsServer>>
A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A token that ensures idempotency. This token expires in 10 minutes.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A token that ensures idempotency. This token expires in 10 minutes.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
A token that ensures idempotency. This token expires in 10 minutes.
Trait Implementations§
source§impl Clone for UpdateKxEnvironmentNetworkFluentBuilder
impl Clone for UpdateKxEnvironmentNetworkFluentBuilder
source§fn clone(&self) -> UpdateKxEnvironmentNetworkFluentBuilder
fn clone(&self) -> UpdateKxEnvironmentNetworkFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more