WorkspaceApiKeyArgs

data class WorkspaceApiKeyArgs(val keyName: Output<String>? = null, val keyRole: Output<String>? = null, val secondsToLive: Output<Int>? = null, val workspaceId: Output<String>? = null) : ConvertibleToJava<WorkspaceApiKeyArgs>

Provides an Amazon Managed Grafana workspace API Key resource.

Example Usage

Basic configuration

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.grafana.WorkspaceApiKey;
import com.pulumi.aws.grafana.WorkspaceApiKeyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var key = new WorkspaceApiKey("key", WorkspaceApiKeyArgs.builder()
.keyName("test-key")
.keyRole("VIEWER")
.secondsToLive(3600)
.workspaceId(aws_grafana_workspace.test().id())
.build());
}
}

Constructors

Link copied to clipboard
constructor(keyName: Output<String>? = null, keyRole: Output<String>? = null, secondsToLive: Output<Int>? = null, workspaceId: Output<String>? = null)

Properties

Link copied to clipboard
val keyName: Output<String>? = null

Specifies the name of the API key. Key names must be unique to the workspace.

Link copied to clipboard
val keyRole: Output<String>? = null

Specifies the permission level of the API key. Valid values are VIEWER, EDITOR, or ADMIN.

Link copied to clipboard
val secondsToLive: Output<Int>? = null

Specifies the time in seconds until the API key expires. Keys can be valid for up to 30 days.

Link copied to clipboard
val workspaceId: Output<String>? = null

The ID of the workspace that the API key is valid for.

Functions

Link copied to clipboard
open override fun toJava(): WorkspaceApiKeyArgs