pub struct CreateModelFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateModel
.
Adds a new Model resource to an existing RestApi resource.
Implementations§
source§impl CreateModelFluentBuilder
impl CreateModelFluentBuilder
sourcepub fn as_input(&self) -> &CreateModelInputBuilder
pub fn as_input(&self) -> &CreateModelInputBuilder
Access the CreateModel as a reference.
sourcepub async fn send(
self
) -> Result<CreateModelOutput, SdkError<CreateModelError, HttpResponse>>
pub async fn send( self ) -> Result<CreateModelOutput, SdkError<CreateModelError, 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 async fn customize(
self
) -> Result<CustomizableOperation<CreateModelOutput, CreateModelError>, SdkError<CreateModelError>>
pub async fn customize( self ) -> Result<CustomizableOperation<CreateModelOutput, CreateModelError>, SdkError<CreateModelError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn rest_api_id(self, input: impl Into<String>) -> Self
pub fn rest_api_id(self, input: impl Into<String>) -> Self
The RestApi identifier under which the Model will be created.
sourcepub fn set_rest_api_id(self, input: Option<String>) -> Self
pub fn set_rest_api_id(self, input: Option<String>) -> Self
The RestApi identifier under which the Model will be created.
sourcepub fn get_rest_api_id(&self) -> &Option<String>
pub fn get_rest_api_id(&self) -> &Option<String>
The RestApi identifier under which the Model will be created.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the model. Must be alphanumeric.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the model. Must be alphanumeric.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the model.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the model.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the model.
sourcepub fn schema(self, input: impl Into<String>) -> Self
pub fn schema(self, input: impl Into<String>) -> Self
The schema for the model. For application/json
models, this should be JSON schema draft 4 model.
sourcepub fn set_schema(self, input: Option<String>) -> Self
pub fn set_schema(self, input: Option<String>) -> Self
The schema for the model. For application/json
models, this should be JSON schema draft 4 model.
sourcepub fn get_schema(&self) -> &Option<String>
pub fn get_schema(&self) -> &Option<String>
The schema for the model. For application/json
models, this should be JSON schema draft 4 model.
sourcepub fn content_type(self, input: impl Into<String>) -> Self
pub fn content_type(self, input: impl Into<String>) -> Self
The content-type for the model.
sourcepub fn set_content_type(self, input: Option<String>) -> Self
pub fn set_content_type(self, input: Option<String>) -> Self
The content-type for the model.
sourcepub fn get_content_type(&self) -> &Option<String>
pub fn get_content_type(&self) -> &Option<String>
The content-type for the model.
Trait Implementations§
source§impl Clone for CreateModelFluentBuilder
impl Clone for CreateModelFluentBuilder
source§fn clone(&self) -> CreateModelFluentBuilder
fn clone(&self) -> CreateModelFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more