Interface CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty

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

@Stability(Stable) public static interface CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty extends software.amazon.jsii.JsiiSerializable
Details about the location of the output of 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.*;
 ModelInvocationJobOutputDataConfigProperty modelInvocationJobOutputDataConfigProperty = ModelInvocationJobOutputDataConfigProperty.builder()
         .s3OutputDataConfig(ModelInvocationJobS3OutputDataConfigProperty.builder()
                 .s3Uri("s3Uri")
                 // the properties below are optional
                 .s3BucketOwner("s3BucketOwner")
                 .s3EncryptionKeyId("s3EncryptionKeyId")
                 .build())
         .build();
 

See Also: