aws-cdk-lib.aws_lakeformation.CfnDataLakeSettingsProps

interface CfnDataLakeSettingsProps

LanguageType name
.NETAmazon.CDK.AWS.LakeFormation.CfnDataLakeSettingsProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslakeformation#CfnDataLakeSettingsProps
Javasoftware.amazon.awscdk.services.lakeformation.CfnDataLakeSettingsProps
Pythonaws_cdk.aws_lakeformation.CfnDataLakeSettingsProps
TypeScript aws-cdk-lib » aws_lakeformation » CfnDataLakeSettingsProps

Properties for defining a CfnDataLakeSettings.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lakeformation as lakeformation } from 'aws-cdk-lib';

declare const parameters: any;
const cfnDataLakeSettingsProps: lakeformation.CfnDataLakeSettingsProps = {
  admins: [{
    dataLakePrincipalIdentifier: 'dataLakePrincipalIdentifier',
  }],
  allowExternalDataFiltering: false,
  authorizedSessionTagValueList: ['authorizedSessionTagValueList'],
  createDatabaseDefaultPermissions: [{
    permissions: ['permissions'],
    principal: {
      dataLakePrincipalIdentifier: 'dataLakePrincipalIdentifier',
    },
  }],
  createTableDefaultPermissions: [{
    permissions: ['permissions'],
    principal: {
      dataLakePrincipalIdentifier: 'dataLakePrincipalIdentifier',
    },
  }],
  externalDataFilteringAllowList: [{
    dataLakePrincipalIdentifier: 'dataLakePrincipalIdentifier',
  }],
  parameters: parameters,
  trustedResourceOwners: ['trustedResourceOwners'],
};

Properties

NameTypeDescription
admins?IResolvable | IResolvable | DataLakePrincipalProperty[]A list of AWS Lake Formation principals.
allowExternalDataFiltering?boolean | IResolvableWhether to allow Amazon EMR clusters or other third-party query engines to access data managed by Lake Formation .
authorizedSessionTagValueList?string[]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.
createDatabaseDefaultPermissions?IResolvable | IResolvable | PrincipalPermissionsProperty[]Specifies whether access control on a newly created database is managed by Lake Formation permissions or exclusively by IAM permissions.
createTableDefaultPermissions?IResolvable | IResolvable | PrincipalPermissionsProperty[]Specifies whether access control on a newly created table is managed by Lake Formation permissions or exclusively by IAM permissions.
externalDataFilteringAllowList?IResolvable | IResolvable | DataLakePrincipalProperty[]A list of the account IDs of AWS accounts with Amazon EMR clusters or third-party engines that are allwed to perform data filtering.
parameters?anyA key-value map that provides an additional configuration on your data lake.
trustedResourceOwners?string[]An array of UTF-8 strings.

admins?

Type: IResolvable | IResolvable | DataLakePrincipalProperty[] (optional)

A list of AWS Lake Formation principals.


allowExternalDataFiltering?

Type: boolean | IResolvable (optional)

Whether to allow Amazon EMR clusters or other third-party query engines to access data managed by Lake Formation .

If set to true, you allow Amazon EMR clusters or other third-party engines to access data in Amazon S3 locations that are registered with Lake Formation .

If false or null, no third-party query engines will be able to access data in Amazon S3 locations that are registered with Lake Formation.

For more information, see External data filtering setting .


authorizedSessionTagValueList?

Type: string[] (optional)

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 API operations.


createDatabaseDefaultPermissions?

Type: IResolvable | IResolvable | PrincipalPermissionsProperty[] (optional)

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

A null value indicates that the access is controlled by Lake Formation permissions. ALL permissions assigned to IAM_ALLOWED_PRINCIPALS group indicates that the user's IAM permissions determine the access to the database. This is referred to as the setting "Use only IAM access control," and is to support backward compatibility with the AWS 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?

Type: IResolvable | IResolvable | PrincipalPermissionsProperty[] (optional)

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

A null value indicates that the access is controlled by Lake Formation permissions. ALL permissions assigned to IAM_ALLOWED_PRINCIPALS group indicate that the user's IAM permissions determine the access to the table. This is referred to as the setting "Use only IAM access control," and is to support the backward compatibility with the AWS 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 permissions to IAM_ALLOWED_PRINCIPALS .

For more information, see Changing the default security settings for your data lake .


externalDataFilteringAllowList?

Type: IResolvable | IResolvable | DataLakePrincipalProperty[] (optional)

A list of the account IDs of AWS accounts with Amazon EMR clusters or third-party engines that are allwed to perform data filtering.


parameters?

Type: any (optional)

A key-value map that provides an additional configuration on your data lake.

CrossAccountVersion is the key you can configure in the Parameters field. Accepted values for the CrossAccountVersion key are 1, 2, and 3.


trustedResourceOwners?

Type: string[] (optional)

An array of UTF-8 strings.

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.