Class CfnAssetBundleImportJob

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.quicksight.CfnAssetBundleImportJob
All Implemented Interfaces:
IInspectable, IEnvironmentAware, IAssetBundleImportJobRef, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-22T17:37:31.583Z") @Stability(Stable) public class CfnAssetBundleImportJob extends CfnResource implements IInspectable, IAssetBundleImportJobRef
Resource Type definition for AWS::QuickSight::AssetBundleImportJob.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 CfnAssetBundleImportJob cfnAssetBundleImportJob = CfnAssetBundleImportJob.Builder.create(this, "MyCfnAssetBundleImportJob")
         .assetBundleImportJobId("assetBundleImportJobId")
         // the properties below are optional
         .assetBundleImportSource(AssetBundleImportSourceDescriptionProperty.builder()
                 .s3Uri("s3Uri")
                 .build())
         .awsAccountId("awsAccountId")
         .failureAction("failureAction")
         .overrideValidationStrategy(AssetBundleImportJobOverrideValidationStrategyProperty.builder()
                 .strictModeForAllResources(false)
                 .build())
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnAssetBundleImportJob

      protected CfnAssetBundleImportJob(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnAssetBundleImportJob

      protected CfnAssetBundleImportJob(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnAssetBundleImportJob

      @Stability(Stable) public CfnAssetBundleImportJob(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnAssetBundleImportJobProps props)
      Create a new AWS::QuickSight::AssetBundleImportJob.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details