Struct aws_sdk_apigatewayv2::operation::create_api::CreateApiOutput
source · #[non_exhaustive]pub struct CreateApiOutput { /* private fields */ }
Implementations§
source§impl 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.
source§impl CreateApiOutput
impl CreateApiOutput
sourcepub fn builder() -> CreateApiOutputBuilder
pub fn builder() -> CreateApiOutputBuilder
Creates a new builder-style object to manufacture CreateApiOutput
.
Trait Implementations§
source§impl Clone for CreateApiOutput
impl Clone for CreateApiOutput
source§fn clone(&self) -> CreateApiOutput
fn clone(&self) -> CreateApiOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateApiOutput
impl Debug for CreateApiOutput
source§impl PartialEq<CreateApiOutput> for CreateApiOutput
impl PartialEq<CreateApiOutput> for CreateApiOutput
source§fn eq(&self, other: &CreateApiOutput) -> bool
fn eq(&self, other: &CreateApiOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateApiOutput
impl RequestId for CreateApiOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.