Interface CfnDataSourcePropsMixin.S3PathProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSourcePropsMixin.S3PathProperty.Jsii$Proxy
- Enclosing class:
CfnDataSourcePropsMixin
@Stability(Stable)
public static interface CfnDataSourcePropsMixin.S3PathProperty
extends software.amazon.jsii.JsiiSerializable
Information required to find a specific file in 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 software.amazon.awscdk.cfnpropertymixins.services.kendra.*;
S3PathProperty s3PathProperty = S3PathProperty.builder()
.bucket("bucket")
.key("key")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSourcePropsMixin.S3PathPropertystatic final classAn implementation forCfnDataSourcePropsMixin.S3PathProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The name of the S3 bucket that contains the file.Returns union: either
StringorIBucketRef- See Also:
-
getKey
The name of the file.- See Also:
-
builder
-