Interface CfnDataSource.DataSourceConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.DataSourceConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.DataSourceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The connection configuration for the data source.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrock.*;
 DataSourceConfigurationProperty dataSourceConfigurationProperty = DataSourceConfigurationProperty.builder()
         .s3Configuration(S3DataSourceConfigurationProperty.builder()
                 .bucketArn("bucketArn")
                 // the properties below are optional
                 .bucketOwnerAccountId("bucketOwnerAccountId")
                 .inclusionPrefixes(List.of("inclusionPrefixes"))
                 .build())
         .type("type")
         .build();
 

See Also: