Struct aws_sdk_emrcontainers::types::Endpoint
source · #[non_exhaustive]pub struct Endpoint {Show 18 fields
pub id: Option<String>,
pub name: Option<String>,
pub arn: Option<String>,
pub virtual_cluster_id: Option<String>,
pub type: Option<String>,
pub state: Option<EndpointState>,
pub release_label: Option<String>,
pub execution_role_arn: Option<String>,
pub certificate_arn: Option<String>,
pub certificate_authority: Option<Certificate>,
pub configuration_overrides: Option<ConfigurationOverrides>,
pub server_url: Option<String>,
pub created_at: Option<DateTime>,
pub security_group: Option<String>,
pub subnet_ids: Option<Vec<String>>,
pub state_details: Option<String>,
pub failure_reason: Option<FailureReason>,
pub tags: Option<HashMap<String, String>>,
}Expand description
This entity represents the endpoint that is managed by Amazon EMR on EKS.
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 endpoint.
name: Option<String>The name of the endpoint.
arn: Option<String>The ARN of the endpoint.
virtual_cluster_id: Option<String>The ID of the endpoint's virtual cluster.
type: Option<String>The type of the endpoint.
state: Option<EndpointState>The state of the endpoint.
release_label: Option<String>The EMR release version to be used for the endpoint.
execution_role_arn: Option<String>The execution role ARN of the endpoint.
certificate_arn: Option<String>The certificate ARN of the endpoint. This field is under deprecation and will be removed in future.
The certificate generated by emr control plane on customer behalf to secure the managed endpoint.
configuration_overrides: Option<ConfigurationOverrides>The configuration settings that are used to override existing configurations for endpoints.
server_url: Option<String>The server URL of the endpoint.
created_at: Option<DateTime>The date and time when the endpoint was created.
security_group: Option<String>The security group configuration of the endpoint.
subnet_ids: Option<Vec<String>>The subnet IDs of the endpoint.
state_details: Option<String>Additional details of the endpoint state.
failure_reason: Option<FailureReason>The reasons why the endpoint has failed.
The tags of the endpoint.
Implementations§
source§impl Endpoint
impl Endpoint
sourcepub fn virtual_cluster_id(&self) -> Option<&str>
pub fn virtual_cluster_id(&self) -> Option<&str>
The ID of the endpoint's virtual cluster.
sourcepub fn state(&self) -> Option<&EndpointState>
pub fn state(&self) -> Option<&EndpointState>
The state of the endpoint.
sourcepub fn release_label(&self) -> Option<&str>
pub fn release_label(&self) -> Option<&str>
The EMR release version to be used for the endpoint.
sourcepub fn execution_role_arn(&self) -> Option<&str>
pub fn execution_role_arn(&self) -> Option<&str>
The execution role ARN of the endpoint.
sourcepub fn certificate_arn(&self) -> Option<&str>
👎Deprecated: Customer provided certificate-arn is deprecated and would be removed in future.
pub fn certificate_arn(&self) -> Option<&str>
The certificate ARN of the endpoint. This field is under deprecation and will be removed in future.
The certificate generated by emr control plane on customer behalf to secure the managed endpoint.
sourcepub fn configuration_overrides(&self) -> Option<&ConfigurationOverrides>
pub fn configuration_overrides(&self) -> Option<&ConfigurationOverrides>
The configuration settings that are used to override existing configurations for endpoints.
sourcepub fn server_url(&self) -> Option<&str>
pub fn server_url(&self) -> Option<&str>
The server URL of the endpoint.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The date and time when the endpoint was created.
sourcepub fn security_group(&self) -> Option<&str>
pub fn security_group(&self) -> Option<&str>
The security group configuration of the endpoint.
sourcepub fn subnet_ids(&self) -> Option<&[String]>
pub fn subnet_ids(&self) -> Option<&[String]>
The subnet IDs of the endpoint.
sourcepub fn state_details(&self) -> Option<&str>
pub fn state_details(&self) -> Option<&str>
Additional details of the endpoint state.
sourcepub fn failure_reason(&self) -> Option<&FailureReason>
pub fn failure_reason(&self) -> Option<&FailureReason>
The reasons why the endpoint has failed.
The tags of the endpoint.