interface S3ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnGatewayTargetPropsMixin.S3ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnGatewayTargetPropsMixin_S3ConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnGatewayTargetPropsMixin.S3ConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnGatewayTargetPropsMixin.S3ConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnGatewayTargetPropsMixin » S3ConfigurationProperty |
The S3 configuration for the gateway target.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const s3ConfigurationProperty: bedrockagentcore_mixins.CfnGatewayTargetPropsMixin.S3ConfigurationProperty = {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The S3 configuration bucket owner account ID for the gateway target. |
| uri? | string | The configuration URI for the gateway target. |
bucketOwnerAccountId?
Type:
string
(optional)
The S3 configuration bucket owner account ID for the gateway target.
uri?
Type:
string
(optional)
The configuration URI for the gateway target.

.NET
Go
Java
Python
TypeScript