All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.s3.outputs.BucketLoggingV2TargetObjectKeyFormatPartitionedPrefix Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show newest version
// *** 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.s3.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class BucketLoggingV2TargetObjectKeyFormatPartitionedPrefix {
    /**
     * @return Specifies the partition date source for the partitioned prefix. Valid values: `EventTime`, `DeliveryTime`.
     * 
     */
    private String partitionDateSource;

    private BucketLoggingV2TargetObjectKeyFormatPartitionedPrefix() {}
    /**
     * @return Specifies the partition date source for the partitioned prefix. Valid values: `EventTime`, `DeliveryTime`.
     * 
     */
    public String partitionDateSource() {
        return this.partitionDateSource;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(BucketLoggingV2TargetObjectKeyFormatPartitionedPrefix defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String partitionDateSource;
        public Builder() {}
        public Builder(BucketLoggingV2TargetObjectKeyFormatPartitionedPrefix defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.partitionDateSource = defaults.partitionDateSource;
        }

        @CustomType.Setter
        public Builder partitionDateSource(String partitionDateSource) {
            if (partitionDateSource == null) {
              throw new MissingRequiredPropertyException("BucketLoggingV2TargetObjectKeyFormatPartitionedPrefix", "partitionDateSource");
            }
            this.partitionDateSource = partitionDateSource;
            return this;
        }
        public BucketLoggingV2TargetObjectKeyFormatPartitionedPrefix build() {
            final var _resultValue = new BucketLoggingV2TargetObjectKeyFormatPartitionedPrefix();
            _resultValue.partitionDateSource = partitionDateSource;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy