Struct aws_sdk_finspace::operation::update_kx_environment_network::UpdateKxEnvironmentNetworkInput
source · #[non_exhaustive]pub struct UpdateKxEnvironmentNetworkInput {
pub environment_id: Option<String>,
pub transit_gateway_configuration: Option<TransitGatewayConfiguration>,
pub custom_dns_configuration: Option<Vec<CustomDnsServer>>,
pub client_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.environment_id: Option<String>A unique identifier for the kdb environment.
transit_gateway_configuration: Option<TransitGatewayConfiguration>Specifies the transit gateway and network configuration to connect the kdb environment to an internal network.
custom_dns_configuration: Option<Vec<CustomDnsServer>>A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers.
client_token: Option<String>A token that ensures idempotency. This token expires in 10 minutes.
Implementations§
source§impl UpdateKxEnvironmentNetworkInput
impl UpdateKxEnvironmentNetworkInput
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
A unique identifier for the kdb environment.
sourcepub fn transit_gateway_configuration(
&self
) -> Option<&TransitGatewayConfiguration>
pub fn 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) -> &[CustomDnsServer]
pub fn custom_dns_configuration(&self) -> &[CustomDnsServer]
A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .custom_dns_configuration.is_none().
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A token that ensures idempotency. This token expires in 10 minutes.
source§impl UpdateKxEnvironmentNetworkInput
impl UpdateKxEnvironmentNetworkInput
sourcepub fn builder() -> UpdateKxEnvironmentNetworkInputBuilder
pub fn builder() -> UpdateKxEnvironmentNetworkInputBuilder
Creates a new builder-style object to manufacture UpdateKxEnvironmentNetworkInput.
Trait Implementations§
source§impl Clone for UpdateKxEnvironmentNetworkInput
impl Clone for UpdateKxEnvironmentNetworkInput
source§fn clone(&self) -> UpdateKxEnvironmentNetworkInput
fn clone(&self) -> UpdateKxEnvironmentNetworkInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateKxEnvironmentNetworkInput
impl PartialEq for UpdateKxEnvironmentNetworkInput
source§fn eq(&self, other: &UpdateKxEnvironmentNetworkInput) -> bool
fn eq(&self, other: &UpdateKxEnvironmentNetworkInput) -> bool
self and other values to be equal, and is used
by ==.