pub struct CreateVpcRequestBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> CreateVpcRequestBuilder<S>
impl<S: State> CreateVpcRequestBuilder<S>
Sourcepub fn build(self) -> CreateVpcRequestwhere
S: IsComplete,
pub fn build(self) -> CreateVpcRequestwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn cidr_block(
self,
value: String,
) -> CreateVpcRequestBuilder<SetCidrBlock<S>>where
S::CidrBlock: IsUnset,
pub fn cidr_block(
self,
value: String,
) -> CreateVpcRequestBuilder<SetCidrBlock<S>>where
S::CidrBlock: IsUnset,
Required.
Sourcepub fn instance_tenancy(
self,
value: String,
) -> CreateVpcRequestBuilder<SetInstanceTenancy<S>>where
S::InstanceTenancy: IsUnset,
pub fn instance_tenancy(
self,
value: String,
) -> CreateVpcRequestBuilder<SetInstanceTenancy<S>>where
S::InstanceTenancy: IsUnset,
Sourcepub fn maybe_instance_tenancy(
self,
value: Option<String>,
) -> CreateVpcRequestBuilder<SetInstanceTenancy<S>>where
S::InstanceTenancy: IsUnset,
pub fn maybe_instance_tenancy(
self,
value: Option<String>,
) -> CreateVpcRequestBuilder<SetInstanceTenancy<S>>where
S::InstanceTenancy: IsUnset,
Sourcepub fn amazon_provided_ipv6_cidr_block(
self,
value: bool,
) -> CreateVpcRequestBuilder<SetAmazonProvidedIpv6CidrBlock<S>>where
S::AmazonProvidedIpv6CidrBlock: IsUnset,
pub fn amazon_provided_ipv6_cidr_block(
self,
value: bool,
) -> CreateVpcRequestBuilder<SetAmazonProvidedIpv6CidrBlock<S>>where
S::AmazonProvidedIpv6CidrBlock: IsUnset,
Sourcepub fn maybe_amazon_provided_ipv6_cidr_block(
self,
value: Option<bool>,
) -> CreateVpcRequestBuilder<SetAmazonProvidedIpv6CidrBlock<S>>where
S::AmazonProvidedIpv6CidrBlock: IsUnset,
pub fn maybe_amazon_provided_ipv6_cidr_block(
self,
value: Option<bool>,
) -> CreateVpcRequestBuilder<SetAmazonProvidedIpv6CidrBlock<S>>where
S::AmazonProvidedIpv6CidrBlock: IsUnset,
Sourcepub fn tag_specifications(
self,
value: Vec<TagSpecification>,
) -> CreateVpcRequestBuilder<SetTagSpecifications<S>>where
S::TagSpecifications: IsUnset,
pub fn tag_specifications(
self,
value: Vec<TagSpecification>,
) -> CreateVpcRequestBuilder<SetTagSpecifications<S>>where
S::TagSpecifications: IsUnset,
Sourcepub fn maybe_tag_specifications(
self,
value: Option<Vec<TagSpecification>>,
) -> CreateVpcRequestBuilder<SetTagSpecifications<S>>where
S::TagSpecifications: IsUnset,
pub fn maybe_tag_specifications(
self,
value: Option<Vec<TagSpecification>>,
) -> CreateVpcRequestBuilder<SetTagSpecifications<S>>where
S::TagSpecifications: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for CreateVpcRequestBuilder<S>
impl<S> RefUnwindSafe for CreateVpcRequestBuilder<S>
impl<S> Send for CreateVpcRequestBuilder<S>
impl<S> Sync for CreateVpcRequestBuilder<S>
impl<S> Unpin for CreateVpcRequestBuilder<S>
impl<S> UnsafeUnpin for CreateVpcRequestBuilder<S>
impl<S> UnwindSafe for CreateVpcRequestBuilder<S>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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.