[][src]Struct rusoto_glue::GlueClient

pub struct GlueClient { /* fields omitted */ }

A client for the AWS Glue API.

Methods

impl GlueClient[src]

pub fn new(region: Region) -> GlueClient[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
) -> GlueClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

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

Trait Implementations

impl Glue for GlueClient[src]

fn batch_create_partition(
    &self,
    input: BatchCreatePartitionRequest
) -> RusotoFuture<BatchCreatePartitionResponse, BatchCreatePartitionError>
[src]

Creates one or more partitions in a batch operation.

fn batch_delete_connection(
    &self,
    input: BatchDeleteConnectionRequest
) -> RusotoFuture<BatchDeleteConnectionResponse, BatchDeleteConnectionError>
[src]

Deletes a list of connection definitions from the Data Catalog.

fn batch_delete_partition(
    &self,
    input: BatchDeletePartitionRequest
) -> RusotoFuture<BatchDeletePartitionResponse, BatchDeletePartitionError>
[src]

Deletes one or more partitions in a batch operation.

fn batch_delete_table(
    &self,
    input: BatchDeleteTableRequest
) -> RusotoFuture<BatchDeleteTableResponse, BatchDeleteTableError>
[src]

Deletes multiple tables at once.

After completing this operation, you no longer have access to the table versions and partitions that belong to the deleted table. AWS Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.

To ensure the immediate deletion of all related resources, before calling BatchDeleteTable, use DeleteTableVersion or BatchDeleteTableVersion, and DeletePartition or BatchDeletePartition, to delete any resources that belong to the table.

fn batch_delete_table_version(
    &self,
    input: BatchDeleteTableVersionRequest
) -> RusotoFuture<BatchDeleteTableVersionResponse, BatchDeleteTableVersionError>
[src]

Deletes a specified batch of versions of a table.

fn batch_get_crawlers(
    &self,
    input: BatchGetCrawlersRequest
) -> RusotoFuture<BatchGetCrawlersResponse, BatchGetCrawlersError>
[src]

Returns a list of resource metadata for a given list of crawler names. After calling the ListCrawlers operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

fn batch_get_dev_endpoints(
    &self,
    input: BatchGetDevEndpointsRequest
) -> RusotoFuture<BatchGetDevEndpointsResponse, BatchGetDevEndpointsError>
[src]

Returns a list of resource metadata for a given list of development endpoint names. After calling the ListDevEndpoints operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

fn batch_get_jobs(
    &self,
    input: BatchGetJobsRequest
) -> RusotoFuture<BatchGetJobsResponse, BatchGetJobsError>
[src]

Returns a list of resource metadata for a given list of job names. After calling the ListJobs operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

fn batch_get_partition(
    &self,
    input: BatchGetPartitionRequest
) -> RusotoFuture<BatchGetPartitionResponse, BatchGetPartitionError>
[src]

Retrieves partitions in a batch request.

fn batch_get_triggers(
    &self,
    input: BatchGetTriggersRequest
) -> RusotoFuture<BatchGetTriggersResponse, BatchGetTriggersError>
[src]

Returns a list of resource metadata for a given list of trigger names. After calling the ListTriggers operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

fn batch_get_workflows(
    &self,
    input: BatchGetWorkflowsRequest
) -> RusotoFuture<BatchGetWorkflowsResponse, BatchGetWorkflowsError>
[src]

Returns a list of resource metadata for a given list of workflow names. After calling the ListWorkflows operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.

fn batch_stop_job_run(
    &self,
    input: BatchStopJobRunRequest
) -> RusotoFuture<BatchStopJobRunResponse, GlueBatchStopJobRunError>
[src]

Stops one or more job runs for a specified job definition.

fn cancel_ml_task_run(
    &self,
    input: CancelMLTaskRunRequest
) -> RusotoFuture<CancelMLTaskRunResponse, CancelMLTaskRunError>
[src]

Cancels (stops) a task run. Machine learning task runs are asynchronous tasks that AWS Glue runs on your behalf as part of various machine learning workflows. You can cancel a machine learning task run at any time by calling CancelMLTaskRun with a task run's parent transform's TransformID and the task run's TaskRunId.

fn create_classifier(
    &self,
    input: CreateClassifierRequest
) -> RusotoFuture<CreateClassifierResponse, CreateClassifierError>
[src]

Creates a classifier in the user's account. This can be a GrokClassifier, an XMLClassifier, a JsonClassifier, or a CsvClassifier, depending on which field of the request is present.

fn create_connection(
    &self,
    input: CreateConnectionRequest
) -> RusotoFuture<CreateConnectionResponse, CreateConnectionError>
[src]

Creates a connection definition in the Data Catalog.

fn create_crawler(
    &self,
    input: CreateCrawlerRequest
) -> RusotoFuture<CreateCrawlerResponse, CreateCrawlerError>
[src]

Creates a new crawler with specified targets, role, configuration, and optional schedule. At least one crawl target must be specified, in the s3Targets field, the jdbcTargets field, or the DynamoDBTargets field.

fn create_database(
    &self,
    input: CreateDatabaseRequest
) -> RusotoFuture<CreateDatabaseResponse, CreateDatabaseError>
[src]

Creates a new database in a Data Catalog.

fn create_dev_endpoint(
    &self,
    input: CreateDevEndpointRequest
) -> RusotoFuture<CreateDevEndpointResponse, CreateDevEndpointError>
[src]

Creates a new development endpoint.

fn create_job(
    &self,
    input: CreateJobRequest
) -> RusotoFuture<CreateJobResponse, CreateJobError>
[src]

Creates a new job definition.

fn create_ml_transform(
    &self,
    input: CreateMLTransformRequest
) -> RusotoFuture<CreateMLTransformResponse, CreateMLTransformError>
[src]

Creates an AWS Glue machine learning transform. This operation creates the transform and all the necessary parameters to train it.

Call this operation as the first step in the process of using a machine learning transform (such as the FindMatches transform) for deduplicating data. You can provide an optional Description, in addition to the parameters that you want to use for your algorithm.

You must also specify certain parameters for the tasks that AWS Glue runs on your behalf as part of learning from your data and creating a high-quality machine learning transform. These parameters include Role, and optionally, AllocatedCapacity, Timeout, and MaxRetries. For more information, see Jobs.

fn create_partition(
    &self,
    input: CreatePartitionRequest
) -> RusotoFuture<CreatePartitionResponse, CreatePartitionError>
[src]

Creates a new partition.

fn create_script(
    &self,
    input: CreateScriptRequest
) -> RusotoFuture<CreateScriptResponse, CreateScriptError>
[src]

Transforms a directed acyclic graph (DAG) into code.

fn create_security_configuration(
    &self,
    input: CreateSecurityConfigurationRequest
) -> RusotoFuture<CreateSecurityConfigurationResponse, CreateSecurityConfigurationError>
[src]

Creates a new security configuration. A security configuration is a set of security properties that can be used by AWS Glue. You can use a security configuration to encrypt data at rest. For information about using security configurations in AWS Glue, see Encrypting Data Written by Crawlers, Jobs, and Development Endpoints.

fn create_table(
    &self,
    input: CreateTableRequest
) -> RusotoFuture<CreateTableResponse, CreateTableError>
[src]

Creates a new table definition in the Data Catalog.

fn create_trigger(
    &self,
    input: CreateTriggerRequest
) -> RusotoFuture<CreateTriggerResponse, CreateTriggerError>
[src]

Creates a new trigger.

fn create_user_defined_function(
    &self,
    input: CreateUserDefinedFunctionRequest
) -> RusotoFuture<CreateUserDefinedFunctionResponse, CreateUserDefinedFunctionError>
[src]

Creates a new function definition in the Data Catalog.

fn create_workflow(
    &self,
    input: CreateWorkflowRequest
) -> RusotoFuture<CreateWorkflowResponse, CreateWorkflowError>
[src]

Creates a new workflow.

fn delete_classifier(
    &self,
    input: DeleteClassifierRequest
) -> RusotoFuture<DeleteClassifierResponse, DeleteClassifierError>
[src]

Removes a classifier from the Data Catalog.

fn delete_connection(
    &self,
    input: DeleteConnectionRequest
) -> RusotoFuture<DeleteConnectionResponse, DeleteConnectionError>
[src]

Deletes a connection from the Data Catalog.

fn delete_crawler(
    &self,
    input: DeleteCrawlerRequest
) -> RusotoFuture<DeleteCrawlerResponse, DeleteCrawlerError>
[src]

Removes a specified crawler from the AWS Glue Data Catalog, unless the crawler state is RUNNING.

fn delete_database(
    &self,
    input: DeleteDatabaseRequest
) -> RusotoFuture<DeleteDatabaseResponse, DeleteDatabaseError>
[src]

Removes a specified database from a Data Catalog.

After completing this operation, you no longer have access to the tables (and all table versions and partitions that might belong to the tables) and the user-defined functions in the deleted database. AWS Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.

To ensure the immediate deletion of all related resources, before calling DeleteDatabase, use DeleteTableVersion or BatchDeleteTableVersion, DeletePartition or BatchDeletePartition, DeleteUserDefinedFunction, and DeleteTable or BatchDeleteTable, to delete any resources that belong to the database.

fn delete_dev_endpoint(
    &self,
    input: DeleteDevEndpointRequest
) -> RusotoFuture<DeleteDevEndpointResponse, DeleteDevEndpointError>
[src]

Deletes a specified development endpoint.

fn delete_job(
    &self,
    input: DeleteJobRequest
) -> RusotoFuture<DeleteJobResponse, DeleteJobError>
[src]

Deletes a specified job definition. If the job definition is not found, no exception is thrown.

fn delete_ml_transform(
    &self,
    input: DeleteMLTransformRequest
) -> RusotoFuture<DeleteMLTransformResponse, DeleteMLTransformError>
[src]

Deletes an AWS Glue machine learning transform. Machine learning transforms are a special type of transform that use machine learning to learn the details of the transformation to be performed by learning from examples provided by humans. These transformations are then saved by AWS Glue. If you no longer need a transform, you can delete it by calling DeleteMLTransforms. However, any AWS Glue jobs that still reference the deleted transform will no longer succeed.

fn delete_partition(
    &self,
    input: DeletePartitionRequest
) -> RusotoFuture<DeletePartitionResponse, DeletePartitionError>
[src]

Deletes a specified partition.

fn delete_resource_policy(
    &self,
    input: DeleteResourcePolicyRequest
) -> RusotoFuture<DeleteResourcePolicyResponse, DeleteResourcePolicyError>
[src]

Deletes a specified policy.

fn delete_security_configuration(
    &self,
    input: DeleteSecurityConfigurationRequest
) -> RusotoFuture<DeleteSecurityConfigurationResponse, DeleteSecurityConfigurationError>
[src]

Deletes a specified security configuration.

fn delete_table(
    &self,
    input: DeleteTableRequest
) -> RusotoFuture<DeleteTableResponse, DeleteTableError>
[src]

Removes a table definition from the Data Catalog.

After completing this operation, you no longer have access to the table versions and partitions that belong to the deleted table. AWS Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.

To ensure the immediate deletion of all related resources, before calling DeleteTable, use DeleteTableVersion or BatchDeleteTableVersion, and DeletePartition or BatchDeletePartition, to delete any resources that belong to the table.

fn delete_table_version(
    &self,
    input: DeleteTableVersionRequest
) -> RusotoFuture<DeleteTableVersionResponse, DeleteTableVersionError>
[src]

Deletes a specified version of a table.

fn delete_trigger(
    &self,
    input: DeleteTriggerRequest
) -> RusotoFuture<DeleteTriggerResponse, DeleteTriggerError>
[src]

Deletes a specified trigger. If the trigger is not found, no exception is thrown.

fn delete_user_defined_function(
    &self,
    input: DeleteUserDefinedFunctionRequest
) -> RusotoFuture<DeleteUserDefinedFunctionResponse, DeleteUserDefinedFunctionError>
[src]

Deletes an existing function definition from the Data Catalog.

fn delete_workflow(
    &self,
    input: DeleteWorkflowRequest
) -> RusotoFuture<DeleteWorkflowResponse, DeleteWorkflowError>
[src]

Deletes a workflow.

fn get_catalog_import_status(
    &self,
    input: GetCatalogImportStatusRequest
) -> RusotoFuture<GetCatalogImportStatusResponse, GetCatalogImportStatusError>
[src]

Retrieves the status of a migration operation.

fn get_classifier(
    &self,
    input: GetClassifierRequest
) -> RusotoFuture<GetClassifierResponse, GetClassifierError>
[src]

Retrieve a classifier by name.

fn get_classifiers(
    &self,
    input: GetClassifiersRequest
) -> RusotoFuture<GetClassifiersResponse, GetClassifiersError>
[src]

Lists all classifier objects in the Data Catalog.

fn get_connection(
    &self,
    input: GetConnectionRequest
) -> RusotoFuture<GetConnectionResponse, GetConnectionError>
[src]

Retrieves a connection definition from the Data Catalog.

fn get_connections(
    &self,
    input: GetConnectionsRequest
) -> RusotoFuture<GetConnectionsResponse, GetConnectionsError>
[src]

Retrieves a list of connection definitions from the Data Catalog.

fn get_crawler(
    &self,
    input: GetCrawlerRequest
) -> RusotoFuture<GetCrawlerResponse, GetCrawlerError>
[src]

Retrieves metadata for a specified crawler.

fn get_crawler_metrics(
    &self,
    input: GetCrawlerMetricsRequest
) -> RusotoFuture<GetCrawlerMetricsResponse, GetCrawlerMetricsError>
[src]

Retrieves metrics about specified crawlers.

fn get_crawlers(
    &self,
    input: GetCrawlersRequest
) -> RusotoFuture<GetCrawlersResponse, GetCrawlersError>
[src]

Retrieves metadata for all crawlers defined in the customer account.

fn get_data_catalog_encryption_settings(
    &self,
    input: GetDataCatalogEncryptionSettingsRequest
) -> RusotoFuture<GetDataCatalogEncryptionSettingsResponse, GetDataCatalogEncryptionSettingsError>
[src]

Retrieves the security configuration for a specified catalog.

fn get_database(
    &self,
    input: GetDatabaseRequest
) -> RusotoFuture<GetDatabaseResponse, GetDatabaseError>
[src]

Retrieves the definition of a specified database.

fn get_databases(
    &self,
    input: GetDatabasesRequest
) -> RusotoFuture<GetDatabasesResponse, GetDatabasesError>
[src]

Retrieves all databases defined in a given Data Catalog.

fn get_dataflow_graph(
    &self,
    input: GetDataflowGraphRequest
) -> RusotoFuture<GetDataflowGraphResponse, GetDataflowGraphError>
[src]

Transforms a Python script into a directed acyclic graph (DAG).

fn get_dev_endpoint(
    &self,
    input: GetDevEndpointRequest
) -> RusotoFuture<GetDevEndpointResponse, GetDevEndpointError>
[src]

Retrieves information about a specified development endpoint.

When you create a development endpoint in a virtual private cloud (VPC), AWS Glue returns only a private IP address, and the public IP address field is not populated. When you create a non-VPC development endpoint, AWS Glue returns only a public IP address.

fn get_dev_endpoints(
    &self,
    input: GetDevEndpointsRequest
) -> RusotoFuture<GetDevEndpointsResponse, GetDevEndpointsError>
[src]

Retrieves all the development endpoints in this AWS account.

When you create a development endpoint in a virtual private cloud (VPC), AWS Glue returns only a private IP address and the public IP address field is not populated. When you create a non-VPC development endpoint, AWS Glue returns only a public IP address.

fn get_job(
    &self,
    input: GetJobRequest
) -> RusotoFuture<GetJobResponse, GetJobError>
[src]

Retrieves an existing job definition.

fn get_job_bookmark(
    &self,
    input: GetJobBookmarkRequest
) -> RusotoFuture<GetJobBookmarkResponse, GetJobBookmarkError>
[src]

Returns information on a job bookmark entry.

fn get_job_run(
    &self,
    input: GetJobRunRequest
) -> RusotoFuture<GetJobRunResponse, GetJobRunError>
[src]

Retrieves the metadata for a given job run.

fn get_job_runs(
    &self,
    input: GetJobRunsRequest
) -> RusotoFuture<GetJobRunsResponse, GetJobRunsError>
[src]

Retrieves metadata for all runs of a given job definition.

fn get_jobs(
    &self,
    input: GetJobsRequest
) -> RusotoFuture<GetJobsResponse, GetJobsError>
[src]

Retrieves all current job definitions.

fn get_ml_task_run(
    &self,
    input: GetMLTaskRunRequest
) -> RusotoFuture<GetMLTaskRunResponse, GetMLTaskRunError>
[src]

Gets details for a specific task run on a machine learning transform. Machine learning task runs are asynchronous tasks that AWS Glue runs on your behalf as part of various machine learning workflows. You can check the stats of any task run by calling GetMLTaskRun with the TaskRunID and its parent transform's TransformID.

fn get_ml_task_runs(
    &self,
    input: GetMLTaskRunsRequest
) -> RusotoFuture<GetMLTaskRunsResponse, GetMLTaskRunsError>
[src]

Gets a list of runs for a machine learning transform. Machine learning task runs are asynchronous tasks that AWS Glue runs on your behalf as part of various machine learning workflows. You can get a sortable, filterable list of machine learning task runs by calling GetMLTaskRuns with their parent transform's TransformID and other optional parameters as documented in this section.

This operation returns a list of historic runs and must be paginated.

fn get_ml_transform(
    &self,
    input: GetMLTransformRequest
) -> RusotoFuture<GetMLTransformResponse, GetMLTransformError>
[src]

Gets an AWS Glue machine learning transform artifact and all its corresponding metadata. Machine learning transforms are a special type of transform that use machine learning to learn the details of the transformation to be performed by learning from examples provided by humans. These transformations are then saved by AWS Glue. You can retrieve their metadata by calling GetMLTransform.

fn get_ml_transforms(
    &self,
    input: GetMLTransformsRequest
) -> RusotoFuture<GetMLTransformsResponse, GetMLTransformsError>
[src]

Gets a sortable, filterable list of existing AWS Glue machine learning transforms. Machine learning transforms are a special type of transform that use machine learning to learn the details of the transformation to be performed by learning from examples provided by humans. These transformations are then saved by AWS Glue, and you can retrieve their metadata by calling GetMLTransforms.

fn get_mapping(
    &self,
    input: GetMappingRequest
) -> RusotoFuture<GetMappingResponse, GetMappingError>
[src]

Creates mappings.

fn get_partition(
    &self,
    input: GetPartitionRequest
) -> RusotoFuture<GetPartitionResponse, GetPartitionError>
[src]

Retrieves information about a specified partition.

fn get_partitions(
    &self,
    input: GetPartitionsRequest
) -> RusotoFuture<GetPartitionsResponse, GetPartitionsError>
[src]

Retrieves information about the partitions in a table.

fn get_plan(
    &self,
    input: GetPlanRequest
) -> RusotoFuture<GetPlanResponse, GetPlanError>
[src]

Gets code to perform a specified mapping.

fn get_resource_policy(
    &self
) -> RusotoFuture<GetResourcePolicyResponse, GetResourcePolicyError>
[src]

Retrieves a specified resource policy.

fn get_security_configuration(
    &self,
    input: GetSecurityConfigurationRequest
) -> RusotoFuture<GetSecurityConfigurationResponse, GetSecurityConfigurationError>
[src]

Retrieves a specified security configuration.

fn get_security_configurations(
    &self,
    input: GetSecurityConfigurationsRequest
) -> RusotoFuture<GetSecurityConfigurationsResponse, GetSecurityConfigurationsError>
[src]

Retrieves a list of all security configurations.

fn get_table(
    &self,
    input: GetTableRequest
) -> RusotoFuture<GetTableResponse, GetTableError>
[src]

Retrieves the Table definition in a Data Catalog for a specified table.

fn get_table_version(
    &self,
    input: GetTableVersionRequest
) -> RusotoFuture<GetTableVersionResponse, GetTableVersionError>
[src]

Retrieves a specified version of a table.

fn get_table_versions(
    &self,
    input: GetTableVersionsRequest
) -> RusotoFuture<GetTableVersionsResponse, GetTableVersionsError>
[src]

Retrieves a list of strings that identify available versions of a specified table.

fn get_tables(
    &self,
    input: GetTablesRequest
) -> RusotoFuture<GetTablesResponse, GetTablesError>
[src]

Retrieves the definitions of some or all of the tables in a given Database.

fn get_tags(
    &self,
    input: GetTagsRequest
) -> RusotoFuture<GetTagsResponse, GetTagsError>
[src]

Retrieves a list of tags associated with a resource.

fn get_trigger(
    &self,
    input: GetTriggerRequest
) -> RusotoFuture<GetTriggerResponse, GetTriggerError>
[src]

Retrieves the definition of a trigger.

fn get_triggers(
    &self,
    input: GetTriggersRequest
) -> RusotoFuture<GetTriggersResponse, GetTriggersError>
[src]

Gets all the triggers associated with a job.

fn get_user_defined_function(
    &self,
    input: GetUserDefinedFunctionRequest
) -> RusotoFuture<GetUserDefinedFunctionResponse, GetUserDefinedFunctionError>
[src]

Retrieves a specified function definition from the Data Catalog.

fn get_user_defined_functions(
    &self,
    input: GetUserDefinedFunctionsRequest
) -> RusotoFuture<GetUserDefinedFunctionsResponse, GetUserDefinedFunctionsError>
[src]

Retrieves multiple function definitions from the Data Catalog.

fn get_workflow(
    &self,
    input: GetWorkflowRequest
) -> RusotoFuture<GetWorkflowResponse, GetWorkflowError>
[src]

Retrieves resource metadata for a workflow.

fn get_workflow_run(
    &self,
    input: GetWorkflowRunRequest
) -> RusotoFuture<GetWorkflowRunResponse, GetWorkflowRunError>
[src]

Retrieves the metadata for a given workflow run.

fn get_workflow_run_properties(
    &self,
    input: GetWorkflowRunPropertiesRequest
) -> RusotoFuture<GetWorkflowRunPropertiesResponse, GetWorkflowRunPropertiesError>
[src]

Retrieves the workflow run properties which were set during the run.

fn get_workflow_runs(
    &self,
    input: GetWorkflowRunsRequest
) -> RusotoFuture<GetWorkflowRunsResponse, GetWorkflowRunsError>
[src]

Retrieves metadata for all runs of a given workflow.

fn import_catalog_to_glue(
    &self,
    input: ImportCatalogToGlueRequest
) -> RusotoFuture<ImportCatalogToGlueResponse, ImportCatalogToGlueError>
[src]

Imports an existing Amazon Athena Data Catalog to AWS Glue

fn list_crawlers(
    &self,
    input: ListCrawlersRequest
) -> RusotoFuture<ListCrawlersResponse, ListCrawlersError>
[src]

Retrieves the names of all crawler resources in this AWS account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.

This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.

fn list_dev_endpoints(
    &self,
    input: ListDevEndpointsRequest
) -> RusotoFuture<ListDevEndpointsResponse, ListDevEndpointsError>
[src]

Retrieves the names of all DevEndpoint resources in this AWS account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.

This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.

fn list_jobs(
    &self,
    input: ListJobsRequest
) -> RusotoFuture<ListJobsResponse, ListJobsError>
[src]

Retrieves the names of all job resources in this AWS account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.

This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.

fn list_triggers(
    &self,
    input: ListTriggersRequest
) -> RusotoFuture<ListTriggersResponse, ListTriggersError>
[src]

Retrieves the names of all trigger resources in this AWS account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.

This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.

fn list_workflows(
    &self,
    input: ListWorkflowsRequest
) -> RusotoFuture<ListWorkflowsResponse, ListWorkflowsError>
[src]

Lists names of workflows created in the account.

fn put_data_catalog_encryption_settings(
    &self,
    input: PutDataCatalogEncryptionSettingsRequest
) -> RusotoFuture<PutDataCatalogEncryptionSettingsResponse, PutDataCatalogEncryptionSettingsError>
[src]

Sets the security configuration for a specified catalog. After the configuration has been set, the specified encryption is applied to every catalog write thereafter.

fn put_resource_policy(
    &self,
    input: PutResourcePolicyRequest
) -> RusotoFuture<PutResourcePolicyResponse, PutResourcePolicyError>
[src]

Sets the Data Catalog resource policy for access control.

fn put_workflow_run_properties(
    &self,
    input: PutWorkflowRunPropertiesRequest
) -> RusotoFuture<PutWorkflowRunPropertiesResponse, PutWorkflowRunPropertiesError>
[src]

Puts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.

fn reset_job_bookmark(
    &self,
    input: ResetJobBookmarkRequest
) -> RusotoFuture<ResetJobBookmarkResponse, ResetJobBookmarkError>
[src]

Resets a bookmark entry.

fn search_tables(
    &self,
    input: SearchTablesRequest
) -> RusotoFuture<SearchTablesResponse, SearchTablesError>
[src]

Searches a set of tables based on properties in the table metadata as well as on the parent database. You can search against text or filter conditions.

You can only get tables that you have access to based on the security policies defined in Lake Formation. You need at least a read-only access to the table for it to be returned. If you do not have access to all the columns in the table, these columns will not be searched against when returning the list of tables back to you. If you have access to the columns but not the data in the columns, those columns and the associated metadata for those columns will be included in the search.

fn start_crawler(
    &self,
    input: StartCrawlerRequest
) -> RusotoFuture<StartCrawlerResponse, StartCrawlerError>
[src]

Starts a crawl using the specified crawler, regardless of what is scheduled. If the crawler is already running, returns a CrawlerRunningException.

fn start_crawler_schedule(
    &self,
    input: StartCrawlerScheduleRequest
) -> RusotoFuture<StartCrawlerScheduleResponse, StartCrawlerScheduleError>
[src]

Changes the schedule state of the specified crawler to SCHEDULED, unless the crawler is already running or the schedule state is already SCHEDULED.

fn start_export_labels_task_run(
    &self,
    input: StartExportLabelsTaskRunRequest
) -> RusotoFuture<StartExportLabelsTaskRunResponse, StartExportLabelsTaskRunError>
[src]

Begins an asynchronous task to export all labeled data for a particular transform. This task is the only label-related API call that is not part of the typical active learning workflow. You typically use StartExportLabelsTaskRun when you want to work with all of your existing labels at the same time, such as when you want to remove or change labels that were previously submitted as truth. This API operation accepts the TransformId whose labels you want to export and an Amazon Simple Storage Service (Amazon S3) path to export the labels to. The operation returns a TaskRunId. You can check on the status of your task run by calling the GetMLTaskRun API.

fn start_import_labels_task_run(
    &self,
    input: StartImportLabelsTaskRunRequest
) -> RusotoFuture<StartImportLabelsTaskRunResponse, StartImportLabelsTaskRunError>
[src]

Enables you to provide additional labels (examples of truth) to be used to teach the machine learning transform and improve its quality. This API operation is generally used as part of the active learning workflow that starts with the StartMLLabelingSetGenerationTaskRun call and that ultimately results in improving the quality of your machine learning transform.

After the StartMLLabelingSetGenerationTaskRun finishes, AWS Glue machine learning will have generated a series of questions for humans to answer. (Answering these questions is often called 'labeling' in the machine learning workflows). In the case of the FindMatches transform, these questions are of the form, “What is the correct way to group these rows together into groups composed entirely of matching records?” After the labeling process is finished, users upload their answers/labels with a call to StartImportLabelsTaskRun. After StartImportLabelsTaskRun finishes, all future runs of the machine learning transform use the new and improved labels and perform a higher-quality transformation.

By default, StartMLLabelingSetGenerationTaskRun continually learns from and combines all labels that you upload unless you set Replace to true. If you set Replace to true, StartImportLabelsTaskRun deletes and forgets all previously uploaded labels and learns only from the exact set that you upload. Replacing labels can be helpful if you realize that you previously uploaded incorrect labels, and you believe that they are having a negative effect on your transform quality.

You can check on the status of your task run by calling the GetMLTaskRun operation.

fn start_job_run(
    &self,
    input: StartJobRunRequest
) -> RusotoFuture<StartJobRunResponse, StartJobRunError>
[src]

Starts a job run using a job definition.

fn start_ml_evaluation_task_run(
    &self,
    input: StartMLEvaluationTaskRunRequest
) -> RusotoFuture<StartMLEvaluationTaskRunResponse, StartMLEvaluationTaskRunError>
[src]

Starts a task to estimate the quality of the transform.

When you provide label sets as examples of truth, AWS Glue machine learning uses some of those examples to learn from them. The rest of the labels are used as a test to estimate quality.

Returns a unique identifier for the run. You can call GetMLTaskRun to get more information about the stats of the EvaluationTaskRun.

fn start_ml_labeling_set_generation_task_run(
    &self,
    input: StartMLLabelingSetGenerationTaskRunRequest
) -> RusotoFuture<StartMLLabelingSetGenerationTaskRunResponse, StartMLLabelingSetGenerationTaskRunError>
[src]

Starts the active learning workflow for your machine learning transform to improve the transform's quality by generating label sets and adding labels.

When the StartMLLabelingSetGenerationTaskRun finishes, AWS Glue will have generated a "labeling set" or a set of questions for humans to answer.

In the case of the FindMatches transform, these questions are of the form, “What is the correct way to group these rows together into groups composed entirely of matching records?”

After the labeling process is finished, you can upload your labels with a call to StartImportLabelsTaskRun. After StartImportLabelsTaskRun finishes, all future runs of the machine learning transform will use the new and improved labels and perform a higher-quality transformation.

fn start_trigger(
    &self,
    input: StartTriggerRequest
) -> RusotoFuture<StartTriggerResponse, StartTriggerError>
[src]

Starts an existing trigger. See Triggering Jobs for information about how different types of trigger are started.

fn start_workflow_run(
    &self,
    input: StartWorkflowRunRequest
) -> RusotoFuture<StartWorkflowRunResponse, StartWorkflowRunError>
[src]

Starts a new run of the specified workflow.

fn stop_crawler(
    &self,
    input: StopCrawlerRequest
) -> RusotoFuture<StopCrawlerResponse, StopCrawlerError>
[src]

If the specified crawler is running, stops the crawl.

fn stop_crawler_schedule(
    &self,
    input: StopCrawlerScheduleRequest
) -> RusotoFuture<StopCrawlerScheduleResponse, StopCrawlerScheduleError>
[src]

Sets the schedule state of the specified crawler to NOT_SCHEDULED, but does not stop the crawler if it is already running.

fn stop_trigger(
    &self,
    input: StopTriggerRequest
) -> RusotoFuture<StopTriggerResponse, StopTriggerError>
[src]

Stops a specified trigger.

fn tag_resource(
    &self,
    input: TagResourceRequest
) -> RusotoFuture<TagResourceResponse, TagResourceError>
[src]

Adds tags to a resource. A tag is a label you can assign to an AWS resource. In AWS Glue, you can tag only certain resources. For information about what resources you can tag, see AWS Tags in AWS Glue.

fn untag_resource(
    &self,
    input: UntagResourceRequest
) -> RusotoFuture<UntagResourceResponse, UntagResourceError>
[src]

Removes tags from a resource.

fn update_classifier(
    &self,
    input: UpdateClassifierRequest
) -> RusotoFuture<UpdateClassifierResponse, UpdateClassifierError>
[src]

Modifies an existing classifier (a GrokClassifier, an XMLClassifier, a JsonClassifier, or a CsvClassifier, depending on which field is present).

fn update_connection(
    &self,
    input: UpdateConnectionRequest
) -> RusotoFuture<UpdateConnectionResponse, UpdateConnectionError>
[src]

Updates a connection definition in the Data Catalog.

fn update_crawler(
    &self,
    input: UpdateCrawlerRequest
) -> RusotoFuture<UpdateCrawlerResponse, UpdateCrawlerError>
[src]

Updates a crawler. If a crawler is running, you must stop it using StopCrawler before updating it.

fn update_crawler_schedule(
    &self,
    input: UpdateCrawlerScheduleRequest
) -> RusotoFuture<UpdateCrawlerScheduleResponse, UpdateCrawlerScheduleError>
[src]

Updates the schedule of a crawler using a cron expression.

fn update_database(
    &self,
    input: UpdateDatabaseRequest
) -> RusotoFuture<UpdateDatabaseResponse, UpdateDatabaseError>
[src]

Updates an existing database definition in a Data Catalog.

fn update_dev_endpoint(
    &self,
    input: UpdateDevEndpointRequest
) -> RusotoFuture<UpdateDevEndpointResponse, UpdateDevEndpointError>
[src]

Updates a specified development endpoint.

fn update_job(
    &self,
    input: UpdateJobRequest
) -> RusotoFuture<UpdateJobResponse, UpdateJobError>
[src]

Updates an existing job definition.

fn update_ml_transform(
    &self,
    input: UpdateMLTransformRequest
) -> RusotoFuture<UpdateMLTransformResponse, UpdateMLTransformError>
[src]

Updates an existing machine learning transform. Call this operation to tune the algorithm parameters to achieve better results.

After calling this operation, you can call the StartMLEvaluationTaskRun operation to assess how well your new parameters achieved your goals (such as improving the quality of your machine learning transform, or making it more cost-effective).

fn update_partition(
    &self,
    input: UpdatePartitionRequest
) -> RusotoFuture<UpdatePartitionResponse, UpdatePartitionError>
[src]

Updates a partition.

fn update_table(
    &self,
    input: UpdateTableRequest
) -> RusotoFuture<UpdateTableResponse, UpdateTableError>
[src]

Updates a metadata table in the Data Catalog.

fn update_trigger(
    &self,
    input: UpdateTriggerRequest
) -> RusotoFuture<UpdateTriggerResponse, UpdateTriggerError>
[src]

Updates a trigger definition.

fn update_user_defined_function(
    &self,
    input: UpdateUserDefinedFunctionRequest
) -> RusotoFuture<UpdateUserDefinedFunctionResponse, UpdateUserDefinedFunctionError>
[src]

Updates an existing function definition in the Data Catalog.

fn update_workflow(
    &self,
    input: UpdateWorkflowRequest
) -> RusotoFuture<UpdateWorkflowResponse, UpdateWorkflowError>
[src]

Updates an existing workflow.

impl Clone for GlueClient[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self