#[non_exhaustive]pub struct ImportAssetFromApiGatewayApiRequestDetails {
pub api_description: Option<String>,
pub api_id: Option<String>,
pub api_key: Option<String>,
pub api_name: Option<String>,
pub api_specification_md5_hash: Option<String>,
pub data_set_id: Option<String>,
pub protocol_type: Option<ProtocolType>,
pub revision_id: Option<String>,
pub stage: Option<String>,
}Expand description
The request details.
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_description: Option<String>The API description. Markdown supported.
api_id: Option<String>The API Gateway API ID.
api_key: Option<String>The API Gateway API key.
api_name: Option<String>The API name.
api_specification_md5_hash: Option<String>The Base64-encoded MD5 hash of the OpenAPI 3.0 JSON API specification file. It is used to ensure the integrity of the file.
data_set_id: Option<String>The data set ID.
protocol_type: Option<ProtocolType>The protocol type.
revision_id: Option<String>The revision ID.
stage: Option<String>The API stage.
Implementations
sourceimpl ImportAssetFromApiGatewayApiRequestDetails
impl ImportAssetFromApiGatewayApiRequestDetails
sourcepub fn api_description(&self) -> Option<&str>
pub fn api_description(&self) -> Option<&str>
The API description. Markdown supported.
sourcepub fn api_specification_md5_hash(&self) -> Option<&str>
pub fn api_specification_md5_hash(&self) -> Option<&str>
The Base64-encoded MD5 hash of the OpenAPI 3.0 JSON API specification file. It is used to ensure the integrity of the file.
sourcepub fn data_set_id(&self) -> Option<&str>
pub fn data_set_id(&self) -> Option<&str>
The data set ID.
sourcepub fn protocol_type(&self) -> Option<&ProtocolType>
pub fn protocol_type(&self) -> Option<&ProtocolType>
The protocol type.
sourcepub fn revision_id(&self) -> Option<&str>
pub fn revision_id(&self) -> Option<&str>
The revision ID.
sourceimpl ImportAssetFromApiGatewayApiRequestDetails
impl ImportAssetFromApiGatewayApiRequestDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ImportAssetFromApiGatewayApiRequestDetails
Trait Implementations
sourceimpl Clone for ImportAssetFromApiGatewayApiRequestDetails
impl Clone for ImportAssetFromApiGatewayApiRequestDetails
sourcefn clone(&self) -> ImportAssetFromApiGatewayApiRequestDetails
fn clone(&self) -> ImportAssetFromApiGatewayApiRequestDetails
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 PartialEq<ImportAssetFromApiGatewayApiRequestDetails> for ImportAssetFromApiGatewayApiRequestDetails
impl PartialEq<ImportAssetFromApiGatewayApiRequestDetails> for ImportAssetFromApiGatewayApiRequestDetails
sourcefn eq(&self, other: &ImportAssetFromApiGatewayApiRequestDetails) -> bool
fn eq(&self, other: &ImportAssetFromApiGatewayApiRequestDetails) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ImportAssetFromApiGatewayApiRequestDetails) -> bool
fn ne(&self, other: &ImportAssetFromApiGatewayApiRequestDetails) -> bool
This method tests for !=.
impl StructuralPartialEq for ImportAssetFromApiGatewayApiRequestDetails
Auto Trait Implementations
impl RefUnwindSafe for ImportAssetFromApiGatewayApiRequestDetails
impl Send for ImportAssetFromApiGatewayApiRequestDetails
impl Sync for ImportAssetFromApiGatewayApiRequestDetails
impl Unpin for ImportAssetFromApiGatewayApiRequestDetails
impl UnwindSafe for ImportAssetFromApiGatewayApiRequestDetails
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