Struct aws_sdk_apigateway::operation::create_request_validator::builders::CreateRequestValidatorFluentBuilder
source · pub struct CreateRequestValidatorFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateRequestValidator
.
Creates a RequestValidator of a given RestApi.
Implementations§
source§impl CreateRequestValidatorFluentBuilder
impl CreateRequestValidatorFluentBuilder
sourcepub fn as_input(&self) -> &CreateRequestValidatorInputBuilder
pub fn as_input(&self) -> &CreateRequestValidatorInputBuilder
Access the CreateRequestValidator as a reference.
sourcepub async fn send(
self
) -> Result<CreateRequestValidatorOutput, SdkError<CreateRequestValidatorError, HttpResponse>>
pub async fn send( self ) -> Result<CreateRequestValidatorOutput, SdkError<CreateRequestValidatorError, 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<CreateRequestValidatorOutput, CreateRequestValidatorError>, SdkError<CreateRequestValidatorError>>
pub async fn customize( self ) -> Result<CustomizableOperation<CreateRequestValidatorOutput, CreateRequestValidatorError>, SdkError<CreateRequestValidatorError>>
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 string identifier of the associated RestApi.
sourcepub fn set_rest_api_id(self, input: Option<String>) -> Self
pub fn set_rest_api_id(self, input: Option<String>) -> Self
The string identifier of the associated RestApi.
sourcepub fn get_rest_api_id(&self) -> &Option<String>
pub fn get_rest_api_id(&self) -> &Option<String>
The string identifier of the associated RestApi.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the to-be-created RequestValidator.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the to-be-created RequestValidator.
sourcepub fn validate_request_body(self, input: bool) -> Self
pub fn validate_request_body(self, input: bool) -> Self
A Boolean flag to indicate whether to validate request body according to the configured model schema for the method (true
) or not (false
).
sourcepub fn set_validate_request_body(self, input: Option<bool>) -> Self
pub fn set_validate_request_body(self, input: Option<bool>) -> Self
A Boolean flag to indicate whether to validate request body according to the configured model schema for the method (true
) or not (false
).
sourcepub fn get_validate_request_body(&self) -> &Option<bool>
pub fn get_validate_request_body(&self) -> &Option<bool>
A Boolean flag to indicate whether to validate request body according to the configured model schema for the method (true
) or not (false
).
sourcepub fn validate_request_parameters(self, input: bool) -> Self
pub fn validate_request_parameters(self, input: bool) -> Self
A Boolean flag to indicate whether to validate request parameters, true
, or not false
.
sourcepub fn set_validate_request_parameters(self, input: Option<bool>) -> Self
pub fn set_validate_request_parameters(self, input: Option<bool>) -> Self
A Boolean flag to indicate whether to validate request parameters, true
, or not false
.
sourcepub fn get_validate_request_parameters(&self) -> &Option<bool>
pub fn get_validate_request_parameters(&self) -> &Option<bool>
A Boolean flag to indicate whether to validate request parameters, true
, or not false
.
Trait Implementations§
source§impl Clone for CreateRequestValidatorFluentBuilder
impl Clone for CreateRequestValidatorFluentBuilder
source§fn clone(&self) -> CreateRequestValidatorFluentBuilder
fn clone(&self) -> CreateRequestValidatorFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more