com.pulumi.aws.appflow.outputs.FlowSourceFlowConfigSourceConnectorPropertiesZendesk 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.appflow.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class FlowSourceFlowConfigSourceConnectorPropertiesZendesk {
private String object;
private FlowSourceFlowConfigSourceConnectorPropertiesZendesk() {}
public String object() {
return this.object;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FlowSourceFlowConfigSourceConnectorPropertiesZendesk defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String object;
public Builder() {}
public Builder(FlowSourceFlowConfigSourceConnectorPropertiesZendesk defaults) {
Objects.requireNonNull(defaults);
this.object = defaults.object;
}
@CustomType.Setter
public Builder object(String object) {
if (object == null) {
throw new MissingRequiredPropertyException("FlowSourceFlowConfigSourceConnectorPropertiesZendesk", "object");
}
this.object = object;
return this;
}
public FlowSourceFlowConfigSourceConnectorPropertiesZendesk build() {
final var _resultValue = new FlowSourceFlowConfigSourceConnectorPropertiesZendesk();
_resultValue.object = object;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy