1. Packages
  2. Honeycombio Provider
  3. API Docs
  4. BoardView
Honeycomb 0.45.0 published on Tuesday, Jan 6, 2026 by honeycombio
honeycombio logo
Honeycomb 0.45.0 published on Tuesday, Jan 6, 2026 by honeycombio

    Manages a board view in a Honeycomb flexible board. Maximum of 50 boards views per board.

    Create BoardView Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BoardView(name: string, args: BoardViewArgs, opts?: CustomResourceOptions);
    @overload
    def BoardView(resource_name: str,
                  args: BoardViewArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def BoardView(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  board_id: Optional[str] = None,
                  filters: Optional[Sequence[BoardViewFilterArgs]] = None,
                  name: Optional[str] = None)
    func NewBoardView(ctx *Context, name string, args BoardViewArgs, opts ...ResourceOption) (*BoardView, error)
    public BoardView(string name, BoardViewArgs args, CustomResourceOptions? opts = null)
    public BoardView(String name, BoardViewArgs args)
    public BoardView(String name, BoardViewArgs args, CustomResourceOptions options)
    
    type: honeycombio:BoardView
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args BoardViewArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args BoardViewArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args BoardViewArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BoardViewArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BoardViewArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var boardViewResource = new Honeycombio.BoardView("boardViewResource", new()
    {
        BoardId = "string",
        Filters = new[]
        {
            new Honeycombio.Inputs.BoardViewFilterArgs
            {
                Column = "string",
                Operation = "string",
                Value = "string",
            },
        },
        Name = "string",
    });
    
    example, err := honeycombio.NewBoardView(ctx, "boardViewResource", &honeycombio.BoardViewArgs{
    	BoardId: pulumi.String("string"),
    	Filters: honeycombio.BoardViewFilterArray{
    		&honeycombio.BoardViewFilterArgs{
    			Column:    pulumi.String("string"),
    			Operation: pulumi.String("string"),
    			Value:     pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    })
    
    var boardViewResource = new BoardView("boardViewResource", BoardViewArgs.builder()
        .boardId("string")
        .filters(BoardViewFilterArgs.builder()
            .column("string")
            .operation("string")
            .value("string")
            .build())
        .name("string")
        .build());
    
    board_view_resource = honeycombio.BoardView("boardViewResource",
        board_id="string",
        filters=[{
            "column": "string",
            "operation": "string",
            "value": "string",
        }],
        name="string")
    
    const boardViewResource = new honeycombio.BoardView("boardViewResource", {
        boardId: "string",
        filters: [{
            column: "string",
            operation: "string",
            value: "string",
        }],
        name: "string",
    });
    
    type: honeycombio:BoardView
    properties:
        boardId: string
        filters:
            - column: string
              operation: string
              value: string
        name: string
    

    BoardView Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The BoardView resource accepts the following input properties:

    BoardId string
    The ID of the flexible board this view belongs to.
    Filters List<BoardViewFilter>
    List of filters to apply to the board view. Required: At least one filter must be specified.
    Name string
    The name of the board view.
    BoardId string
    The ID of the flexible board this view belongs to.
    Filters []BoardViewFilterArgs
    List of filters to apply to the board view. Required: At least one filter must be specified.
    Name string
    The name of the board view.
    boardId String
    The ID of the flexible board this view belongs to.
    filters List<BoardViewFilter>
    List of filters to apply to the board view. Required: At least one filter must be specified.
    name String
    The name of the board view.
    boardId string
    The ID of the flexible board this view belongs to.
    filters BoardViewFilter[]
    List of filters to apply to the board view. Required: At least one filter must be specified.
    name string
    The name of the board view.
    board_id str
    The ID of the flexible board this view belongs to.
    filters Sequence[BoardViewFilterArgs]
    List of filters to apply to the board view. Required: At least one filter must be specified.
    name str
    The name of the board view.
    boardId String
    The ID of the flexible board this view belongs to.
    filters List<Property Map>
    List of filters to apply to the board view. Required: At least one filter must be specified.
    name String
    The name of the board view.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BoardView resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing BoardView Resource

    Get an existing BoardView resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: BoardViewState, opts?: CustomResourceOptions): BoardView
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            board_id: Optional[str] = None,
            filters: Optional[Sequence[BoardViewFilterArgs]] = None,
            name: Optional[str] = None) -> BoardView
    func GetBoardView(ctx *Context, name string, id IDInput, state *BoardViewState, opts ...ResourceOption) (*BoardView, error)
    public static BoardView Get(string name, Input<string> id, BoardViewState? state, CustomResourceOptions? opts = null)
    public static BoardView get(String name, Output<String> id, BoardViewState state, CustomResourceOptions options)
    resources:  _:    type: honeycombio:BoardView    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BoardId string
    The ID of the flexible board this view belongs to.
    Filters List<BoardViewFilter>
    List of filters to apply to the board view. Required: At least one filter must be specified.
    Name string
    The name of the board view.
    BoardId string
    The ID of the flexible board this view belongs to.
    Filters []BoardViewFilterArgs
    List of filters to apply to the board view. Required: At least one filter must be specified.
    Name string
    The name of the board view.
    boardId String
    The ID of the flexible board this view belongs to.
    filters List<BoardViewFilter>
    List of filters to apply to the board view. Required: At least one filter must be specified.
    name String
    The name of the board view.
    boardId string
    The ID of the flexible board this view belongs to.
    filters BoardViewFilter[]
    List of filters to apply to the board view. Required: At least one filter must be specified.
    name string
    The name of the board view.
    board_id str
    The ID of the flexible board this view belongs to.
    filters Sequence[BoardViewFilterArgs]
    List of filters to apply to the board view. Required: At least one filter must be specified.
    name str
    The name of the board view.
    boardId String
    The ID of the flexible board this view belongs to.
    filters List<Property Map>
    List of filters to apply to the board view. Required: At least one filter must be specified.
    name String
    The name of the board view.

    Supporting Types

    BoardViewFilter, BoardViewFilterArgs

    Column string
    The column to filter on.
    Operation string
    The operator to apply. See the supported list at Filter Operators. Not all operators require a value.
    Value string
    The value used for the filter. Not needed if operation is "exists" or "does-not-exist". For "in" or "not-in" operations, provide a comma-separated list of values.
    Column string
    The column to filter on.
    Operation string
    The operator to apply. See the supported list at Filter Operators. Not all operators require a value.
    Value string
    The value used for the filter. Not needed if operation is "exists" or "does-not-exist". For "in" or "not-in" operations, provide a comma-separated list of values.
    column String
    The column to filter on.
    operation String
    The operator to apply. See the supported list at Filter Operators. Not all operators require a value.
    value String
    The value used for the filter. Not needed if operation is "exists" or "does-not-exist". For "in" or "not-in" operations, provide a comma-separated list of values.
    column string
    The column to filter on.
    operation string
    The operator to apply. See the supported list at Filter Operators. Not all operators require a value.
    value string
    The value used for the filter. Not needed if operation is "exists" or "does-not-exist". For "in" or "not-in" operations, provide a comma-separated list of values.
    column str
    The column to filter on.
    operation str
    The operator to apply. See the supported list at Filter Operators. Not all operators require a value.
    value str
    The value used for the filter. Not needed if operation is "exists" or "does-not-exist". For "in" or "not-in" operations, provide a comma-separated list of values.
    column String
    The column to filter on.
    operation String
    The operator to apply. See the supported list at Filter Operators. Not all operators require a value.
    value String
    The value used for the filter. Not needed if operation is "exists" or "does-not-exist". For "in" or "not-in" operations, provide a comma-separated list of values.

    Package Details

    Repository
    honeycombio honeycombio/terraform-provider-honeycombio
    License
    Notes
    This Pulumi package is based on the honeycombio Terraform Provider.
    honeycombio logo
    Honeycomb 0.45.0 published on Tuesday, Jan 6, 2026 by honeycombio
      Meet Neo: Your AI Platform Teammate