com.pulumi.aws.connect.outputs.GetBotAssociationResult 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.
The 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.connect.outputs;
import com.pulumi.aws.connect.outputs.GetBotAssociationLexBot;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetBotAssociationResult {
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
private String instanceId;
private GetBotAssociationLexBot lexBot;
private GetBotAssociationResult() {}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
public String instanceId() {
return this.instanceId;
}
public GetBotAssociationLexBot lexBot() {
return this.lexBot;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetBotAssociationResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private String instanceId;
private GetBotAssociationLexBot lexBot;
public Builder() {}
public Builder(GetBotAssociationResult defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.instanceId = defaults.instanceId;
this.lexBot = defaults.lexBot;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetBotAssociationResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder instanceId(String instanceId) {
if (instanceId == null) {
throw new MissingRequiredPropertyException("GetBotAssociationResult", "instanceId");
}
this.instanceId = instanceId;
return this;
}
@CustomType.Setter
public Builder lexBot(GetBotAssociationLexBot lexBot) {
if (lexBot == null) {
throw new MissingRequiredPropertyException("GetBotAssociationResult", "lexBot");
}
this.lexBot = lexBot;
return this;
}
public GetBotAssociationResult build() {
final var _resultValue = new GetBotAssociationResult();
_resultValue.id = id;
_resultValue.instanceId = instanceId;
_resultValue.lexBot = lexBot;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy