Struct aws_sdk_apigatewayv2::output::CreateApiOutput
source · [−]#[non_exhaustive]pub struct CreateApiOutput { /* private fields */ }Implementations
sourceimpl CreateApiOutput
impl CreateApiOutput
sourcepub fn api_endpoint(&self) -> Option<&str>
pub fn api_endpoint(&self) -> Option<&str>
The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com. The stage name is typically appended to this URI to form a complete path to a deployed API stage.
sourcepub fn api_gateway_managed(&self) -> bool
pub fn api_gateway_managed(&self) -> bool
Specifies whether an API is managed by API Gateway. You can't update or delete a managed API by using API Gateway. A managed API can be deleted only through the tooling or service that created it.
sourcepub fn api_key_selection_expression(&self) -> Option<&str>
pub fn api_key_selection_expression(&self) -> Option<&str>
An API key selection expression. Supported only for WebSocket APIs. See API Key Selection Expressions.
sourcepub fn cors_configuration(&self) -> Option<&Cors>
pub fn cors_configuration(&self) -> Option<&Cors>
A CORS configuration. Supported only for HTTP APIs.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The timestamp when the API was created.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the API.
sourcepub fn disable_schema_validation(&self) -> bool
pub fn disable_schema_validation(&self) -> bool
Avoid validating models when creating a deployment. Supported only for WebSocket APIs.
sourcepub fn disable_execute_api_endpoint(&self) -> bool
pub fn disable_execute_api_endpoint(&self) -> bool
Specifies whether clients can invoke your API by using the default execute-api endpoint. By default, clients can invoke your API with the default https://{api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint.
sourcepub fn import_info(&self) -> Option<&[String]>
pub fn import_info(&self) -> Option<&[String]>
The validation information during API import. This may include particular properties of your OpenAPI definition which are ignored during import. Supported only for HTTP APIs.
sourcepub fn protocol_type(&self) -> Option<&ProtocolType>
pub fn protocol_type(&self) -> Option<&ProtocolType>
The API protocol.
sourcepub fn route_selection_expression(&self) -> Option<&str>
pub fn route_selection_expression(&self) -> Option<&str>
The route selection expression for the API. For HTTP APIs, the routeSelectionExpression must be ${request.method} ${request.path}. If not provided, this will be the default for HTTP APIs. This property is required for WebSocket APIs.
A collection of tags associated with the API.
sourceimpl CreateApiOutput
impl CreateApiOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateApiOutput.
Trait Implementations
sourceimpl Clone for CreateApiOutput
impl Clone for CreateApiOutput
sourcefn clone(&self) -> CreateApiOutput
fn clone(&self) -> CreateApiOutput
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
sourceimpl Debug for CreateApiOutput
impl Debug for CreateApiOutput
sourceimpl PartialEq<CreateApiOutput> for CreateApiOutput
impl PartialEq<CreateApiOutput> for CreateApiOutput
sourcefn eq(&self, other: &CreateApiOutput) -> bool
fn eq(&self, other: &CreateApiOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CreateApiOutput) -> bool
fn ne(&self, other: &CreateApiOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for CreateApiOutput
Auto Trait Implementations
impl RefUnwindSafe for CreateApiOutput
impl Send for CreateApiOutput
impl Sync for CreateApiOutput
impl Unpin for CreateApiOutput
impl UnwindSafe for CreateApiOutput
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