Struct aws_sdk_servicediscovery::types::builders::NamespaceBuilder
source · #[non_exhaustive]pub struct NamespaceBuilder { /* private fields */ }Expand description
A builder for Namespace.
Implementations§
source§impl NamespaceBuilder
impl NamespaceBuilder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) that Cloud Map assigns to the namespace when you create it.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) that Cloud Map assigns to the namespace when you create it.
sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) that Cloud Map assigns to the namespace when you create it.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the namespace, such as example.com.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the namespace, such as example.com.
sourcepub fn type(self, input: NamespaceType) -> Self
pub fn type(self, input: NamespaceType) -> Self
The type of the namespace. The methods for discovering instances depends on the value that you specify:
- HTTP
-
Instances can be discovered only programmatically, using the Cloud Map
DiscoverInstancesAPI. - DNS_PUBLIC
-
Instances can be discovered using public DNS queries and using the
DiscoverInstancesAPI. - DNS_PRIVATE
-
Instances can be discovered using DNS queries in VPCs and using the
DiscoverInstancesAPI.
sourcepub fn set_type(self, input: Option<NamespaceType>) -> Self
pub fn set_type(self, input: Option<NamespaceType>) -> Self
The type of the namespace. The methods for discovering instances depends on the value that you specify:
- HTTP
-
Instances can be discovered only programmatically, using the Cloud Map
DiscoverInstancesAPI. - DNS_PUBLIC
-
Instances can be discovered using public DNS queries and using the
DiscoverInstancesAPI. - DNS_PRIVATE
-
Instances can be discovered using DNS queries in VPCs and using the
DiscoverInstancesAPI.
sourcepub fn get_type(&self) -> &Option<NamespaceType>
pub fn get_type(&self) -> &Option<NamespaceType>
The type of the namespace. The methods for discovering instances depends on the value that you specify:
- HTTP
-
Instances can be discovered only programmatically, using the Cloud Map
DiscoverInstancesAPI. - DNS_PUBLIC
-
Instances can be discovered using public DNS queries and using the
DiscoverInstancesAPI. - DNS_PRIVATE
-
Instances can be discovered using DNS queries in VPCs and using the
DiscoverInstancesAPI.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description that you specify for the namespace when you create it.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description that you specify for the namespace when you create it.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description that you specify for the namespace when you create it.
sourcepub fn service_count(self, input: i32) -> Self
pub fn service_count(self, input: i32) -> Self
The number of services that are associated with the namespace.
sourcepub fn set_service_count(self, input: Option<i32>) -> Self
pub fn set_service_count(self, input: Option<i32>) -> Self
The number of services that are associated with the namespace.
sourcepub fn get_service_count(&self) -> &Option<i32>
pub fn get_service_count(&self) -> &Option<i32>
The number of services that are associated with the namespace.
sourcepub fn properties(self, input: NamespaceProperties) -> Self
pub fn properties(self, input: NamespaceProperties) -> Self
A complex type that contains information that's specific to the type of the namespace.
sourcepub fn set_properties(self, input: Option<NamespaceProperties>) -> Self
pub fn set_properties(self, input: Option<NamespaceProperties>) -> Self
A complex type that contains information that's specific to the type of the namespace.
sourcepub fn get_properties(&self) -> &Option<NamespaceProperties>
pub fn get_properties(&self) -> &Option<NamespaceProperties>
A complex type that contains information that's specific to the type of the namespace.
sourcepub fn create_date(self, input: DateTime) -> Self
pub fn create_date(self, input: DateTime) -> Self
The date that the namespace was created, in Unix date/time format and Coordinated Universal Time (UTC). The value of CreateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
sourcepub fn set_create_date(self, input: Option<DateTime>) -> Self
pub fn set_create_date(self, input: Option<DateTime>) -> Self
The date that the namespace was created, in Unix date/time format and Coordinated Universal Time (UTC). The value of CreateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
sourcepub fn get_create_date(&self) -> &Option<DateTime>
pub fn get_create_date(&self) -> &Option<DateTime>
The date that the namespace was created, in Unix date/time format and Coordinated Universal Time (UTC). The value of CreateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
sourcepub fn creator_request_id(self, input: impl Into<String>) -> Self
pub fn creator_request_id(self, input: impl Into<String>) -> Self
A unique string that identifies the request and that allows failed requests to be retried without the risk of running an operation twice.
sourcepub fn set_creator_request_id(self, input: Option<String>) -> Self
pub fn set_creator_request_id(self, input: Option<String>) -> Self
A unique string that identifies the request and that allows failed requests to be retried without the risk of running an operation twice.
sourcepub fn get_creator_request_id(&self) -> &Option<String>
pub fn get_creator_request_id(&self) -> &Option<String>
A unique string that identifies the request and that allows failed requests to be retried without the risk of running an operation twice.
Trait Implementations§
source§impl Clone for NamespaceBuilder
impl Clone for NamespaceBuilder
source§fn clone(&self) -> NamespaceBuilder
fn clone(&self) -> NamespaceBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for NamespaceBuilder
impl Debug for NamespaceBuilder
source§impl Default for NamespaceBuilder
impl Default for NamespaceBuilder
source§fn default() -> NamespaceBuilder
fn default() -> NamespaceBuilder
source§impl PartialEq for NamespaceBuilder
impl PartialEq for NamespaceBuilder
source§fn eq(&self, other: &NamespaceBuilder) -> bool
fn eq(&self, other: &NamespaceBuilder) -> bool
self and other values to be equal, and is used
by ==.