Interface CfnModelInvocationJob.ModelInvocationJobInputDataConfigProperty

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

@Stability(Stable) public static interface CfnModelInvocationJob.ModelInvocationJobInputDataConfigProperty extends software.amazon.jsii.JsiiSerializable
Details about the location of the input to the batch inference job.

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

See Also: