interface StaticFileProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.StaticFileProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_StaticFileProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.StaticFileProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.StaticFileProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » 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.CfnAnalysis.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