Modify Lakehouse Configuration
| redshift_modify_lakehouse_configuration | R Documentation |
Modifies the lakehouse configuration for a cluster¶
Description¶
Modifies the lakehouse configuration for a cluster. This operation allows you to manage Amazon Redshift federated permissions and Amazon Web Services IAM Identity Center trusted identity propagation.
Usage¶
redshift_modify_lakehouse_configuration(ClusterIdentifier,
LakehouseRegistration, CatalogName, LakehouseIdcRegistration,
LakehouseIdcApplicationArn, DryRun)
Arguments¶
ClusterIdentifier |
[required] The unique identifier of the cluster whose lakehouse configuration you want to modify. |
LakehouseRegistration |
Specifies whether to register or deregister the cluster with
Amazon Redshift federated permissions. Valid values are
|
CatalogName |
The name of the Glue data catalog that will be associated with the cluster enabled with Amazon Redshift federated permissions. Constraints:
Pattern: Example: |
LakehouseIdcRegistration |
Modifies the Amazon Web Services IAM Identity Center trusted
identity propagation on a cluster enabled with Amazon Redshift federated
permissions. Valid values are |
LakehouseIdcApplicationArn |
The Amazon Resource Name (ARN) of the IAM Identity Center application used for enabling Amazon Web Services IAM Identity Center trusted identity propagation on a cluster enabled with Amazon Redshift federated permissions. |
DryRun |
A boolean value that, if |
Value¶
A list with the following syntax:
list(
ClusterIdentifier = "string",
LakehouseIdcApplicationArn = "string",
LakehouseRegistrationStatus = "string",
CatalogArn = "string"
)
Request syntax¶
svc$modify_lakehouse_configuration(
ClusterIdentifier = "string",
LakehouseRegistration = "Register"|"Deregister",
CatalogName = "string",
LakehouseIdcRegistration = "Associate"|"Disassociate",
LakehouseIdcApplicationArn = "string",
DryRun = TRUE|FALSE
)