Struct aws_sdk_apigatewayv2::input::ExportApiInput
source · #[non_exhaustive]pub struct ExportApiInput { /* private fields */ }Implementations§
source§impl ExportApiInput
impl ExportApiInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ExportApi, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ExportApi, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ExportApi>
Examples found in repository?
src/client.rs (line 4989)
4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::ExportApi,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::ExportApiError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// 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](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::ExportApiOutput,
aws_smithy_http::result::SdkError<crate::error::ExportApiError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExportApiInput.
source§impl ExportApiInput
impl ExportApiInput
sourcepub fn export_version(&self) -> Option<&str>
pub fn export_version(&self) -> Option<&str>
The version of the API Gateway export algorithm. API Gateway uses the latest version by default. Currently, the only supported version is 1.0.
sourcepub fn include_extensions(&self) -> bool
pub fn include_extensions(&self) -> bool
Specifies whether to include API Gateway extensions in the exported API definition. API Gateway extensions are included by default.
sourcepub fn output_type(&self) -> Option<&str>
pub fn output_type(&self) -> Option<&str>
The output type of the exported definition file. Valid values are JSON and YAML.
sourcepub fn specification(&self) -> Option<&str>
pub fn specification(&self) -> Option<&str>
The version of the API specification to use. OAS30, for OpenAPI 3.0, is the only supported value.
sourcepub fn stage_name(&self) -> Option<&str>
pub fn stage_name(&self) -> Option<&str>
The name of the API stage to export. If you don't specify this property, a representation of the latest API configuration is exported.
Trait Implementations§
source§impl Clone for ExportApiInput
impl Clone for ExportApiInput
source§fn clone(&self) -> ExportApiInput
fn clone(&self) -> ExportApiInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more