interface S3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnPluginPropsMixin.S3Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnPluginPropsMixin_S3Property |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnPluginPropsMixin.S3Property |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnPluginPropsMixin.S3Property |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnPluginPropsMixin » S3Property |
Information required for Amazon Q Business to find a specific file in an Amazon S3 bucket.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as qbusiness_mixins } from '@aws-cdk/mixins-preview/aws-qbusiness';
const s3Property: qbusiness_mixins.CfnPluginPropsMixin.S3Property = {
bucket: 'bucket',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the S3 bucket that contains the file. |
| key? | string | The name of the file. |
bucket?
Type:
string
(optional)
The name of the S3 bucket that contains the file.
key?
Type:
string
(optional)
The name of the file.

.NET
Go
Java
Python
TypeScript