Struct aws_sdk_ec2::operation::modify_vpc_peering_connection_options::builders::ModifyVpcPeeringConnectionOptionsOutputBuilder
source · #[non_exhaustive]pub struct ModifyVpcPeeringConnectionOptionsOutputBuilder { /* private fields */ }
Expand description
A builder for ModifyVpcPeeringConnectionOptionsOutput
.
Implementations§
source§impl ModifyVpcPeeringConnectionOptionsOutputBuilder
impl ModifyVpcPeeringConnectionOptionsOutputBuilder
sourcepub fn accepter_peering_connection_options(
self,
input: PeeringConnectionOptions,
) -> Self
pub fn accepter_peering_connection_options( self, input: PeeringConnectionOptions, ) -> Self
Information about the VPC peering connection options for the accepter VPC.
sourcepub fn set_accepter_peering_connection_options(
self,
input: Option<PeeringConnectionOptions>,
) -> Self
pub fn set_accepter_peering_connection_options( self, input: Option<PeeringConnectionOptions>, ) -> Self
Information about the VPC peering connection options for the accepter VPC.
sourcepub fn get_accepter_peering_connection_options(
&self,
) -> &Option<PeeringConnectionOptions>
pub fn get_accepter_peering_connection_options( &self, ) -> &Option<PeeringConnectionOptions>
Information about the VPC peering connection options for the accepter VPC.
sourcepub fn requester_peering_connection_options(
self,
input: PeeringConnectionOptions,
) -> Self
pub fn requester_peering_connection_options( self, input: PeeringConnectionOptions, ) -> Self
Information about the VPC peering connection options for the requester VPC.
sourcepub fn set_requester_peering_connection_options(
self,
input: Option<PeeringConnectionOptions>,
) -> Self
pub fn set_requester_peering_connection_options( self, input: Option<PeeringConnectionOptions>, ) -> Self
Information about the VPC peering connection options for the requester VPC.
sourcepub fn get_requester_peering_connection_options(
&self,
) -> &Option<PeeringConnectionOptions>
pub fn get_requester_peering_connection_options( &self, ) -> &Option<PeeringConnectionOptions>
Information about the VPC peering connection options for the requester VPC.
sourcepub fn build(self) -> ModifyVpcPeeringConnectionOptionsOutput
pub fn build(self) -> ModifyVpcPeeringConnectionOptionsOutput
Consumes the builder and constructs a ModifyVpcPeeringConnectionOptionsOutput
.
Trait Implementations§
source§impl Clone for ModifyVpcPeeringConnectionOptionsOutputBuilder
impl Clone for ModifyVpcPeeringConnectionOptionsOutputBuilder
source§fn clone(&self) -> ModifyVpcPeeringConnectionOptionsOutputBuilder
fn clone(&self) -> ModifyVpcPeeringConnectionOptionsOutputBuilder
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 ModifyVpcPeeringConnectionOptionsOutputBuilder
impl Default for ModifyVpcPeeringConnectionOptionsOutputBuilder
source§fn default() -> ModifyVpcPeeringConnectionOptionsOutputBuilder
fn default() -> ModifyVpcPeeringConnectionOptionsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ModifyVpcPeeringConnectionOptionsOutputBuilder
impl PartialEq for ModifyVpcPeeringConnectionOptionsOutputBuilder
source§fn eq(&self, other: &ModifyVpcPeeringConnectionOptionsOutputBuilder) -> bool
fn eq(&self, other: &ModifyVpcPeeringConnectionOptionsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifyVpcPeeringConnectionOptionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ModifyVpcPeeringConnectionOptionsOutputBuilder
impl RefUnwindSafe for ModifyVpcPeeringConnectionOptionsOutputBuilder
impl Send for ModifyVpcPeeringConnectionOptionsOutputBuilder
impl Sync for ModifyVpcPeeringConnectionOptionsOutputBuilder
impl Unpin for ModifyVpcPeeringConnectionOptionsOutputBuilder
impl UnwindSafe for ModifyVpcPeeringConnectionOptionsOutputBuilder
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.