#[non_exhaustive]pub struct EksSourceClusterNamespace {
pub eks_cluster_arn: String,
pub namespace: String,
}Expand description
The input source of the namespace that is located on your Amazon Elastic Kubernetes Service cluster.
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.eks_cluster_arn: StringAmazon Resource Name (ARN) of the Amazon Elastic Kubernetes Service cluster. The format for this ARN is: arn:aws:eks:region:account-id:cluster/cluster-name. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
namespace: StringName of the namespace that is located on your Amazon Elastic Kubernetes Service cluster.
Implementations§
source§impl EksSourceClusterNamespace
impl EksSourceClusterNamespace
sourcepub fn eks_cluster_arn(&self) -> &str
pub fn eks_cluster_arn(&self) -> &str
Amazon Resource Name (ARN) of the Amazon Elastic Kubernetes Service cluster. The format for this ARN is: arn:aws:eks:region:account-id:cluster/cluster-name. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
source§impl EksSourceClusterNamespace
impl EksSourceClusterNamespace
sourcepub fn builder() -> EksSourceClusterNamespaceBuilder
pub fn builder() -> EksSourceClusterNamespaceBuilder
Creates a new builder-style object to manufacture EksSourceClusterNamespace.
Trait Implementations§
source§impl Clone for EksSourceClusterNamespace
impl Clone for EksSourceClusterNamespace
source§fn clone(&self) -> EksSourceClusterNamespace
fn clone(&self) -> EksSourceClusterNamespace
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for EksSourceClusterNamespace
impl Debug for EksSourceClusterNamespace
source§impl PartialEq for EksSourceClusterNamespace
impl PartialEq for EksSourceClusterNamespace
source§fn eq(&self, other: &EksSourceClusterNamespace) -> bool
fn eq(&self, other: &EksSourceClusterNamespace) -> bool
self and other values to be equal, and is used
by ==.