#[non_exhaustive]pub struct ReimportApiOutput {Show 16 fields
    pub api_endpoint: Option<String>,
    pub api_gateway_managed: Option<bool>,
    pub api_id: Option<String>,
    pub api_key_selection_expression: Option<String>,
    pub cors_configuration: Option<Cors>,
    pub created_date: Option<DateTime>,
    pub description: Option<String>,
    pub disable_schema_validation: Option<bool>,
    pub disable_execute_api_endpoint: Option<bool>,
    pub import_info: Option<Vec<String>>,
    pub name: Option<String>,
    pub protocol_type: Option<ProtocolType>,
    pub route_selection_expression: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub version: Option<String>,
    pub warnings: Option<Vec<String>>,
    /* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.api_endpoint: Option<String>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.
api_gateway_managed: Option<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.
api_id: Option<String>The API ID.
api_key_selection_expression: Option<String>An API key selection expression. Supported only for WebSocket APIs. See API Key Selection Expressions.
cors_configuration: Option<Cors>A CORS configuration. Supported only for HTTP APIs.
created_date: Option<DateTime>The timestamp when the API was created.
description: Option<String>The description of the API.
disable_schema_validation: Option<bool>Avoid validating models when creating a deployment. Supported only for WebSocket APIs.
disable_execute_api_endpoint: Option<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.
import_info: Option<Vec<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.
name: Option<String>The name of the API.
protocol_type: Option<ProtocolType>The API protocol.
route_selection_expression: Option<String>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.
version: Option<String>A version identifier for the API.
warnings: Option<Vec<String>>The warning messages reported when failonwarnings is turned on during API import.
Implementations§
source§impl ReimportApiOutput
 
impl ReimportApiOutput
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) -> Option<bool>
 
pub fn api_gateway_managed(&self) -> Option<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) -> Option<bool>
 
pub fn disable_schema_validation(&self) -> Option<bool>
Avoid validating models when creating a deployment. Supported only for WebSocket APIs.
sourcepub fn disable_execute_api_endpoint(&self) -> Option<bool>
 
pub fn disable_execute_api_endpoint(&self) -> Option<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 ReimportApiOutput
 
impl ReimportApiOutput
sourcepub fn builder() -> ReimportApiOutputBuilder
 
pub fn builder() -> ReimportApiOutputBuilder
Creates a new builder-style object to manufacture ReimportApiOutput.
Trait Implementations§
source§impl Clone for ReimportApiOutput
 
impl Clone for ReimportApiOutput
source§fn clone(&self) -> ReimportApiOutput
 
fn clone(&self) -> ReimportApiOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ReimportApiOutput
 
impl Debug for ReimportApiOutput
source§impl PartialEq<ReimportApiOutput> for ReimportApiOutput
 
impl PartialEq<ReimportApiOutput> for ReimportApiOutput
source§fn eq(&self, other: &ReimportApiOutput) -> bool
 
fn eq(&self, other: &ReimportApiOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ReimportApiOutput
 
impl RequestId for ReimportApiOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
None if the service could not be reached.