Struct aws_sdk_apigatewayv2::client::fluent_builders::CreateRoute
source · [−]pub struct CreateRoute { /* private fields */ }Expand description
Fluent builder constructing a request to CreateRoute.
Creates a Route for an API.
Implementations
sourceimpl CreateRoute
impl CreateRoute
sourcepub async fn send(self) -> Result<CreateRouteOutput, SdkError<CreateRouteError>>
pub async fn send(self) -> Result<CreateRouteOutput, SdkError<CreateRouteError>>
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 set_api_id(self, input: Option<String>) -> Self
pub fn set_api_id(self, input: Option<String>) -> Self
The API identifier.
sourcepub fn api_key_required(self, input: bool) -> Self
pub fn api_key_required(self, input: bool) -> Self
Specifies whether an API key is required for the route. Supported only for WebSocket APIs.
sourcepub fn set_api_key_required(self, input: Option<bool>) -> Self
pub fn set_api_key_required(self, input: Option<bool>) -> Self
Specifies whether an API key is required for the route. Supported only for WebSocket APIs.
Appends an item to AuthorizationScopes.
To override the contents of this collection use set_authorization_scopes.
The authorization scopes supported by this route.
The authorization scopes supported by this route.
The authorization type for the route. For WebSocket APIs, valid values are NONE for open access, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer For HTTP APIs, valid values are NONE for open access, JWT for using JSON Web Tokens, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer.
The authorization type for the route. For WebSocket APIs, valid values are NONE for open access, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer For HTTP APIs, valid values are NONE for open access, JWT for using JSON Web Tokens, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer.
The identifier of the Authorizer resource to be associated with this route. The authorizer identifier is generated by API Gateway when you created the authorizer.
The identifier of the Authorizer resource to be associated with this route. The authorizer identifier is generated by API Gateway when you created the authorizer.
sourcepub fn model_selection_expression(self, input: impl Into<String>) -> Self
pub fn model_selection_expression(self, input: impl Into<String>) -> Self
The model selection expression for the route. Supported only for WebSocket APIs.
sourcepub fn set_model_selection_expression(self, input: Option<String>) -> Self
pub fn set_model_selection_expression(self, input: Option<String>) -> Self
The model selection expression for the route. Supported only for WebSocket APIs.
sourcepub fn operation_name(self, input: impl Into<String>) -> Self
pub fn operation_name(self, input: impl Into<String>) -> Self
The operation name for the route.
sourcepub fn set_operation_name(self, input: Option<String>) -> Self
pub fn set_operation_name(self, input: Option<String>) -> Self
The operation name for the route.
sourcepub fn request_models(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn request_models(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to RequestModels.
To override the contents of this collection use set_request_models.
The request models for the route. Supported only for WebSocket APIs.
sourcepub fn set_request_models(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_request_models(self, input: Option<HashMap<String, String>>) -> Self
The request models for the route. Supported only for WebSocket APIs.
sourcepub fn request_parameters(
self,
k: impl Into<String>,
v: ParameterConstraints
) -> Self
pub fn request_parameters(
self,
k: impl Into<String>,
v: ParameterConstraints
) -> Self
Adds a key-value pair to RequestParameters.
To override the contents of this collection use set_request_parameters.
The request parameters for the route. Supported only for WebSocket APIs.
sourcepub fn set_request_parameters(
self,
input: Option<HashMap<String, ParameterConstraints>>
) -> Self
pub fn set_request_parameters(
self,
input: Option<HashMap<String, ParameterConstraints>>
) -> Self
The request parameters for the route. Supported only for WebSocket APIs.
sourcepub fn set_route_key(self, input: Option<String>) -> Self
pub fn set_route_key(self, input: Option<String>) -> Self
The route key for the route.
sourcepub fn route_response_selection_expression(
self,
input: impl Into<String>
) -> Self
pub fn route_response_selection_expression(
self,
input: impl Into<String>
) -> Self
The route response selection expression for the route. Supported only for WebSocket APIs.
sourcepub fn set_route_response_selection_expression(
self,
input: Option<String>
) -> Self
pub fn set_route_response_selection_expression(
self,
input: Option<String>
) -> Self
The route response selection expression for the route. Supported only for WebSocket APIs.
sourcepub fn set_target(self, input: Option<String>) -> Self
pub fn set_target(self, input: Option<String>) -> Self
The target for the route.
Trait Implementations
sourceimpl Clone for CreateRoute
impl Clone for CreateRoute
sourcefn clone(&self) -> CreateRoute
fn clone(&self) -> CreateRoute
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl !RefUnwindSafe for CreateRoute
impl Send for CreateRoute
impl Sync for CreateRoute
impl Unpin for CreateRoute
impl !UnwindSafe for CreateRoute
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more