Struct aws_sdk_dataexchange::model::ApiGatewayApiAsset
source · [−]#[non_exhaustive]pub struct ApiGatewayApiAsset {
pub api_description: Option<String>,
pub api_endpoint: Option<String>,
pub api_id: Option<String>,
pub api_key: Option<String>,
pub api_name: Option<String>,
pub api_specification_download_url: Option<String>,
pub api_specification_download_url_expires_at: Option<DateTime>,
pub protocol_type: Option<ProtocolType>,
pub stage: Option<String>,
}Expand description
The API Gateway API that is the asset.
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 of the API asset.
api_endpoint: Option<String>The API endpoint of the API asset.
api_id: Option<String>The unique identifier of the API asset.
api_key: Option<String>The API key of the API asset.
api_name: Option<String>The API name of the API asset.
api_specification_download_url: Option<String>The download URL of the API specification of the API asset.
api_specification_download_url_expires_at: Option<DateTime>The date and time that the upload URL expires, in ISO 8601 format.
protocol_type: Option<ProtocolType>The protocol type of the API asset.
stage: Option<String>The stage of the API asset.
Implementations
sourceimpl ApiGatewayApiAsset
impl ApiGatewayApiAsset
sourcepub fn api_description(&self) -> Option<&str>
pub fn api_description(&self) -> Option<&str>
The API description of the API asset.
sourcepub fn api_endpoint(&self) -> Option<&str>
pub fn api_endpoint(&self) -> Option<&str>
The API endpoint of the API asset.
sourcepub fn api_specification_download_url(&self) -> Option<&str>
pub fn api_specification_download_url(&self) -> Option<&str>
The download URL of the API specification of the API asset.
sourcepub fn api_specification_download_url_expires_at(&self) -> Option<&DateTime>
pub fn api_specification_download_url_expires_at(&self) -> Option<&DateTime>
The date and time that the upload URL expires, in ISO 8601 format.
sourcepub fn protocol_type(&self) -> Option<&ProtocolType>
pub fn protocol_type(&self) -> Option<&ProtocolType>
The protocol type of the API asset.
sourceimpl ApiGatewayApiAsset
impl ApiGatewayApiAsset
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApiGatewayApiAsset
Trait Implementations
sourceimpl Clone for ApiGatewayApiAsset
impl Clone for ApiGatewayApiAsset
sourcefn clone(&self) -> ApiGatewayApiAsset
fn clone(&self) -> ApiGatewayApiAsset
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 ApiGatewayApiAsset
impl Debug for ApiGatewayApiAsset
sourceimpl PartialEq<ApiGatewayApiAsset> for ApiGatewayApiAsset
impl PartialEq<ApiGatewayApiAsset> for ApiGatewayApiAsset
sourcefn eq(&self, other: &ApiGatewayApiAsset) -> bool
fn eq(&self, other: &ApiGatewayApiAsset) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ApiGatewayApiAsset) -> bool
fn ne(&self, other: &ApiGatewayApiAsset) -> bool
This method tests for !=.
impl StructuralPartialEq for ApiGatewayApiAsset
Auto Trait Implementations
impl RefUnwindSafe for ApiGatewayApiAsset
impl Send for ApiGatewayApiAsset
impl Sync for ApiGatewayApiAsset
impl Unpin for ApiGatewayApiAsset
impl UnwindSafe for ApiGatewayApiAsset
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