Struct aws_sdk_lookoutvision::operation::create_project::builders::CreateProjectFluentBuilder
source · pub struct CreateProjectFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateProject
.
Creates an empty Amazon Lookout for Vision project. After you create the project, add a dataset by calling CreateDataset
.
This operation requires permissions to perform the lookoutvision:CreateProject
operation.
Implementations§
source§impl CreateProjectFluentBuilder
impl CreateProjectFluentBuilder
sourcepub fn as_input(&self) -> &CreateProjectInputBuilder
pub fn as_input(&self) -> &CreateProjectInputBuilder
Access the CreateProject as a reference.
sourcepub async fn send(
self
) -> Result<CreateProjectOutput, SdkError<CreateProjectError, HttpResponse>>
pub async fn send( self ) -> Result<CreateProjectOutput, SdkError<CreateProjectError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<CreateProjectOutput, CreateProjectError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateProjectOutput, CreateProjectError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn project_name(self, input: impl Into<String>) -> Self
pub fn project_name(self, input: impl Into<String>) -> Self
The name for the project.
sourcepub fn set_project_name(self, input: Option<String>) -> Self
pub fn set_project_name(self, input: Option<String>) -> Self
The name for the project.
sourcepub fn get_project_name(&self) -> &Option<String>
pub fn get_project_name(&self) -> &Option<String>
The name for the project.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
ClientToken is an idempotency token that ensures a call to CreateProject
completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from CreateProject
. In this case, safely retry your call to CreateProject
by using the same ClientToken
parameter value.
If you don't supply a value for ClientToken
, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple project creation requests. You'll need to provide your own value for other use cases.
An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken
is considered a new call to CreateProject
. An idempotency token is active for 8 hours.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
ClientToken is an idempotency token that ensures a call to CreateProject
completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from CreateProject
. In this case, safely retry your call to CreateProject
by using the same ClientToken
parameter value.
If you don't supply a value for ClientToken
, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple project creation requests. You'll need to provide your own value for other use cases.
An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken
is considered a new call to CreateProject
. An idempotency token is active for 8 hours.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
ClientToken is an idempotency token that ensures a call to CreateProject
completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from CreateProject
. In this case, safely retry your call to CreateProject
by using the same ClientToken
parameter value.
If you don't supply a value for ClientToken
, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple project creation requests. You'll need to provide your own value for other use cases.
An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken
is considered a new call to CreateProject
. An idempotency token is active for 8 hours.
Trait Implementations§
source§impl Clone for CreateProjectFluentBuilder
impl Clone for CreateProjectFluentBuilder
source§fn clone(&self) -> CreateProjectFluentBuilder
fn clone(&self) -> CreateProjectFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more