#[non_exhaustive]pub struct UpdateEndpointInput {
pub endpoint_arn: Option<String>,
pub desired_model_arn: Option<String>,
pub desired_inference_units: Option<i32>,
pub desired_data_access_role_arn: Option<String>,
pub flywheel_arn: Option<String>,
}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.endpoint_arn: Option<String>The Amazon Resource Number (ARN) of the endpoint being updated.
desired_model_arn: Option<String>The ARN of the new model to use when updating an existing endpoint.
desired_inference_units: Option<i32>The desired number of inference units to be used by the model using this endpoint. Each inference unit represents of a throughput of 100 characters per second.
desired_data_access_role_arn: Option<String>Data access role ARN to use in case the new model is encrypted with a customer CMK.
flywheel_arn: Option<String>The Amazon Resource Number (ARN) of the flywheel
Implementations§
source§impl UpdateEndpointInput
impl UpdateEndpointInput
sourcepub fn endpoint_arn(&self) -> Option<&str>
pub fn endpoint_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the endpoint being updated.
sourcepub fn desired_model_arn(&self) -> Option<&str>
pub fn desired_model_arn(&self) -> Option<&str>
The ARN of the new model to use when updating an existing endpoint.
sourcepub fn desired_inference_units(&self) -> Option<i32>
pub fn desired_inference_units(&self) -> Option<i32>
The desired number of inference units to be used by the model using this endpoint. Each inference unit represents of a throughput of 100 characters per second.
sourcepub fn desired_data_access_role_arn(&self) -> Option<&str>
pub fn desired_data_access_role_arn(&self) -> Option<&str>
Data access role ARN to use in case the new model is encrypted with a customer CMK.
sourcepub fn flywheel_arn(&self) -> Option<&str>
pub fn flywheel_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the flywheel
source§impl UpdateEndpointInput
impl UpdateEndpointInput
sourcepub fn builder() -> UpdateEndpointInputBuilder
pub fn builder() -> UpdateEndpointInputBuilder
Creates a new builder-style object to manufacture UpdateEndpointInput.
Trait Implementations§
source§impl Clone for UpdateEndpointInput
impl Clone for UpdateEndpointInput
source§fn clone(&self) -> UpdateEndpointInput
fn clone(&self) -> UpdateEndpointInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateEndpointInput
impl Debug for UpdateEndpointInput
source§impl PartialEq for UpdateEndpointInput
impl PartialEq for UpdateEndpointInput
source§fn eq(&self, other: &UpdateEndpointInput) -> bool
fn eq(&self, other: &UpdateEndpointInput) -> bool
self and other values to be equal, and is used
by ==.