com.pulumi.aws.connect.outputs.QuickConnectQuickConnectConfigQueueConfig 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.connect.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class QuickConnectQuickConnectConfigQueueConfig {
/**
* @return Specifies the identifier of the contact flow.
*
*/
private String contactFlowId;
/**
* @return Specifies the identifier for the queue.
*
*/
private String queueId;
private QuickConnectQuickConnectConfigQueueConfig() {}
/**
* @return Specifies the identifier of the contact flow.
*
*/
public String contactFlowId() {
return this.contactFlowId;
}
/**
* @return Specifies the identifier for the queue.
*
*/
public String queueId() {
return this.queueId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(QuickConnectQuickConnectConfigQueueConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String contactFlowId;
private String queueId;
public Builder() {}
public Builder(QuickConnectQuickConnectConfigQueueConfig defaults) {
Objects.requireNonNull(defaults);
this.contactFlowId = defaults.contactFlowId;
this.queueId = defaults.queueId;
}
@CustomType.Setter
public Builder contactFlowId(String contactFlowId) {
if (contactFlowId == null) {
throw new MissingRequiredPropertyException("QuickConnectQuickConnectConfigQueueConfig", "contactFlowId");
}
this.contactFlowId = contactFlowId;
return this;
}
@CustomType.Setter
public Builder queueId(String queueId) {
if (queueId == null) {
throw new MissingRequiredPropertyException("QuickConnectQuickConnectConfigQueueConfig", "queueId");
}
this.queueId = queueId;
return this;
}
public QuickConnectQuickConnectConfigQueueConfig build() {
final var _resultValue = new QuickConnectQuickConnectConfigQueueConfig();
_resultValue.contactFlowId = contactFlowId;
_resultValue.queueId = queueId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy