pub struct AwsNetwork {
pub region: String,
pub existing_network_key: OnceLock<NetworkResources>,
pub existing_network_id: OnceLock<NetworkResources>,
/* private fields */
}Fields§
§region: String§existing_network_key: OnceLock<NetworkResources>§existing_network_id: OnceLock<NetworkResources>Implementations§
Source§impl AwsNetwork
impl AwsNetwork
pub fn new( region: impl Into<String>, existing_vpc: Option<NetworkResources>, ) -> Arc<Self>
pub fn update_from_outputs(&self, resource_result: &ResourceResult)
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for AwsNetwork
impl RefUnwindSafe for AwsNetwork
impl Send for AwsNetwork
impl Sync for AwsNetwork
impl Unpin for AwsNetwork
impl UnsafeUnpin for AwsNetwork
impl UnwindSafe for AwsNetwork
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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> ToSinkBuild for T
impl<T> ToSinkBuild for T
§fn iter_to_sink_build(self) -> SendIterBuild<Self>
fn iter_to_sink_build(self) -> SendIterBuild<Self>
§fn stream_to_sink_build(self) -> SendStreamBuild<Self>where
Self: Sized + Stream,
fn stream_to_sink_build(self) -> SendStreamBuild<Self>where
Self: Sized + Stream,
Starts a [
SinkBuild] adaptor chain to send all items from self as a [Stream].