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

com.pulumi.aws.medialive.outputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsMediaPackageGroupSettingsDestination 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.medialive.outputs;

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

@CustomType
public final class ChannelEncoderSettingsOutputGroupOutputGroupSettingsMediaPackageGroupSettingsDestination {
    /**
     * @return Reference ID for the destination.
     * 
     */
    private String destinationRefId;

    private ChannelEncoderSettingsOutputGroupOutputGroupSettingsMediaPackageGroupSettingsDestination() {}
    /**
     * @return Reference ID for the destination.
     * 
     */
    public String destinationRefId() {
        return this.destinationRefId;
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy