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

com.pulumi.aws.chimesdkmediapipelines.outputs.MediaInsightsPipelineConfigurationElementKinesisDataStreamSinkConfiguration 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.66.3
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.chimesdkmediapipelines.outputs;

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

@CustomType
public final class MediaInsightsPipelineConfigurationElementKinesisDataStreamSinkConfiguration {
    /**
     * @return Kinesis Data Stream to deliver results.
     * 
     */
    private String insightsTarget;

    private MediaInsightsPipelineConfigurationElementKinesisDataStreamSinkConfiguration() {}
    /**
     * @return Kinesis Data Stream to deliver results.
     * 
     */
    public String insightsTarget() {
        return this.insightsTarget;
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy