#[non_exhaustive]pub struct ApiGatewayProxyInput { /* private fields */ }Expand description
A wrapper object holding the Amazon API Gateway endpoint input.
Implementations
sourceimpl ApiGatewayProxyInput
 
impl ApiGatewayProxyInput
sourcepub fn endpoint_type(&self) -> Option<&ApiGatewayEndpointType>
 
pub fn endpoint_type(&self) -> Option<&ApiGatewayEndpointType>
The type of endpoint to use for the API Gateway proxy. If no value is specified in the request, the value is set to REGIONAL by default.
If the value is set to PRIVATE in the request, this creates a private API endpoint that is isolated from the public internet. The private endpoint can only be accessed by using Amazon Virtual Private Cloud (Amazon VPC) endpoints for Amazon API Gateway that have been granted access. 
sourcepub fn stage_name(&self) -> Option<&str>
 
pub fn stage_name(&self) -> Option<&str>
The name of the API Gateway stage. The name defaults to prod. 
sourceimpl ApiGatewayProxyInput
 
impl ApiGatewayProxyInput
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApiGatewayProxyInput.
Trait Implementations
sourceimpl Clone for ApiGatewayProxyInput
 
impl Clone for ApiGatewayProxyInput
sourcefn clone(&self) -> ApiGatewayProxyInput
 
fn clone(&self) -> ApiGatewayProxyInput
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 moresourceimpl Debug for ApiGatewayProxyInput
 
impl Debug for ApiGatewayProxyInput
sourceimpl PartialEq<ApiGatewayProxyInput> for ApiGatewayProxyInput
 
impl PartialEq<ApiGatewayProxyInput> for ApiGatewayProxyInput
sourcefn eq(&self, other: &ApiGatewayProxyInput) -> bool
 
fn eq(&self, other: &ApiGatewayProxyInput) -> bool
impl StructuralPartialEq for ApiGatewayProxyInput
Auto Trait Implementations
impl RefUnwindSafe for ApiGatewayProxyInput
impl Send for ApiGatewayProxyInput
impl Sync for ApiGatewayProxyInput
impl Unpin for ApiGatewayProxyInput
impl UnwindSafe for ApiGatewayProxyInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    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