Show / Hide Table of Contents

Class CfnCatalog.PrincipalPermissionsProperty

Permissions granted to a principal.

Inheritance
object
CfnCatalog.PrincipalPermissionsProperty
Implements
CfnCatalog.IPrincipalPermissionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCatalog.PrincipalPermissionsProperty : CfnCatalog.IPrincipalPermissionsProperty
Syntax (vb)
Public Class CfnCatalog.PrincipalPermissionsProperty Implements CfnCatalog.IPrincipalPermissionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-catalog-principalpermissions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Glue;

             var principalPermissionsProperty = new PrincipalPermissionsProperty {
                 Permissions = new [] { "permissions" },
                 Principal = new DataLakePrincipalProperty {
                     DataLakePrincipalIdentifier = "dataLakePrincipalIdentifier"
                 }
             };

Synopsis

Constructors

PrincipalPermissionsProperty()

Permissions granted to a principal.

Properties

Permissions

The permissions that are granted to the principal.

Principal

The Lake Formation principal.

Constructors

PrincipalPermissionsProperty()

Permissions granted to a principal.

public PrincipalPermissionsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-catalog-principalpermissions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Glue;

             var principalPermissionsProperty = new PrincipalPermissionsProperty {
                 Permissions = new [] { "permissions" },
                 Principal = new DataLakePrincipalProperty {
                     DataLakePrincipalIdentifier = "dataLakePrincipalIdentifier"
                 }
             };

Properties

Permissions

The permissions that are granted to the principal.

public string[]? Permissions { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-catalog-principalpermissions.html#cfn-glue-catalog-principalpermissions-permissions

Principal

The Lake Formation principal.

public object? Principal { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-catalog-principalpermissions.html#cfn-glue-catalog-principalpermissions-principal

Type union: either IResolvable or CfnCatalog.IDataLakePrincipalProperty

Implements

CfnCatalog.IPrincipalPermissionsProperty
Back to top Generated by DocFX