com.pulumi.aws.connect.inputs.GetPromptPlainArgs 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.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetPromptPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetPromptPlainArgs Empty = new GetPromptPlainArgs();
/**
* Reference to the hosting Amazon Connect Instance
*
*/
@Import(name="instanceId", required=true)
private String instanceId;
/**
* @return Reference to the hosting Amazon Connect Instance
*
*/
public String instanceId() {
return this.instanceId;
}
/**
* Returns information on a specific Prompt by name
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return Returns information on a specific Prompt by name
*
*/
public String name() {
return this.name;
}
private GetPromptPlainArgs() {}
private GetPromptPlainArgs(GetPromptPlainArgs $) {
this.instanceId = $.instanceId;
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPromptPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPromptPlainArgs $;
public Builder() {
$ = new GetPromptPlainArgs();
}
public Builder(GetPromptPlainArgs defaults) {
$ = new GetPromptPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param instanceId Reference to the hosting Amazon Connect Instance
*
* @return builder
*
*/
public Builder instanceId(String instanceId) {
$.instanceId = instanceId;
return this;
}
/**
* @param name Returns information on a specific Prompt by name
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
public GetPromptPlainArgs build() {
if ($.instanceId == null) {
throw new MissingRequiredPropertyException("GetPromptPlainArgs", "instanceId");
}
if ($.name == null) {
throw new MissingRequiredPropertyException("GetPromptPlainArgs", "name");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy