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

com.pulumi.aws.rekognition.outputs.StreamProcessorOutputS3Destination 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.rekognition.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class StreamProcessorOutputS3Destination {
    /**
     * @return Name of the Amazon S3 bucket you want to associate with the streaming video project.
     * 
     */
    private @Nullable String bucket;
    /**
     * @return The prefix value of the location within the bucket that you want the information to be published to.
     * 
     */
    private @Nullable String keyPrefix;

    private StreamProcessorOutputS3Destination() {}
    /**
     * @return Name of the Amazon S3 bucket you want to associate with the streaming video project.
     * 
     */
    public Optional bucket() {
        return Optional.ofNullable(this.bucket);
    }
    /**
     * @return The prefix value of the location within the bucket that you want the information to be published to.
     * 
     */
    public Optional keyPrefix() {
        return Optional.ofNullable(this.keyPrefix);
    }

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

    public static Builder builder(StreamProcessorOutputS3Destination defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String bucket;
        private @Nullable String keyPrefix;
        public Builder() {}
        public Builder(StreamProcessorOutputS3Destination defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.bucket = defaults.bucket;
    	      this.keyPrefix = defaults.keyPrefix;
        }

        @CustomType.Setter
        public Builder bucket(@Nullable String bucket) {

            this.bucket = bucket;
            return this;
        }
        @CustomType.Setter
        public Builder keyPrefix(@Nullable String keyPrefix) {

            this.keyPrefix = keyPrefix;
            return this;
        }
        public StreamProcessorOutputS3Destination build() {
            final var _resultValue = new StreamProcessorOutputS3Destination();
            _resultValue.bucket = bucket;
            _resultValue.keyPrefix = keyPrefix;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy