com.pulumi.aws.kinesis.outputs.FirehoseDeliveryStreamElasticsearchConfigurationProcessingConfigurationProcessorParameter 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.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class FirehoseDeliveryStreamElasticsearchConfigurationProcessingConfigurationProcessorParameter {
/**
* @return Parameter name. Valid Values: `LambdaArn`, `NumberOfRetries`, `MetadataExtractionQuery`, `JsonParsingEngine`, `RoleArn`, `BufferSizeInMBs`, `BufferIntervalInSeconds`, `SubRecordType`, `Delimiter`. 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 parameterName;
/**
* @return Parameter value. Must be between 1 and 512 length (inclusive). When providing a Lambda ARN, you should specify the resource version as well.
*
* > **NOTE:** Parameters with default values, including `NumberOfRetries`(default: 3), `RoleArn`(default: firehose role ARN), `BufferSizeInMBs`(default: 1), and `BufferIntervalInSeconds`(default: 60), are not stored in Pulumi state. To prevent perpetual differences, it is therefore recommended to only include parameters with non-default values.
*
*/
private String parameterValue;
private FirehoseDeliveryStreamElasticsearchConfigurationProcessingConfigurationProcessorParameter() {}
/**
* @return Parameter name. Valid Values: `LambdaArn`, `NumberOfRetries`, `MetadataExtractionQuery`, `JsonParsingEngine`, `RoleArn`, `BufferSizeInMBs`, `BufferIntervalInSeconds`, `SubRecordType`, `Delimiter`. 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 parameterName() {
return this.parameterName;
}
/**
* @return Parameter value. Must be between 1 and 512 length (inclusive). When providing a Lambda ARN, you should specify the resource version as well.
*
* > **NOTE:** Parameters with default values, including `NumberOfRetries`(default: 3), `RoleArn`(default: firehose role ARN), `BufferSizeInMBs`(default: 1), and `BufferIntervalInSeconds`(default: 60), are not stored in Pulumi state. To prevent perpetual differences, it is therefore recommended to only include parameters with non-default values.
*
*/
public String parameterValue() {
return this.parameterValue;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FirehoseDeliveryStreamElasticsearchConfigurationProcessingConfigurationProcessorParameter defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String parameterName;
private String parameterValue;
public Builder() {}
public Builder(FirehoseDeliveryStreamElasticsearchConfigurationProcessingConfigurationProcessorParameter defaults) {
Objects.requireNonNull(defaults);
this.parameterName = defaults.parameterName;
this.parameterValue = defaults.parameterValue;
}
@CustomType.Setter
public Builder parameterName(String parameterName) {
if (parameterName == null) {
throw new MissingRequiredPropertyException("FirehoseDeliveryStreamElasticsearchConfigurationProcessingConfigurationProcessorParameter", "parameterName");
}
this.parameterName = parameterName;
return this;
}
@CustomType.Setter
public Builder parameterValue(String parameterValue) {
if (parameterValue == null) {
throw new MissingRequiredPropertyException("FirehoseDeliveryStreamElasticsearchConfigurationProcessingConfigurationProcessorParameter", "parameterValue");
}
this.parameterValue = parameterValue;
return this;
}
public FirehoseDeliveryStreamElasticsearchConfigurationProcessingConfigurationProcessorParameter build() {
final var _resultValue = new FirehoseDeliveryStreamElasticsearchConfigurationProcessingConfigurationProcessorParameter();
_resultValue.parameterName = parameterName;
_resultValue.parameterValue = parameterValue;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy