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