interface S3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QBusiness.CfnPluginPropsMixin.S3Property |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsqbusiness#CfnPluginPropsMixin_S3Property |
Java | software.amazon.awscdk.cfnpropertymixins.services.qbusiness.CfnPluginPropsMixin.S3Property |
Python | aws_cdk.cfn_property_mixins.aws_qbusiness.CfnPluginPropsMixin.S3Property |
TypeScript | @aws-cdk/cfn-property-mixins » aws_qbusiness » 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 { aws_qbusiness as qbusiness } from '@aws-cdk/cfn-property-mixins';
const s3Property: qbusiness.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