
com.pulumi.aws.sagemaker.outputs.FlowDefinitionHumanLoopActivationConfig Maven / Gradle / Ivy
// *** 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.aws.sagemaker.outputs.FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class FlowDefinitionHumanLoopActivationConfig {
/**
* @return defines under what conditions SageMaker creates a human loop. See Human Loop Activation Conditions Config details below.
*
*/
private @Nullable FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig humanLoopActivationConditionsConfig;
private FlowDefinitionHumanLoopActivationConfig() {}
/**
* @return defines under what conditions SageMaker creates a human loop. See Human Loop Activation Conditions Config details below.
*
*/
public Optional humanLoopActivationConditionsConfig() {
return Optional.ofNullable(this.humanLoopActivationConditionsConfig);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FlowDefinitionHumanLoopActivationConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig humanLoopActivationConditionsConfig;
public Builder() {}
public Builder(FlowDefinitionHumanLoopActivationConfig defaults) {
Objects.requireNonNull(defaults);
this.humanLoopActivationConditionsConfig = defaults.humanLoopActivationConditionsConfig;
}
@CustomType.Setter
public Builder humanLoopActivationConditionsConfig(@Nullable FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig humanLoopActivationConditionsConfig) {
this.humanLoopActivationConditionsConfig = humanLoopActivationConditionsConfig;
return this;
}
public FlowDefinitionHumanLoopActivationConfig build() {
final var _resultValue = new FlowDefinitionHumanLoopActivationConfig();
_resultValue.humanLoopActivationConditionsConfig = humanLoopActivationConditionsConfig;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy