com.pulumi.aws.kinesis.outputs.FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessor 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.FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessorParameter;
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 FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessor {
/**
* @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`, `Decompression`, `CloudWatchLogProcessing`. Validation is done against [AWS SDK constants](https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/firehose/types#ProcessorType); so values not explicitly listed may also work.
*
*/
private String type;
private FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessor() {}
/**
* @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`, `Decompression`, `CloudWatchLogProcessing`. Validation is done against [AWS SDK constants](https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/firehose/types#ProcessorType); so values not explicitly listed may also work.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessor defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List parameters;
private String type;
public Builder() {}
public Builder(FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessor 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(FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessorParameter... parameters) {
return parameters(List.of(parameters));
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessor", "type");
}
this.type = type;
return this;
}
public FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessor build() {
final var _resultValue = new FirehoseDeliveryStreamIcebergConfigurationProcessingConfigurationProcessor();
_resultValue.parameters = parameters;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy