Struct aws_sdk_servicediscovery::types::NamespaceSummary
source · #[non_exhaustive]pub struct NamespaceSummary {
pub id: Option<String>,
pub arn: Option<String>,
pub name: Option<String>,
pub type: Option<NamespaceType>,
pub description: Option<String>,
pub service_count: Option<i32>,
pub properties: Option<NamespaceProperties>,
pub create_date: Option<DateTime>,
}Expand description
A complex type that contains information about a namespace.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Option<String>The ID of the namespace.
arn: Option<String>The Amazon Resource Name (ARN) that Cloud Map assigns to the namespace when you create it.
name: Option<String>The name of the namespace. When you create a namespace, Cloud Map automatically creates a Route 53 hosted zone that has the same name as the namespace.
type: Option<NamespaceType>The type of the namespace, either public or private.
description: Option<String>A description for the namespace.
service_count: Option<i32>The number of services that were created using the namespace.
properties: Option<NamespaceProperties>The properties of the namespace.
create_date: Option<DateTime>The date and time that the namespace was created.
Implementations§
source§impl NamespaceSummary
impl NamespaceSummary
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) that Cloud Map assigns to the namespace when you create it.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the namespace. When you create a namespace, Cloud Map automatically creates a Route 53 hosted zone that has the same name as the namespace.
sourcepub fn type(&self) -> Option<&NamespaceType>
pub fn type(&self) -> Option<&NamespaceType>
The type of the namespace, either public or private.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the namespace.
sourcepub fn service_count(&self) -> Option<i32>
pub fn service_count(&self) -> Option<i32>
The number of services that were created using the namespace.
sourcepub fn properties(&self) -> Option<&NamespaceProperties>
pub fn properties(&self) -> Option<&NamespaceProperties>
The properties of the namespace.
sourcepub fn create_date(&self) -> Option<&DateTime>
pub fn create_date(&self) -> Option<&DateTime>
The date and time that the namespace was created.
source§impl NamespaceSummary
impl NamespaceSummary
sourcepub fn builder() -> NamespaceSummaryBuilder
pub fn builder() -> NamespaceSummaryBuilder
Creates a new builder-style object to manufacture NamespaceSummary.
Trait Implementations§
source§impl Clone for NamespaceSummary
impl Clone for NamespaceSummary
source§fn clone(&self) -> NamespaceSummary
fn clone(&self) -> NamespaceSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for NamespaceSummary
impl Debug for NamespaceSummary
source§impl PartialEq for NamespaceSummary
impl PartialEq for NamespaceSummary
impl StructuralPartialEq for NamespaceSummary
Auto Trait Implementations§
impl Freeze for NamespaceSummary
impl RefUnwindSafe for NamespaceSummary
impl Send for NamespaceSummary
impl Sync for NamespaceSummary
impl Unpin for NamespaceSummary
impl UnwindSafe for NamespaceSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more