interface StaticFileS3SourceOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.StaticFileS3SourceOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_StaticFileS3SourceOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.StaticFileS3SourceOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.StaticFileS3SourceOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » StaticFileS3SourceOptionsProperty |
The structure that contains the Amazon S3 location to download the static file from.
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 staticFileS3SourceOptionsProperty: quicksight.CfnDashboardPropsMixin.StaticFileS3SourceOptionsProperty = {
bucketName: 'bucketName',
objectKey: 'objectKey',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The name of the Amazon S3 bucket. |
| object | string | The identifier of the static file in the Amazon S3 bucket. |
| region? | string | The Region of the Amazon S3 account that contains the bucket. |
bucketName?
Type:
string
(optional)
The name of the Amazon S3 bucket.
objectKey?
Type:
string
(optional)
The identifier of the static file in the Amazon S3 bucket.
region?
Type:
string
(optional)
The Region of the Amazon S3 account that contains the bucket.

.NET
Go
Java
Python
TypeScript