interface S3ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.S3ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_S3ConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.S3ConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.S3ConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » 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 { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const s3ConfigurationProperty: bedrockagentcore.CfnGatewayTarget.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