com.pulumi.aws.kinesis.outputs.FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessor 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.kinesis.outputs;
import com.pulumi.aws.kinesis.outputs.FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessorParameter;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessor {
/**
* @return Specifies the processor parameters as multiple blocks. See `parameters` block below for details.
*
*/
private @Nullable List parameters;
/**
* @return The type of processor. Valid Values: `RecordDeAggregation`, `Lambda`, `MetadataExtraction`, `AppendDelimiterToRecord`. Validation is done against [AWS SDK constants](https://docs.aws.amazon.com/sdk-for-go/api/service/firehose/#pkg-constants); so that values not explicitly listed may also work.
*
*/
private String type;
private FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessor() {}
/**
* @return Specifies the processor parameters as multiple blocks. See `parameters` block below for details.
*
*/
public List parameters() {
return this.parameters == null ? List.of() : this.parameters;
}
/**
* @return The type of processor. Valid Values: `RecordDeAggregation`, `Lambda`, `MetadataExtraction`, `AppendDelimiterToRecord`. Validation is done against [AWS SDK constants](https://docs.aws.amazon.com/sdk-for-go/api/service/firehose/#pkg-constants); so that values not explicitly listed may also work.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessor defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List parameters;
private String type;
public Builder() {}
public Builder(FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessor defaults) {
Objects.requireNonNull(defaults);
this.parameters = defaults.parameters;
this.type = defaults.type;
}
@CustomType.Setter
public Builder parameters(@Nullable List parameters) {
this.parameters = parameters;
return this;
}
public Builder parameters(FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessorParameter... parameters) {
return parameters(List.of(parameters));
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessor", "type");
}
this.type = type;
return this;
}
public FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessor build() {
final var _resultValue = new FirehoseDeliveryStreamSnowflakeConfigurationProcessingConfigurationProcessor();
_resultValue.parameters = parameters;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy