#[non_exhaustive]pub struct CreateModelInputBuilder { /* private fields */ }
Expand description
A builder for CreateModelInput
.
Implementations§
source§impl CreateModelInputBuilder
impl CreateModelInputBuilder
sourcepub fn api_id(self, input: impl Into<String>) -> Self
pub fn api_id(self, input: impl Into<String>) -> Self
The API identifier.
This field is required.sourcepub fn set_api_id(self, input: Option<String>) -> Self
pub fn set_api_id(self, input: Option<String>) -> Self
The API identifier.
sourcepub fn get_api_id(&self) -> &Option<String>
pub fn get_api_id(&self) -> &Option<String>
The API identifier.
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, for example, "application/json".
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, for example, "application/json".
sourcepub fn get_content_type(&self) -> &Option<String>
pub fn get_content_type(&self) -> &Option<String>
The content-type for the model, for example, "application/json".
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 name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the model. Must be alphanumeric.
This field is required.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 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.
This field is required.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 build(self) -> Result<CreateModelInput, BuildError>
pub fn build(self) -> Result<CreateModelInput, BuildError>
Consumes the builder and constructs a CreateModelInput
.
source§impl CreateModelInputBuilder
impl CreateModelInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateModelOutput, SdkError<CreateModelError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateModelOutput, SdkError<CreateModelError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateModelInputBuilder
impl Clone for CreateModelInputBuilder
source§fn clone(&self) -> CreateModelInputBuilder
fn clone(&self) -> CreateModelInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateModelInputBuilder
impl Debug for CreateModelInputBuilder
source§impl Default for CreateModelInputBuilder
impl Default for CreateModelInputBuilder
source§fn default() -> CreateModelInputBuilder
fn default() -> CreateModelInputBuilder
source§impl PartialEq for CreateModelInputBuilder
impl PartialEq for CreateModelInputBuilder
source§fn eq(&self, other: &CreateModelInputBuilder) -> bool
fn eq(&self, other: &CreateModelInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.