Interface CfnModelInvocationJob.ModelInvocationJobS3InputDataConfigProperty

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

@Stability(Stable) public static interface CfnModelInvocationJob.ModelInvocationJobS3InputDataConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains the configuration of the S3 location of the input data.

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.*;
 ModelInvocationJobS3InputDataConfigProperty modelInvocationJobS3InputDataConfigProperty = ModelInvocationJobS3InputDataConfigProperty.builder()
         .s3Uri("s3Uri")
         // the properties below are optional
         .s3BucketOwner("s3BucketOwner")
         .build();
 

See Also: