interface S3IdentifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAgentPropsMixin.S3IdentifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAgentPropsMixin_S3IdentifierProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAgentPropsMixin.S3IdentifierProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAgentPropsMixin.S3IdentifierProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnAgentPropsMixin » S3IdentifierProperty |
The identifier information for 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 bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const s3IdentifierProperty: bedrock_mixins.CfnAgentPropsMixin.S3IdentifierProperty = {
s3BucketName: 's3BucketName',
s3ObjectKey: 's3ObjectKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The name of the S3 bucket. |
| s3 | string | The S3 object key for the S3 resource. |
s3BucketName?
Type:
string
(optional)
The name of the S3 bucket.
s3ObjectKey?
Type:
string
(optional)
The S3 object key for the S3 resource.

.NET
Go
Java
Python
TypeScript