Skip to content

Start Materialized View Refresh Task Run

glue_start_materialized_view_refresh_task_run R Documentation

Starts a materialized view refresh task run, for a specified table and columns

Description

Starts a materialized view refresh task run, for a specified table and columns.

Usage

glue_start_materialized_view_refresh_task_run(CatalogId, DatabaseName,
  TableName, FullRefresh)

Arguments

CatalogId

[required] The ID of the Data Catalog where the table reside. If none is supplied, the account ID is used by default.

DatabaseName

[required] The name of the database where the table resides.

TableName

[required] The name of the table to generate run the materialized view refresh task.

FullRefresh

Specifies whether this is a full refresh of the task run.

Value

A list with the following syntax:

list(
  MaterializedViewRefreshTaskRunId = "string"
)

Request syntax

svc$start_materialized_view_refresh_task_run(
  CatalogId = "string",
  DatabaseName = "string",
  TableName = "string",
  FullRefresh = TRUE|FALSE
)