#[non_exhaustive]pub struct CreateSolNetworkInstanceInput {
pub nsd_info_id: Option<String>,
pub ns_name: Option<String>,
pub ns_description: Option<String>,
pub tags: Option<HashMap<String, String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.nsd_info_id: Option<String>ID for network service descriptor.
ns_name: Option<String>Network instance name.
ns_description: Option<String>Network instance description.
A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.
Implementations§
source§impl CreateSolNetworkInstanceInput
impl CreateSolNetworkInstanceInput
sourcepub fn nsd_info_id(&self) -> Option<&str>
pub fn nsd_info_id(&self) -> Option<&str>
ID for network service descriptor.
sourcepub fn ns_description(&self) -> Option<&str>
pub fn ns_description(&self) -> Option<&str>
Network instance description.
A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.
source§impl CreateSolNetworkInstanceInput
impl CreateSolNetworkInstanceInput
sourcepub fn builder() -> CreateSolNetworkInstanceInputBuilder
pub fn builder() -> CreateSolNetworkInstanceInputBuilder
Creates a new builder-style object to manufacture CreateSolNetworkInstanceInput.
Trait Implementations§
source§impl Clone for CreateSolNetworkInstanceInput
impl Clone for CreateSolNetworkInstanceInput
source§fn clone(&self) -> CreateSolNetworkInstanceInput
fn clone(&self) -> CreateSolNetworkInstanceInput
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 PartialEq for CreateSolNetworkInstanceInput
impl PartialEq for CreateSolNetworkInstanceInput
source§fn eq(&self, other: &CreateSolNetworkInstanceInput) -> bool
fn eq(&self, other: &CreateSolNetworkInstanceInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateSolNetworkInstanceInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateSolNetworkInstanceInput
impl Send for CreateSolNetworkInstanceInput
impl Sync for CreateSolNetworkInstanceInput
impl Unpin for CreateSolNetworkInstanceInput
impl UnwindSafe for CreateSolNetworkInstanceInput
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>
Creates a shared type from an unshared type.