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