[][src]Struct rusoto_comprehend::CreateEndpointRequest

pub struct CreateEndpointRequest {
    pub client_request_token: Option<String>,
    pub desired_inference_units: i64,
    pub endpoint_name: String,
    pub model_arn: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

client_request_token: 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.

desired_inference_units: i64

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.

endpoint_name: String

This is the descriptive suffix that becomes part of the EndpointArn used for all subsequent requests to this resource.

model_arn: String

The Amazon Resource Number (ARN) of the model to which the endpoint will be attached.

tags: Option<Vec<Tag>>

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.

Trait Implementations

impl Clone for CreateEndpointRequest[src]

impl Debug for CreateEndpointRequest[src]

impl Default for CreateEndpointRequest[src]

impl PartialEq<CreateEndpointRequest> for CreateEndpointRequest[src]

impl Serialize for CreateEndpointRequest[src]

impl StructuralPartialEq for CreateEndpointRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.