Struct aws_sdk_apigatewayv2::input::ExportApiInput  
source · [−]#[non_exhaustive]pub struct ExportApiInput {
    pub api_id: Option<String>,
    pub export_version: Option<String>,
    pub include_extensions: bool,
    pub output_type: Option<String>,
    pub specification: Option<String>,
    pub stage_name: Option<String>,
}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_id: Option<String>The API identifier.
export_version: Option<String>The version of the API Gateway export algorithm. API Gateway uses the latest version by default. Currently, the only supported version is 1.0.
include_extensions: boolSpecifies whether to include API Gateway extensions in the exported API definition. API Gateway extensions are included by default.
output_type: Option<String>The output type of the exported definition file. Valid values are JSON and YAML.
specification: Option<String>The version of the API specification to use. OAS30, for OpenAPI 3.0, is the only supported value.
stage_name: Option<String>The name of the API stage to export. If you don't specify this property, a representation of the latest API configuration is exported.
Implementations
sourceimpl ExportApiInput
 
impl ExportApiInput
sourcepub async fn make_operation(
    &self, 
    _config: &Config
) -> Result<Operation<ExportApi, AwsErrorRetryPolicy>, BuildError>
 
pub async fn make_operation(
    &self, 
    _config: &Config
) -> Result<Operation<ExportApi, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ExportApi>
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExportApiInput.
sourceimpl 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
sourceimpl Clone for ExportApiInput
 
impl Clone for ExportApiInput
sourcefn clone(&self) -> ExportApiInput
 
fn clone(&self) -> ExportApiInput
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 ExportApiInput
 
impl Debug for ExportApiInput
sourceimpl PartialEq<ExportApiInput> for ExportApiInput
 
impl PartialEq<ExportApiInput> for ExportApiInput
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &ExportApiInput) -> bool
 
fn ne(&self, other: &ExportApiInput) -> bool
This method tests for !=.
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
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