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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Contains the configuration of the S3 location of the output data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3OutputDataConfig
Contains the configuration of the S3 location of the output data.Returns union: either
IResolvableorCfnModelInvocationJob.ModelInvocationJobS3OutputDataConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty.Builder builder()
-