Struct aws_sdk_quicksight::operation::start_asset_bundle_export_job::StartAssetBundleExportJobInput
source · #[non_exhaustive]pub struct StartAssetBundleExportJobInput {
pub aws_account_id: Option<String>,
pub asset_bundle_export_job_id: Option<String>,
pub resource_arns: Option<Vec<String>>,
pub include_all_dependencies: Option<bool>,
pub export_format: Option<AssetBundleExportFormat>,
pub cloud_formation_override_property_configuration: Option<AssetBundleCloudFormationOverridePropertyConfiguration>,
pub include_permissions: Option<bool>,
pub include_tags: Option<bool>,
pub validation_strategy: Option<AssetBundleExportJobValidationStrategy>,
}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.aws_account_id: Option<String>The ID of the Amazon Web Services account to export assets from.
asset_bundle_export_job_id: Option<String>The ID of the job. This ID is unique while the job is running. After the job is completed, you can reuse this ID for another job.
resource_arns: Option<Vec<String>>An array of resource ARNs to export. The following resources are supported.
-
Analysis -
Dashboard -
DataSet -
DataSource -
RefreshSchedule -
Theme -
VPCConnection
The API caller must have the necessary permissions in their IAM role to access each resource before the resources can be exported.
include_all_dependencies: Option<bool>A Boolean that determines whether all dependencies of each resource ARN are recursively exported with the job. For example, say you provided a Dashboard ARN to the ResourceArns parameter. If you set IncludeAllDependencies to TRUE, any theme, dataset, and data source resource that is a dependency of the dashboard is also exported.
export_format: Option<AssetBundleExportFormat>The export data format.
cloud_formation_override_property_configuration: Option<AssetBundleCloudFormationOverridePropertyConfiguration>An optional collection of structures that generate CloudFormation parameters to override the existing resource property values when the resource is exported to a new CloudFormation template.
Use this field if the ExportFormat field of a StartAssetBundleExportJobRequest API call is set to CLOUDFORMATION_JSON.
include_permissions: Option<bool>A Boolean that determines whether all permissions for each resource ARN are exported with the job. If you set IncludePermissions to TRUE, any permissions associated with each resource are exported.
A Boolean that determines whether all tags for each resource ARN are exported with the job. If you set IncludeTags to TRUE, any tags associated with each resource are exported.
validation_strategy: Option<AssetBundleExportJobValidationStrategy>An optional parameter that determines which validation strategy to use for the export job. If StrictModeForAllResources is set to TRUE, strict validation for every error is enforced. If it is set to FALSE, validation is skipped for specific UI errors that are shown as warnings. The default value for StrictModeForAllResources is FALSE.
Implementations§
source§impl StartAssetBundleExportJobInput
impl StartAssetBundleExportJobInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account to export assets from.
sourcepub fn asset_bundle_export_job_id(&self) -> Option<&str>
pub fn asset_bundle_export_job_id(&self) -> Option<&str>
The ID of the job. This ID is unique while the job is running. After the job is completed, you can reuse this ID for another job.
sourcepub fn resource_arns(&self) -> &[String]
pub fn resource_arns(&self) -> &[String]
An array of resource ARNs to export. The following resources are supported.
-
Analysis -
Dashboard -
DataSet -
DataSource -
RefreshSchedule -
Theme -
VPCConnection
The API caller must have the necessary permissions in their IAM role to access each resource before the resources can be exported.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .resource_arns.is_none().
sourcepub fn include_all_dependencies(&self) -> Option<bool>
pub fn include_all_dependencies(&self) -> Option<bool>
A Boolean that determines whether all dependencies of each resource ARN are recursively exported with the job. For example, say you provided a Dashboard ARN to the ResourceArns parameter. If you set IncludeAllDependencies to TRUE, any theme, dataset, and data source resource that is a dependency of the dashboard is also exported.
sourcepub fn export_format(&self) -> Option<&AssetBundleExportFormat>
pub fn export_format(&self) -> Option<&AssetBundleExportFormat>
The export data format.
sourcepub fn cloud_formation_override_property_configuration(
&self,
) -> Option<&AssetBundleCloudFormationOverridePropertyConfiguration>
pub fn cloud_formation_override_property_configuration( &self, ) -> Option<&AssetBundleCloudFormationOverridePropertyConfiguration>
An optional collection of structures that generate CloudFormation parameters to override the existing resource property values when the resource is exported to a new CloudFormation template.
Use this field if the ExportFormat field of a StartAssetBundleExportJobRequest API call is set to CLOUDFORMATION_JSON.
sourcepub fn include_permissions(&self) -> Option<bool>
pub fn include_permissions(&self) -> Option<bool>
A Boolean that determines whether all permissions for each resource ARN are exported with the job. If you set IncludePermissions to TRUE, any permissions associated with each resource are exported.
A Boolean that determines whether all tags for each resource ARN are exported with the job. If you set IncludeTags to TRUE, any tags associated with each resource are exported.
sourcepub fn validation_strategy(
&self,
) -> Option<&AssetBundleExportJobValidationStrategy>
pub fn validation_strategy( &self, ) -> Option<&AssetBundleExportJobValidationStrategy>
An optional parameter that determines which validation strategy to use for the export job. If StrictModeForAllResources is set to TRUE, strict validation for every error is enforced. If it is set to FALSE, validation is skipped for specific UI errors that are shown as warnings. The default value for StrictModeForAllResources is FALSE.
source§impl StartAssetBundleExportJobInput
impl StartAssetBundleExportJobInput
sourcepub fn builder() -> StartAssetBundleExportJobInputBuilder
pub fn builder() -> StartAssetBundleExportJobInputBuilder
Creates a new builder-style object to manufacture StartAssetBundleExportJobInput.
Trait Implementations§
source§impl Clone for StartAssetBundleExportJobInput
impl Clone for StartAssetBundleExportJobInput
source§fn clone(&self) -> StartAssetBundleExportJobInput
fn clone(&self) -> StartAssetBundleExportJobInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for StartAssetBundleExportJobInput
impl PartialEq for StartAssetBundleExportJobInput
source§fn eq(&self, other: &StartAssetBundleExportJobInput) -> bool
fn eq(&self, other: &StartAssetBundleExportJobInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartAssetBundleExportJobInput
Auto Trait Implementations§
impl Freeze for StartAssetBundleExportJobInput
impl RefUnwindSafe for StartAssetBundleExportJobInput
impl Send for StartAssetBundleExportJobInput
impl Sync for StartAssetBundleExportJobInput
impl Unpin for StartAssetBundleExportJobInput
impl UnwindSafe for StartAssetBundleExportJobInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more