com.pulumi.aws.connect.inputs.GetQueuePlainArgs Maven / Gradle / Ivy
// *** 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.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetQueuePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetQueuePlainArgs Empty = new GetQueuePlainArgs();
/**
* 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 Queue by name
*
*/
@Import(name="name")
private @Nullable String name;
/**
* @return Returns information on a specific Queue by name
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* Returns information on a specific Queue by Queue id
*
*/
@Import(name="queueId")
private @Nullable String queueId;
/**
* @return Returns information on a specific Queue by Queue id
*
*/
public Optional queueId() {
return Optional.ofNullable(this.queueId);
}
/**
* Map of tags assigned to the Queue.
*
*/
@Import(name="tags")
private @Nullable Map tags;
/**
* @return Map of tags assigned to the Queue.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy