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