com.pulumi.aws.grafana.WorkspaceServiceAccountArgs 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.grafana;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class WorkspaceServiceAccountArgs extends com.pulumi.resources.ResourceArgs {
public static final WorkspaceServiceAccountArgs Empty = new WorkspaceServiceAccountArgs();
/**
* The permission level to use for this service account. For more information about the roles and the permissions each has, see the [User roles](https://docs.aws.amazon.com/grafana/latest/userguide/Grafana-user-roles.html) documentation.
*
*/
@Import(name="grafanaRole", required=true)
private Output grafanaRole;
/**
* @return The permission level to use for this service account. For more information about the roles and the permissions each has, see the [User roles](https://docs.aws.amazon.com/grafana/latest/userguide/Grafana-user-roles.html) documentation.
*
*/
public Output grafanaRole() {
return this.grafanaRole;
}
/**
* A name for the service account. The name must be unique within the workspace, as it determines the ID associated with the service account.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return A name for the service account. The name must be unique within the workspace, as it determines the ID associated with the service account.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy