Interface CfnModelInvocationJobPropsMixin.ModelInvocationJobOutputDataConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelInvocationJobPropsMixin.ModelInvocationJobOutputDataConfigProperty.Jsii$Proxy
- Enclosing class:
CfnModelInvocationJobPropsMixin
@Stability(Stable)
public static interface CfnModelInvocationJobPropsMixin.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.cfnpropertymixins.services.bedrock.*;
ModelInvocationJobOutputDataConfigProperty modelInvocationJobOutputDataConfigProperty = ModelInvocationJobOutputDataConfigProperty.builder()
.s3OutputDataConfig(ModelInvocationJobS3OutputDataConfigProperty.builder()
.s3BucketOwner("s3BucketOwner")
.s3EncryptionKeyId("s3EncryptionKeyId")
.s3Uri("s3Uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnModelInvocationJobPropsMixin.ModelInvocationJobOutputDataConfigProperty -
Method Summary
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
IResolvableorCfnModelInvocationJobPropsMixin.ModelInvocationJobS3OutputDataConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnModelInvocationJobPropsMixin.ModelInvocationJobOutputDataConfigProperty.Builder builder()
-