Struct aws_sdk_ec2::operation::create_vpc_endpoint_service_configuration::builders::CreateVpcEndpointServiceConfigurationOutputBuilder
source · #[non_exhaustive]pub struct CreateVpcEndpointServiceConfigurationOutputBuilder { /* private fields */ }
Expand description
A builder for CreateVpcEndpointServiceConfigurationOutput
.
Implementations§
source§impl CreateVpcEndpointServiceConfigurationOutputBuilder
impl CreateVpcEndpointServiceConfigurationOutputBuilder
sourcepub fn service_configuration(self, input: ServiceConfiguration) -> Self
pub fn service_configuration(self, input: ServiceConfiguration) -> Self
Information about the service configuration.
sourcepub fn set_service_configuration(
self,
input: Option<ServiceConfiguration>,
) -> Self
pub fn set_service_configuration( self, input: Option<ServiceConfiguration>, ) -> Self
Information about the service configuration.
sourcepub fn get_service_configuration(&self) -> &Option<ServiceConfiguration>
pub fn get_service_configuration(&self) -> &Option<ServiceConfiguration>
Information about the service configuration.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
sourcepub fn build(self) -> CreateVpcEndpointServiceConfigurationOutput
pub fn build(self) -> CreateVpcEndpointServiceConfigurationOutput
Consumes the builder and constructs a CreateVpcEndpointServiceConfigurationOutput
.
Trait Implementations§
source§impl Clone for CreateVpcEndpointServiceConfigurationOutputBuilder
impl Clone for CreateVpcEndpointServiceConfigurationOutputBuilder
source§fn clone(&self) -> CreateVpcEndpointServiceConfigurationOutputBuilder
fn clone(&self) -> CreateVpcEndpointServiceConfigurationOutputBuilder
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 Default for CreateVpcEndpointServiceConfigurationOutputBuilder
impl Default for CreateVpcEndpointServiceConfigurationOutputBuilder
source§fn default() -> CreateVpcEndpointServiceConfigurationOutputBuilder
fn default() -> CreateVpcEndpointServiceConfigurationOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CreateVpcEndpointServiceConfigurationOutputBuilder
impl PartialEq for CreateVpcEndpointServiceConfigurationOutputBuilder
source§fn eq(&self, other: &CreateVpcEndpointServiceConfigurationOutputBuilder) -> bool
fn eq(&self, other: &CreateVpcEndpointServiceConfigurationOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateVpcEndpointServiceConfigurationOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateVpcEndpointServiceConfigurationOutputBuilder
impl RefUnwindSafe for CreateVpcEndpointServiceConfigurationOutputBuilder
impl Send for CreateVpcEndpointServiceConfigurationOutputBuilder
impl Sync for CreateVpcEndpointServiceConfigurationOutputBuilder
impl Unpin for CreateVpcEndpointServiceConfigurationOutputBuilder
impl UnwindSafe for CreateVpcEndpointServiceConfigurationOutputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.