io.github.cdklabs.generative_ai_cdk_constructs.bedrock.TextPromptVariantProps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generative-ai-cdk-constructs Show documentation
Show all versions of generative-ai-cdk-constructs Show documentation
AWS Generative AI CDK Constructs is a library for well-architected generative AI patterns.
package io.github.cdklabs.generative_ai_cdk_constructs.bedrock;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T22:27:31.983Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.generative_ai_cdk_constructs.$Module.class, fqn = "@cdklabs/generative-ai-cdk-constructs.bedrock.TextPromptVariantProps")
@software.amazon.jsii.Jsii.Proxy(TextPromptVariantProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface TextPromptVariantProps extends software.amazon.jsii.JsiiSerializable, io.github.cdklabs.generative_ai_cdk_constructs.bedrock.CommonPromptVariantProps {
/**
* (experimental) Inference configuration for the Text Prompt.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable software.amazon.awscdk.services.bedrock.CfnPrompt.PromptModelInferenceConfigurationProperty getInferenceConfiguration() {
return null;
}
/**
* (experimental) Template Configuration for the text prompt.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable software.amazon.awscdk.services.bedrock.CfnPrompt.TextPromptTemplateConfigurationProperty getTemplateConfiguration() {
return null;
}
/**
* @return a {@link Builder} of {@link TextPromptVariantProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link TextPromptVariantProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
software.amazon.awscdk.services.bedrock.CfnPrompt.PromptModelInferenceConfigurationProperty inferenceConfiguration;
software.amazon.awscdk.services.bedrock.CfnPrompt.TextPromptTemplateConfigurationProperty templateConfiguration;
software.amazon.awscdk.services.bedrock.IModel model;
java.lang.String variantName;
/**
* Sets the value of {@link TextPromptVariantProps#getInferenceConfiguration}
* @param inferenceConfiguration Inference configuration for the Text Prompt.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder inferenceConfiguration(software.amazon.awscdk.services.bedrock.CfnPrompt.PromptModelInferenceConfigurationProperty inferenceConfiguration) {
this.inferenceConfiguration = inferenceConfiguration;
return this;
}
/**
* Sets the value of {@link TextPromptVariantProps#getTemplateConfiguration}
* @param templateConfiguration Template Configuration for the text prompt.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder templateConfiguration(software.amazon.awscdk.services.bedrock.CfnPrompt.TextPromptTemplateConfigurationProperty templateConfiguration) {
this.templateConfiguration = templateConfiguration;
return this;
}
/**
* Sets the value of {@link TextPromptVariantProps#getModel}
* @param model The model which is used to run the prompt. This parameter is required.
* The model could be a foundation
* model, a custom model, or a provisioned model.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder model(software.amazon.awscdk.services.bedrock.IModel model) {
this.model = model;
return this;
}
/**
* Sets the value of {@link TextPromptVariantProps#getVariantName}
* @param variantName The name of the prompt variant. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder variantName(java.lang.String variantName) {
this.variantName = variantName;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link TextPromptVariantProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public TextPromptVariantProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link TextPromptVariantProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements TextPromptVariantProps {
private final software.amazon.awscdk.services.bedrock.CfnPrompt.PromptModelInferenceConfigurationProperty inferenceConfiguration;
private final software.amazon.awscdk.services.bedrock.CfnPrompt.TextPromptTemplateConfigurationProperty templateConfiguration;
private final software.amazon.awscdk.services.bedrock.IModel model;
private final java.lang.String variantName;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.inferenceConfiguration = software.amazon.jsii.Kernel.get(this, "inferenceConfiguration", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.bedrock.CfnPrompt.PromptModelInferenceConfigurationProperty.class));
this.templateConfiguration = software.amazon.jsii.Kernel.get(this, "templateConfiguration", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.bedrock.CfnPrompt.TextPromptTemplateConfigurationProperty.class));
this.model = software.amazon.jsii.Kernel.get(this, "model", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.bedrock.IModel.class));
this.variantName = software.amazon.jsii.Kernel.get(this, "variantName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.inferenceConfiguration = builder.inferenceConfiguration;
this.templateConfiguration = builder.templateConfiguration;
this.model = java.util.Objects.requireNonNull(builder.model, "model is required");
this.variantName = java.util.Objects.requireNonNull(builder.variantName, "variantName is required");
}
@Override
public final software.amazon.awscdk.services.bedrock.CfnPrompt.PromptModelInferenceConfigurationProperty getInferenceConfiguration() {
return this.inferenceConfiguration;
}
@Override
public final software.amazon.awscdk.services.bedrock.CfnPrompt.TextPromptTemplateConfigurationProperty getTemplateConfiguration() {
return this.templateConfiguration;
}
@Override
public final software.amazon.awscdk.services.bedrock.IModel getModel() {
return this.model;
}
@Override
public final java.lang.String getVariantName() {
return this.variantName;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
if (this.getInferenceConfiguration() != null) {
data.set("inferenceConfiguration", om.valueToTree(this.getInferenceConfiguration()));
}
if (this.getTemplateConfiguration() != null) {
data.set("templateConfiguration", om.valueToTree(this.getTemplateConfiguration()));
}
data.set("model", om.valueToTree(this.getModel()));
data.set("variantName", om.valueToTree(this.getVariantName()));
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@cdklabs/generative-ai-cdk-constructs.bedrock.TextPromptVariantProps"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
TextPromptVariantProps.Jsii$Proxy that = (TextPromptVariantProps.Jsii$Proxy) o;
if (this.inferenceConfiguration != null ? !this.inferenceConfiguration.equals(that.inferenceConfiguration) : that.inferenceConfiguration != null) return false;
if (this.templateConfiguration != null ? !this.templateConfiguration.equals(that.templateConfiguration) : that.templateConfiguration != null) return false;
if (!model.equals(that.model)) return false;
return this.variantName.equals(that.variantName);
}
@Override
public final int hashCode() {
int result = this.inferenceConfiguration != null ? this.inferenceConfiguration.hashCode() : 0;
result = 31 * result + (this.templateConfiguration != null ? this.templateConfiguration.hashCode() : 0);
result = 31 * result + (this.model.hashCode());
result = 31 * result + (this.variantName.hashCode());
return result;
}
}
}