interface StaticFileS3SourceOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.StaticFileS3SourceOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_StaticFileS3SourceOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.StaticFileS3SourceOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.StaticFileS3SourceOptionsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDashboard » 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-lib';
const staticFileS3SourceOptionsProperty: quicksight.CfnDashboard.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
The name of the Amazon S3 bucket.
objectKey
Type:
string
The identifier of the static file in the Amazon S3 bucket.
region
Type:
string
The Region of the Amazon S3 account that contains the bucket.

.NET
Go
Java
Python
TypeScript