interface S3IdentifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAgentPropsMixin.S3IdentifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAgentPropsMixin_S3IdentifierProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAgentPropsMixin.S3IdentifierProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAgentPropsMixin.S3IdentifierProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const s3IdentifierProperty: bedrock.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