Struct aws_sdk_comprehend::client::fluent_builders::CreateEndpoint
source · [−]pub struct CreateEndpoint { /* private fields */ }Expand description
Fluent builder constructing a request to CreateEndpoint.
Creates a model-specific endpoint for synchronous inference for a previously trained custom model For information about endpoints, see Managing endpoints.
Implementations
sourceimpl CreateEndpoint
impl CreateEndpoint
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateEndpoint, AwsResponseRetryClassifier>, SdkError<CreateEndpointError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateEndpoint, AwsResponseRetryClassifier>, SdkError<CreateEndpointError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateEndpointOutput, SdkError<CreateEndpointError>>
pub async fn send(
self
) -> Result<CreateEndpointOutput, SdkError<CreateEndpointError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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 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 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 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.
Appends an item to Tags.
To override the contents of this collection use set_tags.
Tags associated with the endpoint being created. 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 associated with the endpoint being created. 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 AWS identity and Access Management (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 AWS identity and Access Management (IAM) role that grants Amazon Comprehend read access to trained custom models encrypted with a customer managed key (ModelKmsKeyId).
Trait Implementations
sourceimpl Clone for CreateEndpoint
impl Clone for CreateEndpoint
sourcefn clone(&self) -> CreateEndpoint
fn clone(&self) -> CreateEndpoint
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more