Struct aws_sdk_apigatewayv2::operation::export_api::ExportApiInput
source · #[non_exhaustive]pub struct ExportApiInput { /* private fields */ }Implementations§
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) -> Option<bool>
pub fn include_extensions(&self) -> Option<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.
source§impl ExportApiInput
impl ExportApiInput
sourcepub fn builder() -> ExportApiInputBuilder
pub fn builder() -> ExportApiInputBuilder
Creates a new builder-style object to manufacture ExportApiInput.
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>
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 moresource§impl Debug for ExportApiInput
impl Debug for ExportApiInput
source§impl PartialEq<ExportApiInput> for ExportApiInput
impl PartialEq<ExportApiInput> for ExportApiInput
source§fn eq(&self, other: &ExportApiInput) -> bool
fn eq(&self, other: &ExportApiInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExportApiInput
Auto Trait Implementations§
impl RefUnwindSafe for ExportApiInput
impl Send for ExportApiInput
impl Sync for ExportApiInput
impl Unpin for ExportApiInput
impl UnwindSafe for ExportApiInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more