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
source§fn eq(&self, other: &NamespaceSummary) -> bool
fn eq(&self, other: &NamespaceSummary) -> bool
self and other values to be equal, and is used
by ==.