Struct aws_sdk_sagemaker::input::CreateEndpointInput [−][src]
#[non_exhaustive]pub struct CreateEndpointInput {
pub endpoint_name: Option<String>,
pub endpoint_config_name: Option<String>,
pub deployment_config: Option<DeploymentConfig>,
pub tags: Option<Vec<Tag>>,
}
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_name: Option<String>
The name of the endpoint.The name must be unique within an Amazon Web Services Region in your Amazon Web Services
account. The name is case-insensitive in CreateEndpoint
, but the case is
preserved and must be matched in .
endpoint_config_name: Option<String>
The name of an endpoint configuration. For more information, see CreateEndpointConfig.
deployment_config: Option<DeploymentConfig>
The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations.
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEndpoint, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateEndpoint, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateEndpoint
>
Creates a new builder-style object to manufacture CreateEndpointInput
The name of the endpoint.The name must be unique within an Amazon Web Services Region in your Amazon Web Services
account. The name is case-insensitive in CreateEndpoint
, but the case is
preserved and must be matched in .
The name of an endpoint configuration. For more information, see CreateEndpointConfig.
The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations.
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateEndpointInput
impl Send for CreateEndpointInput
impl Sync for CreateEndpointInput
impl Unpin for CreateEndpointInput
impl UnwindSafe for CreateEndpointInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more