Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty

The configuration information to connect to Amazon S3 as your data source.

Inheritance
object
CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty
Implements
CfnDataSourcePropsMixin.IS3DataSourceConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html#cfn-bedrock-datasource-s3datasourceconfiguration-bucketarn

BucketOwnerAccountId

The account ID for the owner of the S3 bucket.

public string? BucketOwnerAccountId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html#cfn-bedrock-datasource-s3datasourceconfiguration-bucketowneraccountid

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html#cfn-bedrock-datasource-s3datasourceconfiguration-inclusionprefixes

Implements

CfnDataSourcePropsMixin.IS3DataSourceConfigurationProperty
Back to top Generated by DocFX