interface StaticFileProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.StaticFileProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_StaticFileProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.StaticFileProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.StaticFileProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnDashboard » StaticFileProperty | 
The static file.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const staticFileProperty: quicksight.CfnDashboard.StaticFileProperty = {
  imageStaticFile: {
    staticFileId: 'staticFileId',
    // the properties below are optional
    source: {
      s3Options: {
        bucketName: 'bucketName',
        objectKey: 'objectKey',
        region: 'region',
      },
      urlOptions: {
        url: 'url',
      },
    },
  },
  spatialStaticFile: {
    staticFileId: 'staticFileId',
    // the properties below are optional
    source: {
      s3Options: {
        bucketName: 'bucketName',
        objectKey: 'objectKey',
        region: 'region',
      },
      urlOptions: {
        url: 'url',
      },
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| image | IResolvable | Image | The image static file. | 
| spatial | IResolvable | Spatial | The spacial static file. | 
imageStaticFile?
Type:
IResolvable | Image
(optional)
The image static file.
spatialStaticFile?
Type:
IResolvable | Spatial
(optional)
The spacial static file.

 .NET
 Go
 Java
 Python
 TypeScript