#[non_exhaustive]pub struct CreateEndpointInputBuilder { /* private fields */ }Expand description
A builder for CreateEndpointInput.
Implementations§
source§impl CreateEndpointInputBuilder
impl CreateEndpointInputBuilder
sourcepub fn endpoint_name(self, input: impl Into<String>) -> Self
pub fn endpoint_name(self, input: impl Into<String>) -> Self
This is the descriptive suffix that becomes part of the EndpointArn used for all subsequent requests to this resource.
sourcepub fn set_endpoint_name(self, input: Option<String>) -> Self
pub fn set_endpoint_name(self, input: Option<String>) -> Self
This is the descriptive suffix that becomes part of the EndpointArn used for all subsequent requests to this resource.
sourcepub fn get_endpoint_name(&self) -> &Option<String>
pub fn get_endpoint_name(&self) -> &Option<String>
This is the descriptive suffix that becomes part of the EndpointArn used for all subsequent requests to this resource.
sourcepub fn model_arn(self, input: impl Into<String>) -> Self
pub fn model_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Number (ARN) of the model to which the endpoint will be attached.
sourcepub fn set_model_arn(self, input: Option<String>) -> Self
pub fn set_model_arn(self, input: Option<String>) -> Self
The Amazon Resource Number (ARN) of the model to which the endpoint will be attached.
sourcepub fn get_model_arn(&self) -> &Option<String>
pub fn get_model_arn(&self) -> &Option<String>
The Amazon Resource Number (ARN) of the model to which the endpoint will be attached.
sourcepub fn desired_inference_units(self, input: i32) -> Self
pub fn desired_inference_units(self, input: i32) -> Self
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 set_desired_inference_units(self, input: Option<i32>) -> Self
pub fn set_desired_inference_units(self, input: Option<i32>) -> Self
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 get_desired_inference_units(&self) -> &Option<i32>
pub fn get_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 client_request_token(self, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
An idempotency token provided by the customer. If this token matches a previous endpoint creation request, Amazon Comprehend will not return a ResourceInUseException.
sourcepub fn set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
An idempotency token provided by the customer. If this token matches a previous endpoint creation request, Amazon Comprehend will not return a ResourceInUseException.
sourcepub fn get_client_request_token(&self) -> &Option<String>
pub fn get_client_request_token(&self) -> &Option<String>
An idempotency token provided by the customer. If this token matches a previous endpoint creation request, Amazon Comprehend will not return a ResourceInUseException.
Appends an item to tags.
To override the contents of this collection use set_tags.
Tags to associate with the endpoint. A tag is a key-value pair that adds metadata to the endpoint. For example, a tag with "Sales" as the key might be added to an endpoint to indicate its use by the sales department.
Tags to associate with the endpoint. A tag is a key-value pair that adds metadata to the endpoint. For example, a tag with "Sales" as the key might be added to an endpoint to indicate its use by the sales department.
Tags to associate with the endpoint. A tag is a key-value pair that adds metadata to the endpoint. For example, a tag with "Sales" as the key might be added to an endpoint to indicate its use by the sales department.
sourcepub fn data_access_role_arn(self, input: impl Into<String>) -> Self
pub fn data_access_role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to trained custom models encrypted with a customer managed key (ModelKmsKeyId).
sourcepub fn set_data_access_role_arn(self, input: Option<String>) -> Self
pub fn set_data_access_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to trained custom models encrypted with a customer managed key (ModelKmsKeyId).
sourcepub fn get_data_access_role_arn(&self) -> &Option<String>
pub fn get_data_access_role_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to trained custom models encrypted with a customer managed key (ModelKmsKeyId).
sourcepub fn flywheel_arn(self, input: impl Into<String>) -> Self
pub fn flywheel_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Number (ARN) of the flywheel to which the endpoint will be attached.
sourcepub fn set_flywheel_arn(self, input: Option<String>) -> Self
pub fn set_flywheel_arn(self, input: Option<String>) -> Self
The Amazon Resource Number (ARN) of the flywheel to which the endpoint will be attached.
sourcepub fn get_flywheel_arn(&self) -> &Option<String>
pub fn get_flywheel_arn(&self) -> &Option<String>
The Amazon Resource Number (ARN) of the flywheel to which the endpoint will be attached.
sourcepub fn build(self) -> Result<CreateEndpointInput, BuildError>
pub fn build(self) -> Result<CreateEndpointInput, BuildError>
Consumes the builder and constructs a CreateEndpointInput.
source§impl CreateEndpointInputBuilder
impl CreateEndpointInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateEndpointOutput, SdkError<CreateEndpointError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateEndpointOutput, SdkError<CreateEndpointError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateEndpointInputBuilder
impl Clone for CreateEndpointInputBuilder
source§fn clone(&self) -> CreateEndpointInputBuilder
fn clone(&self) -> CreateEndpointInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateEndpointInputBuilder
impl Debug for CreateEndpointInputBuilder
source§impl Default for CreateEndpointInputBuilder
impl Default for CreateEndpointInputBuilder
source§fn default() -> CreateEndpointInputBuilder
fn default() -> CreateEndpointInputBuilder
source§impl PartialEq for CreateEndpointInputBuilder
impl PartialEq for CreateEndpointInputBuilder
source§fn eq(&self, other: &CreateEndpointInputBuilder) -> bool
fn eq(&self, other: &CreateEndpointInputBuilder) -> bool
self and other values to be equal, and is used
by ==.