You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::LakeFormation::Types::PrincipalPermissions

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PrincipalPermissions as input to an Aws::Client method, you can use a vanilla Hash:

{
  principal: {
    data_lake_principal_identifier: "DataLakePrincipalString",
  },
  permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS
}

Permissions granted to a principal.

Instance Attribute Summary collapse

Instance Attribute Details

#permissionsArray<String>

The permissions that are granted to the principal.

Returns:

  • (Array<String>)

    The permissions that are granted to the principal.

#principalTypes::DataLakePrincipal

The principal who is granted permissions.

Returns: