#[non_exhaustive]pub struct CreateSolNetworkInstanceOutput {
pub id: String,
pub arn: String,
pub nsd_info_id: String,
pub ns_instance_name: String,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}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.id: StringNetwork instance ID.
arn: StringNetwork instance ARN.
nsd_info_id: StringNetwork service descriptor ID.
ns_instance_name: StringNetwork instance name.
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 CreateSolNetworkInstanceOutput
impl CreateSolNetworkInstanceOutput
sourcepub fn nsd_info_id(&self) -> &str
pub fn nsd_info_id(&self) -> &str
Network service descriptor ID.
sourcepub fn ns_instance_name(&self) -> &str
pub fn ns_instance_name(&self) -> &str
Network instance name.
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 CreateSolNetworkInstanceOutput
impl CreateSolNetworkInstanceOutput
sourcepub fn builder() -> CreateSolNetworkInstanceOutputBuilder
pub fn builder() -> CreateSolNetworkInstanceOutputBuilder
Creates a new builder-style object to manufacture CreateSolNetworkInstanceOutput.
Trait Implementations§
source§impl Clone for CreateSolNetworkInstanceOutput
impl Clone for CreateSolNetworkInstanceOutput
source§fn clone(&self) -> CreateSolNetworkInstanceOutput
fn clone(&self) -> CreateSolNetworkInstanceOutput
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 CreateSolNetworkInstanceOutput
impl PartialEq for CreateSolNetworkInstanceOutput
source§fn eq(&self, other: &CreateSolNetworkInstanceOutput) -> bool
fn eq(&self, other: &CreateSolNetworkInstanceOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateSolNetworkInstanceOutput
impl RequestId for CreateSolNetworkInstanceOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for CreateSolNetworkInstanceOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateSolNetworkInstanceOutput
impl Send for CreateSolNetworkInstanceOutput
impl Sync for CreateSolNetworkInstanceOutput
impl Unpin for CreateSolNetworkInstanceOutput
impl UnwindSafe for CreateSolNetworkInstanceOutput
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.