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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[CustomDnsServer]>
pub fn custom_dns_configuration(&self) -> Option<&[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) -> 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq for UpdateKxEnvironmentNetworkInput
impl PartialEq for UpdateKxEnvironmentNetworkInput
source§fn eq(&self, other: &UpdateKxEnvironmentNetworkInput) -> bool
fn eq(&self, other: &UpdateKxEnvironmentNetworkInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateKxEnvironmentNetworkInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateKxEnvironmentNetworkInput
impl Send for UpdateKxEnvironmentNetworkInput
impl Sync for UpdateKxEnvironmentNetworkInput
impl Unpin for UpdateKxEnvironmentNetworkInput
impl UnwindSafe for UpdateKxEnvironmentNetworkInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more