interface StaticFileSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.StaticFileSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_StaticFileSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.StaticFileSourceProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.StaticFileSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » StaticFileSourceProperty |
The source of 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 staticFileSourceProperty: quicksight_mixins.CfnAnalysisPropsMixin.StaticFileSourceProperty = {
s3Options: {
bucketName: 'bucketName',
objectKey: 'objectKey',
region: 'region',
},
urlOptions: {
url: 'url',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | Static | The structure that contains the Amazon S3 location to download the static file from. |
| url | IResolvable | Static | The structure that contains the URL to download the static file from. |
s3Options?
Type:
IResolvable | Static
(optional)
The structure that contains the Amazon S3 location to download the static file from.
urlOptions?
Type:
IResolvable | Static
(optional)
The structure that contains the URL to download the static file from.

.NET
Go
Java
Python
TypeScript