Class CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty
The configuration information to connect to Amazon S3 as your data source.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty : CfnDataSourcePropsMixin.IS3DataSourceConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty Implements CfnDataSourcePropsMixin.IS3DataSourceConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var s3DataSourceConfigurationProperty = new S3DataSourceConfigurationProperty {
BucketArn = "bucketArn",
BucketOwnerAccountId = "bucketOwnerAccountId",
InclusionPrefixes = new [] { "inclusionPrefixes" }
};
Synopsis
Constructors
| S3DataSourceConfigurationProperty() | The configuration information to connect to Amazon S3 as your data source. |
Properties
| BucketArn | The Amazon Resource Name (ARN) of the S3 bucket that contains your data. |
| BucketOwnerAccountId | The account ID for the owner of the S3 bucket. |
| InclusionPrefixes | A list of S3 prefixes to include certain files or content. |
Constructors
S3DataSourceConfigurationProperty()
The configuration information to connect to Amazon S3 as your data source.
public S3DataSourceConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var s3DataSourceConfigurationProperty = new S3DataSourceConfigurationProperty {
BucketArn = "bucketArn",
BucketOwnerAccountId = "bucketOwnerAccountId",
InclusionPrefixes = new [] { "inclusionPrefixes" }
};
Properties
BucketArn
The Amazon Resource Name (ARN) of the S3 bucket that contains your data.
public string? BucketArn { get; set; }
Property Value
Remarks
BucketOwnerAccountId
The account ID for the owner of the S3 bucket.
public string? BucketOwnerAccountId { get; set; }
Property Value
Remarks
InclusionPrefixes
A list of S3 prefixes to include certain files or content.
public string[]? InclusionPrefixes { get; set; }
Property Value
string[]
Remarks
This field is an array with a maximum of one item, which can contain a string that has a maximum length of 300 characters. For more information, see Organizing objects using prefixes .