Struct aws_sdk_quicksight::operation::describe_asset_bundle_import_job::DescribeAssetBundleImportJobInput
source · #[non_exhaustive]pub struct DescribeAssetBundleImportJobInput {
pub aws_account_id: Option<String>,
pub asset_bundle_import_job_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.aws_account_id: Option<String>The ID of the Amazon Web Services account the import job was executed in.
asset_bundle_import_job_id: Option<String>The ID of the job. The job ID is set when you start a new job with a StartAssetBundleImportJob API call.
Implementations§
source§impl DescribeAssetBundleImportJobInput
impl DescribeAssetBundleImportJobInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account the import job was executed in.
sourcepub fn asset_bundle_import_job_id(&self) -> Option<&str>
pub fn asset_bundle_import_job_id(&self) -> Option<&str>
The ID of the job. The job ID is set when you start a new job with a StartAssetBundleImportJob API call.
source§impl DescribeAssetBundleImportJobInput
impl DescribeAssetBundleImportJobInput
sourcepub fn builder() -> DescribeAssetBundleImportJobInputBuilder
pub fn builder() -> DescribeAssetBundleImportJobInputBuilder
Creates a new builder-style object to manufacture DescribeAssetBundleImportJobInput.
Trait Implementations§
source§impl Clone for DescribeAssetBundleImportJobInput
impl Clone for DescribeAssetBundleImportJobInput
source§fn clone(&self) -> DescribeAssetBundleImportJobInput
fn clone(&self) -> DescribeAssetBundleImportJobInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq<DescribeAssetBundleImportJobInput> for DescribeAssetBundleImportJobInput
impl PartialEq<DescribeAssetBundleImportJobInput> for DescribeAssetBundleImportJobInput
source§fn eq(&self, other: &DescribeAssetBundleImportJobInput) -> bool
fn eq(&self, other: &DescribeAssetBundleImportJobInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeAssetBundleImportJobInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeAssetBundleImportJobInput
impl Send for DescribeAssetBundleImportJobInput
impl Sync for DescribeAssetBundleImportJobInput
impl Unpin for DescribeAssetBundleImportJobInput
impl UnwindSafe for DescribeAssetBundleImportJobInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more