Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DataLakeSettings

import type { DataLakeSettings } from "https://aws-api.deno.dev/v0.3/services/lakeformation.ts?docs=full";

A structure representing a list of Lake Formation principals designated as data lake administrators and lists of principal permission entries for default create database and default create table permissions.

interface DataLakeSettings {
AllowExternalDataFiltering?: boolean | null;
AuthorizedSessionTagValueList?: string[] | null;
CreateDatabaseDefaultPermissions?: PrincipalPermissions[] | null;
CreateTableDefaultPermissions?: PrincipalPermissions[] | null;
DataLakeAdmins?: DataLakePrincipal[] | null;
ExternalDataFilteringAllowList?: DataLakePrincipal[] | null;
TrustedResourceOwners?: string[] | null;
}

§Properties

§
AllowExternalDataFiltering?: boolean | null
[src]

Whether to allow Amazon EMR clusters to access data managed by Lake Formation.

If true, you allow Amazon EMR clusters to access data in Amazon S3 locations that are registered with Lake Formation.

If false or null, no Amazon EMR clusters will be able to access data in Amazon S3 locations that are registered with Lake Formation.

For more information, see (Optional) Allow Data Filtering on Amazon EMR.

§
AuthorizedSessionTagValueList?: string[] | null
[src]

Lake Formation relies on a privileged process secured by Amazon EMR or the third party integrator to tag the user's role while assuming it. Lake Formation will publish the acceptable key-value pair, for example key = "LakeFormationTrustedCaller" and value = "TRUE" and the third party integrator must properly tag the temporary security credentials that will be used to call Lake Formation's administrative APIs.

§
CreateDatabaseDefaultPermissions?: PrincipalPermissions[] | null
[src]

Specifies whether access control on newly created database is managed by Lake Formation permissions or exclusively by IAM permissions. You can override this default setting when you create a database.

A null value indicates access control by Lake Formation permissions. A value that assigns ALL to IAM_ALLOWED_PRINCIPALS indicates access control by IAM permissions. This is referred to as the setting "Use only IAM access control," and is for backward compatibility with the Glue permission model implemented by IAM permissions.

The only permitted values are an empty array or an array that contains a single JSON object that grants ALL to IAM_ALLOWED_PRINCIPALS.

For more information, see Changing the Default Security Settings for Your Data Lake.

§
CreateTableDefaultPermissions?: PrincipalPermissions[] | null
[src]

Specifies whether access control on newly created table is managed by Lake Formation permissions or exclusively by IAM permissions.

A null value indicates access control by Lake Formation permissions. A value that assigns ALL to IAM_ALLOWED_PRINCIPALS indicates access control by IAM permissions. This is referred to as the setting "Use only IAM access control," and is for backward compatibility with the Glue permission model implemented by IAM permissions.

The only permitted values are an empty array or an array that contains a single JSON object that grants ALL to IAM_ALLOWED_PRINCIPALS.

For more information, see Changing the Default Security Settings for Your Data Lake.

§
DataLakeAdmins?: DataLakePrincipal[] | null
[src]

A list of Lake Formation principals. Supported principals are IAM users or IAM roles.

§
ExternalDataFilteringAllowList?: DataLakePrincipal[] | null
[src]

A list of the account IDs of Amazon Web Services accounts with Amazon EMR clusters that are to perform data filtering.>

§
TrustedResourceOwners?: string[] | null
[src]

A list of the resource-owning account IDs that the caller's account can use to share their user access details (user ARNs). The user ARNs can be logged in the resource owner's CloudTrail log.

You may want to specify this property when you are in a high-trust boundary, such as the same team or company.