interface CfnResourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LakeFormation.CfnResourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslakeformation#CfnResourceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.lakeformation.CfnResourceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_lakeformation.CfnResourceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lakeformation » CfnResourceMixinProps |
Properties for CfnResourcePropsMixin.
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/cfn-property-mixins';
const cfnResourceMixinProps: lakeformation.CfnResourceMixinProps = {
hybridAccessEnabled: false,
resourceArn: 'resourceArn',
roleArn: 'roleArn',
useServiceLinkedRole: false,
withFederation: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| hybrid | boolean | IResolvable | Indicates whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies. |
| resource | string | The Amazon Resource Name (ARN) of the resource. |
| role | string | The IAM role that registered a resource. |
| use | boolean | IResolvable | Designates a trusted caller, an IAM principal, by registering this caller with the Data Catalog . |
| with | boolean | IResolvable | Allows Lake Formation to assume a role to access tables in a federated database. |
hybridAccessEnabled?
Type:
boolean | IResolvable
(optional)
Indicates whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
resourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the resource.
roleArn?
Type:
string
(optional)
The IAM role that registered a resource.
useServiceLinkedRole?
Type:
boolean | IResolvable
(optional)
Designates a trusted caller, an IAM principal, by registering this caller with the Data Catalog .
withFederation?
Type:
boolean | IResolvable
(optional)
Allows Lake Formation to assume a role to access tables in a federated database.

.NET
Go
Java
Python
TypeScript