Struct aws_sdk_dataexchange::model::ResponseDetails
source · [−]#[non_exhaustive]pub struct ResponseDetails {
pub export_asset_to_signed_url: Option<ExportAssetToSignedUrlResponseDetails>,
pub export_assets_to_s3: Option<ExportAssetsToS3ResponseDetails>,
pub export_revisions_to_s3: Option<ExportRevisionsToS3ResponseDetails>,
pub import_asset_from_signed_url: Option<ImportAssetFromSignedUrlResponseDetails>,
pub import_assets_from_s3: Option<ImportAssetsFromS3ResponseDetails>,
pub import_assets_from_redshift_data_shares: Option<ImportAssetsFromRedshiftDataSharesResponseDetails>,
pub import_asset_from_api_gateway_api: Option<ImportAssetFromApiGatewayApiResponseDetails>,
}Expand description
Details for the response.
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.export_asset_to_signed_url: Option<ExportAssetToSignedUrlResponseDetails>Details for the export to signed URL response.
export_assets_to_s3: Option<ExportAssetsToS3ResponseDetails>Details for the export to Amazon S3 response.
export_revisions_to_s3: Option<ExportRevisionsToS3ResponseDetails>Details for the export revisions to Amazon S3 response.
import_asset_from_signed_url: Option<ImportAssetFromSignedUrlResponseDetails>Details for the import from signed URL response.
import_assets_from_s3: Option<ImportAssetsFromS3ResponseDetails>Details for the import from Amazon S3 response.
Details from an import from Amazon Redshift datashare response.
import_asset_from_api_gateway_api: Option<ImportAssetFromApiGatewayApiResponseDetails>The response details.
Implementations
sourceimpl ResponseDetails
impl ResponseDetails
sourcepub fn export_asset_to_signed_url(
&self
) -> Option<&ExportAssetToSignedUrlResponseDetails>
pub fn export_asset_to_signed_url(
&self
) -> Option<&ExportAssetToSignedUrlResponseDetails>
Details for the export to signed URL response.
sourcepub fn export_assets_to_s3(&self) -> Option<&ExportAssetsToS3ResponseDetails>
pub fn export_assets_to_s3(&self) -> Option<&ExportAssetsToS3ResponseDetails>
Details for the export to Amazon S3 response.
sourcepub fn export_revisions_to_s3(
&self
) -> Option<&ExportRevisionsToS3ResponseDetails>
pub fn export_revisions_to_s3(
&self
) -> Option<&ExportRevisionsToS3ResponseDetails>
Details for the export revisions to Amazon S3 response.
sourcepub fn import_asset_from_signed_url(
&self
) -> Option<&ImportAssetFromSignedUrlResponseDetails>
pub fn import_asset_from_signed_url(
&self
) -> Option<&ImportAssetFromSignedUrlResponseDetails>
Details for the import from signed URL response.
sourcepub fn import_assets_from_s3(
&self
) -> Option<&ImportAssetsFromS3ResponseDetails>
pub fn import_assets_from_s3(
&self
) -> Option<&ImportAssetsFromS3ResponseDetails>
Details for the import from Amazon S3 response.
Details from an import from Amazon Redshift datashare response.
sourcepub fn import_asset_from_api_gateway_api(
&self
) -> Option<&ImportAssetFromApiGatewayApiResponseDetails>
pub fn import_asset_from_api_gateway_api(
&self
) -> Option<&ImportAssetFromApiGatewayApiResponseDetails>
The response details.
sourceimpl ResponseDetails
impl ResponseDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ResponseDetails
Trait Implementations
sourceimpl Clone for ResponseDetails
impl Clone for ResponseDetails
sourcefn clone(&self) -> ResponseDetails
fn clone(&self) -> ResponseDetails
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 ResponseDetails
impl Debug for ResponseDetails
sourceimpl PartialEq<ResponseDetails> for ResponseDetails
impl PartialEq<ResponseDetails> for ResponseDetails
sourcefn eq(&self, other: &ResponseDetails) -> bool
fn eq(&self, other: &ResponseDetails) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ResponseDetails) -> bool
fn ne(&self, other: &ResponseDetails) -> bool
This method tests for !=.
impl StructuralPartialEq for ResponseDetails
Auto Trait Implementations
impl RefUnwindSafe for ResponseDetails
impl Send for ResponseDetails
impl Sync for ResponseDetails
impl Unpin for ResponseDetails
impl UnwindSafe for ResponseDetails
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