Struct aws_sdk_tnb::operation::validate_sol_network_package_content::ValidateSolNetworkPackageContentOutput
source · #[non_exhaustive]pub struct ValidateSolNetworkPackageContentOutput {
pub id: Option<String>,
pub arn: Option<String>,
pub nsd_id: Option<String>,
pub nsd_name: Option<String>,
pub nsd_version: Option<String>,
pub vnf_pkg_ids: Option<Vec<String>>,
pub metadata: Option<ValidateSolNetworkPackageContentMetadata>,
/* 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: Option<String>Network package ID.
arn: Option<String>Network package ARN.
nsd_id: Option<String>Network service descriptor ID.
nsd_name: Option<String>Network service descriptor name.
nsd_version: Option<String>Network service descriptor version.
vnf_pkg_ids: Option<Vec<String>>Function package IDs.
metadata: Option<ValidateSolNetworkPackageContentMetadata>Network package metadata.
Implementations§
source§impl ValidateSolNetworkPackageContentOutput
impl ValidateSolNetworkPackageContentOutput
sourcepub fn nsd_version(&self) -> Option<&str>
pub fn nsd_version(&self) -> Option<&str>
Network service descriptor version.
sourcepub fn vnf_pkg_ids(&self) -> Option<&[String]>
pub fn vnf_pkg_ids(&self) -> Option<&[String]>
Function package IDs.
sourcepub fn metadata(&self) -> Option<&ValidateSolNetworkPackageContentMetadata>
pub fn metadata(&self) -> Option<&ValidateSolNetworkPackageContentMetadata>
Network package metadata.
source§impl ValidateSolNetworkPackageContentOutput
impl ValidateSolNetworkPackageContentOutput
sourcepub fn builder() -> ValidateSolNetworkPackageContentOutputBuilder
pub fn builder() -> ValidateSolNetworkPackageContentOutputBuilder
Creates a new builder-style object to manufacture ValidateSolNetworkPackageContentOutput.
Trait Implementations§
source§impl Clone for ValidateSolNetworkPackageContentOutput
impl Clone for ValidateSolNetworkPackageContentOutput
source§fn clone(&self) -> ValidateSolNetworkPackageContentOutput
fn clone(&self) -> ValidateSolNetworkPackageContentOutput
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 ValidateSolNetworkPackageContentOutput
impl PartialEq for ValidateSolNetworkPackageContentOutput
source§fn eq(&self, other: &ValidateSolNetworkPackageContentOutput) -> bool
fn eq(&self, other: &ValidateSolNetworkPackageContentOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ValidateSolNetworkPackageContentOutput
impl RequestId for ValidateSolNetworkPackageContentOutput
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 ValidateSolNetworkPackageContentOutput
Auto Trait Implementations§
impl RefUnwindSafe for ValidateSolNetworkPackageContentOutput
impl Send for ValidateSolNetworkPackageContentOutput
impl Sync for ValidateSolNetworkPackageContentOutput
impl Unpin for ValidateSolNetworkPackageContentOutput
impl UnwindSafe for ValidateSolNetworkPackageContentOutput
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