Struct aws_sdk_devicefarm::operation::update_vpce_configuration::builders::UpdateVpceConfigurationInputBuilder
source · #[non_exhaustive]pub struct UpdateVpceConfigurationInputBuilder { /* private fields */ }Expand description
A builder for UpdateVpceConfigurationInput.
Implementations§
source§impl UpdateVpceConfigurationInputBuilder
impl UpdateVpceConfigurationInputBuilder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the VPC endpoint configuration you want to update.
This field is required.sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the VPC endpoint configuration you want to update.
sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the VPC endpoint configuration you want to update.
sourcepub fn vpce_configuration_name(self, input: impl Into<String>) -> Self
pub fn vpce_configuration_name(self, input: impl Into<String>) -> Self
The friendly name you give to your VPC endpoint configuration to manage your configurations more easily.
sourcepub fn set_vpce_configuration_name(self, input: Option<String>) -> Self
pub fn set_vpce_configuration_name(self, input: Option<String>) -> Self
The friendly name you give to your VPC endpoint configuration to manage your configurations more easily.
sourcepub fn get_vpce_configuration_name(&self) -> &Option<String>
pub fn get_vpce_configuration_name(&self) -> &Option<String>
The friendly name you give to your VPC endpoint configuration to manage your configurations more easily.
sourcepub fn vpce_service_name(self, input: impl Into<String>) -> Self
pub fn vpce_service_name(self, input: impl Into<String>) -> Self
The name of the VPC endpoint service running in your AWS account that you want Device Farm to test.
sourcepub fn set_vpce_service_name(self, input: Option<String>) -> Self
pub fn set_vpce_service_name(self, input: Option<String>) -> Self
The name of the VPC endpoint service running in your AWS account that you want Device Farm to test.
sourcepub fn get_vpce_service_name(&self) -> &Option<String>
pub fn get_vpce_service_name(&self) -> &Option<String>
The name of the VPC endpoint service running in your AWS account that you want Device Farm to test.
sourcepub fn service_dns_name(self, input: impl Into<String>) -> Self
pub fn service_dns_name(self, input: impl Into<String>) -> Self
The DNS (domain) name used to connect to your private service in your VPC. The DNS name must not already be in use on the internet.
sourcepub fn set_service_dns_name(self, input: Option<String>) -> Self
pub fn set_service_dns_name(self, input: Option<String>) -> Self
The DNS (domain) name used to connect to your private service in your VPC. The DNS name must not already be in use on the internet.
sourcepub fn get_service_dns_name(&self) -> &Option<String>
pub fn get_service_dns_name(&self) -> &Option<String>
The DNS (domain) name used to connect to your private service in your VPC. The DNS name must not already be in use on the internet.
sourcepub fn vpce_configuration_description(self, input: impl Into<String>) -> Self
pub fn vpce_configuration_description(self, input: impl Into<String>) -> Self
An optional description that provides details about your VPC endpoint configuration.
sourcepub fn set_vpce_configuration_description(self, input: Option<String>) -> Self
pub fn set_vpce_configuration_description(self, input: Option<String>) -> Self
An optional description that provides details about your VPC endpoint configuration.
sourcepub fn get_vpce_configuration_description(&self) -> &Option<String>
pub fn get_vpce_configuration_description(&self) -> &Option<String>
An optional description that provides details about your VPC endpoint configuration.
sourcepub fn build(self) -> Result<UpdateVpceConfigurationInput, BuildError>
pub fn build(self) -> Result<UpdateVpceConfigurationInput, BuildError>
Consumes the builder and constructs a UpdateVpceConfigurationInput.
source§impl UpdateVpceConfigurationInputBuilder
impl UpdateVpceConfigurationInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateVpceConfigurationOutput, SdkError<UpdateVPCEConfigurationError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateVpceConfigurationOutput, SdkError<UpdateVPCEConfigurationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateVpceConfigurationInputBuilder
impl Clone for UpdateVpceConfigurationInputBuilder
source§fn clone(&self) -> UpdateVpceConfigurationInputBuilder
fn clone(&self) -> UpdateVpceConfigurationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateVpceConfigurationInputBuilder
impl Default for UpdateVpceConfigurationInputBuilder
source§fn default() -> UpdateVpceConfigurationInputBuilder
fn default() -> UpdateVpceConfigurationInputBuilder
source§impl PartialEq for UpdateVpceConfigurationInputBuilder
impl PartialEq for UpdateVpceConfigurationInputBuilder
source§fn eq(&self, other: &UpdateVpceConfigurationInputBuilder) -> bool
fn eq(&self, other: &UpdateVpceConfigurationInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateVpceConfigurationInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateVpceConfigurationInputBuilder
impl RefUnwindSafe for UpdateVpceConfigurationInputBuilder
impl Send for UpdateVpceConfigurationInputBuilder
impl Sync for UpdateVpceConfigurationInputBuilder
impl Unpin for UpdateVpceConfigurationInputBuilder
impl UnwindSafe for UpdateVpceConfigurationInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more