Interface CfnModelInvocationJob.ModelInvocationJobS3OutputDataConfigProperty

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

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

See Also: