#[non_exhaustive]pub struct ImportAssetFromApiGatewayApiResponseDetails {
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 api_specification_upload_url: Option<String>,
pub api_specification_upload_url_expires_at: Option<DateTime>,
pub data_set_id: Option<String>,
pub protocol_type: Option<ProtocolType>,
pub revision_id: Option<String>,
pub stage: Option<String>,
}Expand description
The response 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.
api_id: Option<String>The API ID.
api_key: Option<String>The API key.
api_name: Option<String>The API name.
api_specification_md5_hash: Option<String>The Base64-encoded Md5 hash for the API asset, used to ensure the integrity of the API at that location.
api_specification_upload_url: Option<String>The upload URL of the API specification.
api_specification_upload_url_expires_at: Option<DateTime>The date and time that the upload URL expires, in ISO 8601 format.
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 ImportAssetFromApiGatewayApiResponseDetails
impl ImportAssetFromApiGatewayApiResponseDetails
sourcepub fn api_description(&self) -> Option<&str>
pub fn api_description(&self) -> Option<&str>
The API description.
sourcepub fn api_specification_md5_hash(&self) -> Option<&str>
pub fn api_specification_md5_hash(&self) -> Option<&str>
The Base64-encoded Md5 hash for the API asset, used to ensure the integrity of the API at that location.
sourcepub fn api_specification_upload_url(&self) -> Option<&str>
pub fn api_specification_upload_url(&self) -> Option<&str>
The upload URL of the API specification.
sourcepub fn api_specification_upload_url_expires_at(&self) -> Option<&DateTime>
pub fn api_specification_upload_url_expires_at(&self) -> Option<&DateTime>
The date and time that the upload URL expires, in ISO 8601 format.
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 ImportAssetFromApiGatewayApiResponseDetails
impl ImportAssetFromApiGatewayApiResponseDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ImportAssetFromApiGatewayApiResponseDetails
Trait Implementations
sourceimpl Clone for ImportAssetFromApiGatewayApiResponseDetails
impl Clone for ImportAssetFromApiGatewayApiResponseDetails
sourcefn clone(&self) -> ImportAssetFromApiGatewayApiResponseDetails
fn clone(&self) -> ImportAssetFromApiGatewayApiResponseDetails
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<ImportAssetFromApiGatewayApiResponseDetails> for ImportAssetFromApiGatewayApiResponseDetails
impl PartialEq<ImportAssetFromApiGatewayApiResponseDetails> for ImportAssetFromApiGatewayApiResponseDetails
sourcefn eq(&self, other: &ImportAssetFromApiGatewayApiResponseDetails) -> bool
fn eq(&self, other: &ImportAssetFromApiGatewayApiResponseDetails) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ImportAssetFromApiGatewayApiResponseDetails) -> bool
fn ne(&self, other: &ImportAssetFromApiGatewayApiResponseDetails) -> bool
This method tests for !=.
impl StructuralPartialEq for ImportAssetFromApiGatewayApiResponseDetails
Auto Trait Implementations
impl RefUnwindSafe for ImportAssetFromApiGatewayApiResponseDetails
impl Send for ImportAssetFromApiGatewayApiResponseDetails
impl Sync for ImportAssetFromApiGatewayApiResponseDetails
impl Unpin for ImportAssetFromApiGatewayApiResponseDetails
impl UnwindSafe for ImportAssetFromApiGatewayApiResponseDetails
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