
com.pulumi.aws.datapipeline.outputs.GetPipelineDefinitionPipelineObjectField 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.
// *** 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.datapipeline.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetPipelineDefinitionPipelineObjectField {
/**
* @return Field identifier.
*
*/
private String key;
/**
* @return Field value, expressed as the identifier of another object
*
*/
private String refValue;
/**
* @return Field value, expressed as a String.
*
*/
private String stringValue;
private GetPipelineDefinitionPipelineObjectField() {}
/**
* @return Field identifier.
*
*/
public String key() {
return this.key;
}
/**
* @return Field value, expressed as the identifier of another object
*
*/
public String refValue() {
return this.refValue;
}
/**
* @return Field value, expressed as a String.
*
*/
public String stringValue() {
return this.stringValue;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPipelineDefinitionPipelineObjectField defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String key;
private String refValue;
private String stringValue;
public Builder() {}
public Builder(GetPipelineDefinitionPipelineObjectField defaults) {
Objects.requireNonNull(defaults);
this.key = defaults.key;
this.refValue = defaults.refValue;
this.stringValue = defaults.stringValue;
}
@CustomType.Setter
public Builder key(String key) {
if (key == null) {
throw new MissingRequiredPropertyException("GetPipelineDefinitionPipelineObjectField", "key");
}
this.key = key;
return this;
}
@CustomType.Setter
public Builder refValue(String refValue) {
if (refValue == null) {
throw new MissingRequiredPropertyException("GetPipelineDefinitionPipelineObjectField", "refValue");
}
this.refValue = refValue;
return this;
}
@CustomType.Setter
public Builder stringValue(String stringValue) {
if (stringValue == null) {
throw new MissingRequiredPropertyException("GetPipelineDefinitionPipelineObjectField", "stringValue");
}
this.stringValue = stringValue;
return this;
}
public GetPipelineDefinitionPipelineObjectField build() {
final var _resultValue = new GetPipelineDefinitionPipelineObjectField();
_resultValue.key = key;
_resultValue.refValue = refValue;
_resultValue.stringValue = stringValue;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy