interface ManifestFileLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSourcePropsMixin.ManifestFileLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSourcePropsMixin_ManifestFileLocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSourcePropsMixin.ManifestFileLocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSourcePropsMixin.ManifestFileLocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSourcePropsMixin » ManifestFileLocationProperty |
Amazon S3 manifest file location.
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 manifestFileLocationProperty: quicksight.CfnDataSourcePropsMixin.ManifestFileLocationProperty = {
bucket: 'bucket',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | Amazon S3 bucket. |
| key? | string | Amazon S3 key that identifies an object. |
bucket?
Type:
string
(optional)
Amazon S3 bucket.
key?
Type:
string
(optional)
Amazon S3 key that identifies an object.

.NET
Go
Java
Python
TypeScript