interface StaticFileS3SourceOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.StaticFileS3SourceOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_StaticFileS3SourceOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.StaticFileS3SourceOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.StaticFileS3SourceOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const staticFileS3SourceOptionsProperty: quicksight_mixins.CfnAnalysisPropsMixin.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