com.pulumi.aws.sagemaker.outputs.FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.sagemaker.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig {
/**
* @return A JSON expressing use-case specific conditions declaratively. If any condition is matched, atomic tasks are created against the configured work team. For more information about how to structure the JSON, see [JSON Schema for Human Loop Activation Conditions in Amazon Augmented AI](https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-human-fallback-conditions-json-schema.html).
*
*/
private String humanLoopActivationConditions;
private FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig() {}
/**
* @return A JSON expressing use-case specific conditions declaratively. If any condition is matched, atomic tasks are created against the configured work team. For more information about how to structure the JSON, see [JSON Schema for Human Loop Activation Conditions in Amazon Augmented AI](https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-human-fallback-conditions-json-schema.html).
*
*/
public String humanLoopActivationConditions() {
return this.humanLoopActivationConditions;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String humanLoopActivationConditions;
public Builder() {}
public Builder(FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig defaults) {
Objects.requireNonNull(defaults);
this.humanLoopActivationConditions = defaults.humanLoopActivationConditions;
}
@CustomType.Setter
public Builder humanLoopActivationConditions(String humanLoopActivationConditions) {
if (humanLoopActivationConditions == null) {
throw new MissingRequiredPropertyException("FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig", "humanLoopActivationConditions");
}
this.humanLoopActivationConditions = humanLoopActivationConditions;
return this;
}
public FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig build() {
final var _resultValue = new FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig();
_resultValue.humanLoopActivationConditions = humanLoopActivationConditions;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy