interface ImageStaticFileProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.ImageStaticFileProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_ImageStaticFileProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.ImageStaticFileProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.ImageStaticFileProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » ImageStaticFileProperty |
A static file that contains an image.
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 imageStaticFileProperty: quicksight_mixins.CfnAnalysisPropsMixin.ImageStaticFileProperty = {
source: {
s3Options: {
bucketName: 'bucketName',
objectKey: 'objectKey',
region: 'region',
},
urlOptions: {
url: 'url',
},
},
staticFileId: 'staticFileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| source? | IResolvable | Static | The source of the image static file. |
| static | string | The ID of the static file that contains an image. |
source?
Type:
IResolvable | Static
(optional)
The source of the image static file.
staticFileId?
Type:
string
(optional)
The ID of the static file that contains an image.

.NET
Go
Java
Python
TypeScript