Struct aws_sdk_tnb::types::UpdateSolNetworkModify
source · #[non_exhaustive]pub struct UpdateSolNetworkModify {
pub vnf_instance_id: String,
pub vnf_configurable_properties: Document,
}Expand description
Information parameters and/or the configurable properties for a network function.
A network function instance is a function in a function package .
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.vnf_instance_id: StringID of the network function instance.
A network function instance is a function in a function package .
vnf_configurable_properties: DocumentProvides values for the configurable properties declared in the function package descriptor.
Implementations§
source§impl UpdateSolNetworkModify
impl UpdateSolNetworkModify
sourcepub fn vnf_instance_id(&self) -> &str
pub fn vnf_instance_id(&self) -> &str
ID of the network function instance.
A network function instance is a function in a function package .
sourcepub fn vnf_configurable_properties(&self) -> &Document
pub fn vnf_configurable_properties(&self) -> &Document
Provides values for the configurable properties declared in the function package descriptor.
source§impl UpdateSolNetworkModify
impl UpdateSolNetworkModify
sourcepub fn builder() -> UpdateSolNetworkModifyBuilder
pub fn builder() -> UpdateSolNetworkModifyBuilder
Creates a new builder-style object to manufacture UpdateSolNetworkModify.
Trait Implementations§
source§impl Clone for UpdateSolNetworkModify
impl Clone for UpdateSolNetworkModify
source§fn clone(&self) -> UpdateSolNetworkModify
fn clone(&self) -> UpdateSolNetworkModify
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 Debug for UpdateSolNetworkModify
impl Debug for UpdateSolNetworkModify
source§impl PartialEq for UpdateSolNetworkModify
impl PartialEq for UpdateSolNetworkModify
source§fn eq(&self, other: &UpdateSolNetworkModify) -> bool
fn eq(&self, other: &UpdateSolNetworkModify) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateSolNetworkModify
Auto Trait Implementations§
impl RefUnwindSafe for UpdateSolNetworkModify
impl Send for UpdateSolNetworkModify
impl Sync for UpdateSolNetworkModify
impl Unpin for UpdateSolNetworkModify
impl UnwindSafe for UpdateSolNetworkModify
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.