
com.pulumi.aws.appflow.inputs.FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs 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.appflow.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs extends com.pulumi.resources.ResourceArgs {
public static final FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs Empty = new FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs();
@Import(name="object", required=true)
private Output object;
public Output object() {
return this.object;
}
private FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs() {}
private FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs(FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs $) {
this.object = $.object;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs $;
public Builder() {
$ = new FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs();
}
public Builder(FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs defaults) {
$ = new FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs(Objects.requireNonNull(defaults));
}
public Builder object(Output object) {
$.object = object;
return this;
}
public Builder object(String object) {
return object(Output.of(object));
}
public FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs build() {
if ($.object == null) {
throw new MissingRequiredPropertyException("FlowSourceFlowConfigSourceConnectorPropertiesGoogleAnalyticsArgs", "object");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy