[][src]Struct rusoto_lakeformation::LakeFormationClient

pub struct LakeFormationClient { /* fields omitted */ }

A client for the AWS Lake Formation API.

Implementations

impl LakeFormationClient[src]

pub fn new(region: Region) -> LakeFormationClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> LakeFormationClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> LakeFormationClient[src]

Trait Implementations

impl Clone for LakeFormationClient[src]

impl LakeFormation for LakeFormationClient[src]

pub fn batch_grant_permissions<'life0, 'async_trait>(
    &'life0 self,
    input: BatchGrantPermissionsRequest
) -> Pin<Box<dyn Future<Output = Result<BatchGrantPermissionsResponse, RusotoError<BatchGrantPermissionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Batch operation to grant permissions to the principal.

pub fn batch_revoke_permissions<'life0, 'async_trait>(
    &'life0 self,
    input: BatchRevokePermissionsRequest
) -> Pin<Box<dyn Future<Output = Result<BatchRevokePermissionsResponse, RusotoError<BatchRevokePermissionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Batch operation to revoke permissions from the principal.

pub fn deregister_resource<'life0, 'async_trait>(
    &'life0 self,
    input: DeregisterResourceRequest
) -> Pin<Box<dyn Future<Output = Result<DeregisterResourceResponse, RusotoError<DeregisterResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deregisters the resource as managed by the Data Catalog.

When you deregister a path, Lake Formation removes the path from the inline policy attached to your service-linked role.

pub fn describe_resource<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeResourceRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeResourceResponse, RusotoError<DescribeResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Retrieves the current data access role for the given resource registered in AWS Lake Formation.

pub fn get_data_lake_settings<'life0, 'async_trait>(
    &'life0 self,
    input: GetDataLakeSettingsRequest
) -> Pin<Box<dyn Future<Output = Result<GetDataLakeSettingsResponse, RusotoError<GetDataLakeSettingsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Retrieves the list of the data lake administrators of a Lake Formation-managed data lake.

pub fn get_effective_permissions_for_path<'life0, 'async_trait>(
    &'life0 self,
    input: GetEffectivePermissionsForPathRequest
) -> Pin<Box<dyn Future<Output = Result<GetEffectivePermissionsForPathResponse, RusotoError<GetEffectivePermissionsForPathError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the Lake Formation permissions for a specified table or database resource located at a path in Amazon S3. GetEffectivePermissionsForPath will not return databases and tables if the catalog is encrypted.

pub fn grant_permissions<'life0, 'async_trait>(
    &'life0 self,
    input: GrantPermissionsRequest
) -> Pin<Box<dyn Future<Output = Result<GrantPermissionsResponse, RusotoError<GrantPermissionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Grants permissions to the principal to access metadata in the Data Catalog and data organized in underlying data storage such as Amazon S3.

For information about permissions, see Security and Access Control to Metadata and Data.

pub fn list_permissions<'life0, 'async_trait>(
    &'life0 self,
    input: ListPermissionsRequest
) -> Pin<Box<dyn Future<Output = Result<ListPermissionsResponse, RusotoError<ListPermissionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of the principal permissions on the resource, filtered by the permissions of the caller. For example, if you are granted an ALTER permission, you are able to see only the principal permissions for ALTER.

This operation returns only those permissions that have been explicitly granted.

For information about permissions, see Security and Access Control to Metadata and Data.

pub fn list_resources<'life0, 'async_trait>(
    &'life0 self,
    input: ListResourcesRequest
) -> Pin<Box<dyn Future<Output = Result<ListResourcesResponse, RusotoError<ListResourcesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the resources registered to be managed by the Data Catalog.

pub fn put_data_lake_settings<'life0, 'async_trait>(
    &'life0 self,
    input: PutDataLakeSettingsRequest
) -> Pin<Box<dyn Future<Output = Result<PutDataLakeSettingsResponse, RusotoError<PutDataLakeSettingsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Sets the list of data lake administrators who have admin privileges on all resources managed by Lake Formation. For more information on admin privileges, see Granting Lake Formation Permissions.

This API replaces the current list of data lake admins with the new list being passed. To add an admin, fetch the current list and add the new admin to that list and pass that list in this API.

pub fn register_resource<'life0, 'async_trait>(
    &'life0 self,
    input: RegisterResourceRequest
) -> Pin<Box<dyn Future<Output = Result<RegisterResourceResponse, RusotoError<RegisterResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Registers the resource as managed by the Data Catalog.

To add or update data, Lake Formation needs read/write access to the chosen Amazon S3 path. Choose a role that you know has permission to do this, or choose the AWSServiceRoleForLakeFormationDataAccess service-linked role. When you register the first Amazon S3 path, the service-linked role and a new inline policy are created on your behalf. Lake Formation adds the first path to the inline policy and attaches it to the service-linked role. When you register subsequent paths, Lake Formation adds the path to the existing policy.

The following request registers a new location and gives AWS Lake Formation permission to use the service-linked role to access that location.

ResourceArn = arn:aws:s3:::my-bucket UseServiceLinkedRole = true

If UseServiceLinkedRole is not set to true, you must provide or set the RoleArn:

arn:aws:iam::12345:role/my-data-access-role

pub fn revoke_permissions<'life0, 'async_trait>(
    &'life0 self,
    input: RevokePermissionsRequest
) -> Pin<Box<dyn Future<Output = Result<RevokePermissionsResponse, RusotoError<RevokePermissionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Revokes permissions to the principal to access metadata in the Data Catalog and data organized in underlying data storage such as Amazon S3.

pub fn update_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateResourceRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateResourceResponse, RusotoError<UpdateResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the data access role used for vending access to the given (registered) resource in AWS Lake Formation.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.