#[non_exhaustive]pub struct CreateModelInputBuilder { /* private fields */ }Expand description
A builder for CreateModelInput.
Implementations§
source§impl CreateModelInputBuilder
impl CreateModelInputBuilder
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.
This field is required.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.
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 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. The maximum size of the model is 400 KB.
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. The maximum size of the model is 400 KB.
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. The maximum size of the model is 400 KB.
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.
This field is required.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.
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 ==.impl StructuralPartialEq for CreateModelInputBuilder
Auto Trait Implementations§
impl Freeze for CreateModelInputBuilder
impl RefUnwindSafe for CreateModelInputBuilder
impl Send for CreateModelInputBuilder
impl Sync for CreateModelInputBuilder
impl Unpin for CreateModelInputBuilder
impl UnwindSafe for CreateModelInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more