interface StaticFileSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.StaticFileSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_StaticFileSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.StaticFileSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.StaticFileSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const staticFileSourceProperty: quicksight.CfnDashboardPropsMixin.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