interface StaticFileProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.StaticFileProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_StaticFileProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.StaticFileProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.StaticFileProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const staticFileProperty: quicksight_mixins.CfnAnalysisPropsMixin.StaticFileProperty = {
imageStaticFile: {
source: {
s3Options: {
bucketName: 'bucketName',
objectKey: 'objectKey',
region: 'region',
},
urlOptions: {
url: 'url',
},
},
staticFileId: 'staticFileId',
},
spatialStaticFile: {
source: {
s3Options: {
bucketName: 'bucketName',
objectKey: 'objectKey',
region: 'region',
},
urlOptions: {
url: 'url',
},
},
staticFileId: 'staticFileId',
},
};
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