gluestub

package
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 31, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BatchCreatePartitionFuture

type BatchCreatePartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchCreatePartitionFuture) Get

type BatchDeleteConnectionFuture

type BatchDeleteConnectionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchDeleteConnectionFuture) Get

type BatchDeletePartitionFuture

type BatchDeletePartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchDeletePartitionFuture) Get

type BatchDeleteTableFuture

type BatchDeleteTableFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchDeleteTableFuture) Get

type BatchDeleteTableVersionFuture

type BatchDeleteTableVersionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchDeleteTableVersionFuture) Get

type BatchGetCrawlersFuture

type BatchGetCrawlersFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchGetCrawlersFuture) Get

type BatchGetDevEndpointsFuture

type BatchGetDevEndpointsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchGetDevEndpointsFuture) Get

type BatchGetJobsFuture

type BatchGetJobsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchGetJobsFuture) Get

type BatchGetPartitionFuture

type BatchGetPartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchGetPartitionFuture) Get

type BatchGetTriggersFuture

type BatchGetTriggersFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchGetTriggersFuture) Get

type BatchGetWorkflowsFuture

type BatchGetWorkflowsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchGetWorkflowsFuture) Get

type BatchStopJobRunFuture

type BatchStopJobRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchStopJobRunFuture) Get

type BatchUpdatePartitionFuture

type BatchUpdatePartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*BatchUpdatePartitionFuture) Get

type CancelMLTaskRunFuture

type CancelMLTaskRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CancelMLTaskRunFuture) Get

type CheckSchemaVersionValidityFuture

type CheckSchemaVersionValidityFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CheckSchemaVersionValidityFuture) Get

type Client

type Client interface {
	BatchCreatePartition(ctx workflow.Context, input *glue.BatchCreatePartitionInput) (*glue.BatchCreatePartitionOutput, error)
	BatchCreatePartitionAsync(ctx workflow.Context, input *glue.BatchCreatePartitionInput) *BatchCreatePartitionFuture

	BatchDeleteConnection(ctx workflow.Context, input *glue.BatchDeleteConnectionInput) (*glue.BatchDeleteConnectionOutput, error)
	BatchDeleteConnectionAsync(ctx workflow.Context, input *glue.BatchDeleteConnectionInput) *BatchDeleteConnectionFuture

	BatchDeletePartition(ctx workflow.Context, input *glue.BatchDeletePartitionInput) (*glue.BatchDeletePartitionOutput, error)
	BatchDeletePartitionAsync(ctx workflow.Context, input *glue.BatchDeletePartitionInput) *BatchDeletePartitionFuture

	BatchDeleteTable(ctx workflow.Context, input *glue.BatchDeleteTableInput) (*glue.BatchDeleteTableOutput, error)
	BatchDeleteTableAsync(ctx workflow.Context, input *glue.BatchDeleteTableInput) *BatchDeleteTableFuture

	BatchDeleteTableVersion(ctx workflow.Context, input *glue.BatchDeleteTableVersionInput) (*glue.BatchDeleteTableVersionOutput, error)
	BatchDeleteTableVersionAsync(ctx workflow.Context, input *glue.BatchDeleteTableVersionInput) *BatchDeleteTableVersionFuture

	BatchGetCrawlers(ctx workflow.Context, input *glue.BatchGetCrawlersInput) (*glue.BatchGetCrawlersOutput, error)
	BatchGetCrawlersAsync(ctx workflow.Context, input *glue.BatchGetCrawlersInput) *BatchGetCrawlersFuture

	BatchGetDevEndpoints(ctx workflow.Context, input *glue.BatchGetDevEndpointsInput) (*glue.BatchGetDevEndpointsOutput, error)
	BatchGetDevEndpointsAsync(ctx workflow.Context, input *glue.BatchGetDevEndpointsInput) *BatchGetDevEndpointsFuture

	BatchGetJobs(ctx workflow.Context, input *glue.BatchGetJobsInput) (*glue.BatchGetJobsOutput, error)
	BatchGetJobsAsync(ctx workflow.Context, input *glue.BatchGetJobsInput) *BatchGetJobsFuture

	BatchGetPartition(ctx workflow.Context, input *glue.BatchGetPartitionInput) (*glue.BatchGetPartitionOutput, error)
	BatchGetPartitionAsync(ctx workflow.Context, input *glue.BatchGetPartitionInput) *BatchGetPartitionFuture

	BatchGetTriggers(ctx workflow.Context, input *glue.BatchGetTriggersInput) (*glue.BatchGetTriggersOutput, error)
	BatchGetTriggersAsync(ctx workflow.Context, input *glue.BatchGetTriggersInput) *BatchGetTriggersFuture

	BatchGetWorkflows(ctx workflow.Context, input *glue.BatchGetWorkflowsInput) (*glue.BatchGetWorkflowsOutput, error)
	BatchGetWorkflowsAsync(ctx workflow.Context, input *glue.BatchGetWorkflowsInput) *BatchGetWorkflowsFuture

	BatchStopJobRun(ctx workflow.Context, input *glue.BatchStopJobRunInput) (*glue.BatchStopJobRunOutput, error)
	BatchStopJobRunAsync(ctx workflow.Context, input *glue.BatchStopJobRunInput) *BatchStopJobRunFuture

	BatchUpdatePartition(ctx workflow.Context, input *glue.BatchUpdatePartitionInput) (*glue.BatchUpdatePartitionOutput, error)
	BatchUpdatePartitionAsync(ctx workflow.Context, input *glue.BatchUpdatePartitionInput) *BatchUpdatePartitionFuture

	CancelMLTaskRun(ctx workflow.Context, input *glue.CancelMLTaskRunInput) (*glue.CancelMLTaskRunOutput, error)
	CancelMLTaskRunAsync(ctx workflow.Context, input *glue.CancelMLTaskRunInput) *CancelMLTaskRunFuture

	CheckSchemaVersionValidity(ctx workflow.Context, input *glue.CheckSchemaVersionValidityInput) (*glue.CheckSchemaVersionValidityOutput, error)
	CheckSchemaVersionValidityAsync(ctx workflow.Context, input *glue.CheckSchemaVersionValidityInput) *CheckSchemaVersionValidityFuture

	CreateClassifier(ctx workflow.Context, input *glue.CreateClassifierInput) (*glue.CreateClassifierOutput, error)
	CreateClassifierAsync(ctx workflow.Context, input *glue.CreateClassifierInput) *CreateClassifierFuture

	CreateConnection(ctx workflow.Context, input *glue.CreateConnectionInput) (*glue.CreateConnectionOutput, error)
	CreateConnectionAsync(ctx workflow.Context, input *glue.CreateConnectionInput) *CreateConnectionFuture

	CreateCrawler(ctx workflow.Context, input *glue.CreateCrawlerInput) (*glue.CreateCrawlerOutput, error)
	CreateCrawlerAsync(ctx workflow.Context, input *glue.CreateCrawlerInput) *CreateCrawlerFuture

	CreateDatabase(ctx workflow.Context, input *glue.CreateDatabaseInput) (*glue.CreateDatabaseOutput, error)
	CreateDatabaseAsync(ctx workflow.Context, input *glue.CreateDatabaseInput) *CreateDatabaseFuture

	CreateDevEndpoint(ctx workflow.Context, input *glue.CreateDevEndpointInput) (*glue.CreateDevEndpointOutput, error)
	CreateDevEndpointAsync(ctx workflow.Context, input *glue.CreateDevEndpointInput) *CreateDevEndpointFuture

	CreateJob(ctx workflow.Context, input *glue.CreateJobInput) (*glue.CreateJobOutput, error)
	CreateJobAsync(ctx workflow.Context, input *glue.CreateJobInput) *CreateJobFuture

	CreateMLTransform(ctx workflow.Context, input *glue.CreateMLTransformInput) (*glue.CreateMLTransformOutput, error)
	CreateMLTransformAsync(ctx workflow.Context, input *glue.CreateMLTransformInput) *CreateMLTransformFuture

	CreatePartition(ctx workflow.Context, input *glue.CreatePartitionInput) (*glue.CreatePartitionOutput, error)
	CreatePartitionAsync(ctx workflow.Context, input *glue.CreatePartitionInput) *CreatePartitionFuture

	CreatePartitionIndex(ctx workflow.Context, input *glue.CreatePartitionIndexInput) (*glue.CreatePartitionIndexOutput, error)
	CreatePartitionIndexAsync(ctx workflow.Context, input *glue.CreatePartitionIndexInput) *CreatePartitionIndexFuture

	CreateRegistry(ctx workflow.Context, input *glue.CreateRegistryInput) (*glue.CreateRegistryOutput, error)
	CreateRegistryAsync(ctx workflow.Context, input *glue.CreateRegistryInput) *CreateRegistryFuture

	CreateSchema(ctx workflow.Context, input *glue.CreateSchemaInput) (*glue.CreateSchemaOutput, error)
	CreateSchemaAsync(ctx workflow.Context, input *glue.CreateSchemaInput) *CreateSchemaFuture

	CreateScript(ctx workflow.Context, input *glue.CreateScriptInput) (*glue.CreateScriptOutput, error)
	CreateScriptAsync(ctx workflow.Context, input *glue.CreateScriptInput) *CreateScriptFuture

	CreateSecurityConfiguration(ctx workflow.Context, input *glue.CreateSecurityConfigurationInput) (*glue.CreateSecurityConfigurationOutput, error)
	CreateSecurityConfigurationAsync(ctx workflow.Context, input *glue.CreateSecurityConfigurationInput) *CreateSecurityConfigurationFuture

	CreateTable(ctx workflow.Context, input *glue.CreateTableInput) (*glue.CreateTableOutput, error)
	CreateTableAsync(ctx workflow.Context, input *glue.CreateTableInput) *CreateTableFuture

	CreateTrigger(ctx workflow.Context, input *glue.CreateTriggerInput) (*glue.CreateTriggerOutput, error)
	CreateTriggerAsync(ctx workflow.Context, input *glue.CreateTriggerInput) *CreateTriggerFuture

	CreateUserDefinedFunction(ctx workflow.Context, input *glue.CreateUserDefinedFunctionInput) (*glue.CreateUserDefinedFunctionOutput, error)
	CreateUserDefinedFunctionAsync(ctx workflow.Context, input *glue.CreateUserDefinedFunctionInput) *CreateUserDefinedFunctionFuture

	CreateWorkflow(ctx workflow.Context, input *glue.CreateWorkflowInput) (*glue.CreateWorkflowOutput, error)
	CreateWorkflowAsync(ctx workflow.Context, input *glue.CreateWorkflowInput) *CreateWorkflowFuture

	DeleteClassifier(ctx workflow.Context, input *glue.DeleteClassifierInput) (*glue.DeleteClassifierOutput, error)
	DeleteClassifierAsync(ctx workflow.Context, input *glue.DeleteClassifierInput) *DeleteClassifierFuture

	DeleteColumnStatisticsForPartition(ctx workflow.Context, input *glue.DeleteColumnStatisticsForPartitionInput) (*glue.DeleteColumnStatisticsForPartitionOutput, error)
	DeleteColumnStatisticsForPartitionAsync(ctx workflow.Context, input *glue.DeleteColumnStatisticsForPartitionInput) *DeleteColumnStatisticsForPartitionFuture

	DeleteColumnStatisticsForTable(ctx workflow.Context, input *glue.DeleteColumnStatisticsForTableInput) (*glue.DeleteColumnStatisticsForTableOutput, error)
	DeleteColumnStatisticsForTableAsync(ctx workflow.Context, input *glue.DeleteColumnStatisticsForTableInput) *DeleteColumnStatisticsForTableFuture

	DeleteConnection(ctx workflow.Context, input *glue.DeleteConnectionInput) (*glue.DeleteConnectionOutput, error)
	DeleteConnectionAsync(ctx workflow.Context, input *glue.DeleteConnectionInput) *DeleteConnectionFuture

	DeleteCrawler(ctx workflow.Context, input *glue.DeleteCrawlerInput) (*glue.DeleteCrawlerOutput, error)
	DeleteCrawlerAsync(ctx workflow.Context, input *glue.DeleteCrawlerInput) *DeleteCrawlerFuture

	DeleteDatabase(ctx workflow.Context, input *glue.DeleteDatabaseInput) (*glue.DeleteDatabaseOutput, error)
	DeleteDatabaseAsync(ctx workflow.Context, input *glue.DeleteDatabaseInput) *DeleteDatabaseFuture

	DeleteDevEndpoint(ctx workflow.Context, input *glue.DeleteDevEndpointInput) (*glue.DeleteDevEndpointOutput, error)
	DeleteDevEndpointAsync(ctx workflow.Context, input *glue.DeleteDevEndpointInput) *DeleteDevEndpointFuture

	DeleteJob(ctx workflow.Context, input *glue.DeleteJobInput) (*glue.DeleteJobOutput, error)
	DeleteJobAsync(ctx workflow.Context, input *glue.DeleteJobInput) *DeleteJobFuture

	DeleteMLTransform(ctx workflow.Context, input *glue.DeleteMLTransformInput) (*glue.DeleteMLTransformOutput, error)
	DeleteMLTransformAsync(ctx workflow.Context, input *glue.DeleteMLTransformInput) *DeleteMLTransformFuture

	DeletePartition(ctx workflow.Context, input *glue.DeletePartitionInput) (*glue.DeletePartitionOutput, error)
	DeletePartitionAsync(ctx workflow.Context, input *glue.DeletePartitionInput) *DeletePartitionFuture

	DeletePartitionIndex(ctx workflow.Context, input *glue.DeletePartitionIndexInput) (*glue.DeletePartitionIndexOutput, error)
	DeletePartitionIndexAsync(ctx workflow.Context, input *glue.DeletePartitionIndexInput) *DeletePartitionIndexFuture

	DeleteRegistry(ctx workflow.Context, input *glue.DeleteRegistryInput) (*glue.DeleteRegistryOutput, error)
	DeleteRegistryAsync(ctx workflow.Context, input *glue.DeleteRegistryInput) *DeleteRegistryFuture

	DeleteResourcePolicy(ctx workflow.Context, input *glue.DeleteResourcePolicyInput) (*glue.DeleteResourcePolicyOutput, error)
	DeleteResourcePolicyAsync(ctx workflow.Context, input *glue.DeleteResourcePolicyInput) *DeleteResourcePolicyFuture

	DeleteSchema(ctx workflow.Context, input *glue.DeleteSchemaInput) (*glue.DeleteSchemaOutput, error)
	DeleteSchemaAsync(ctx workflow.Context, input *glue.DeleteSchemaInput) *DeleteSchemaFuture

	DeleteSchemaVersions(ctx workflow.Context, input *glue.DeleteSchemaVersionsInput) (*glue.DeleteSchemaVersionsOutput, error)
	DeleteSchemaVersionsAsync(ctx workflow.Context, input *glue.DeleteSchemaVersionsInput) *DeleteSchemaVersionsFuture

	DeleteSecurityConfiguration(ctx workflow.Context, input *glue.DeleteSecurityConfigurationInput) (*glue.DeleteSecurityConfigurationOutput, error)
	DeleteSecurityConfigurationAsync(ctx workflow.Context, input *glue.DeleteSecurityConfigurationInput) *DeleteSecurityConfigurationFuture

	DeleteTable(ctx workflow.Context, input *glue.DeleteTableInput) (*glue.DeleteTableOutput, error)
	DeleteTableAsync(ctx workflow.Context, input *glue.DeleteTableInput) *DeleteTableFuture

	DeleteTableVersion(ctx workflow.Context, input *glue.DeleteTableVersionInput) (*glue.DeleteTableVersionOutput, error)
	DeleteTableVersionAsync(ctx workflow.Context, input *glue.DeleteTableVersionInput) *DeleteTableVersionFuture

	DeleteTrigger(ctx workflow.Context, input *glue.DeleteTriggerInput) (*glue.DeleteTriggerOutput, error)
	DeleteTriggerAsync(ctx workflow.Context, input *glue.DeleteTriggerInput) *DeleteTriggerFuture

	DeleteUserDefinedFunction(ctx workflow.Context, input *glue.DeleteUserDefinedFunctionInput) (*glue.DeleteUserDefinedFunctionOutput, error)
	DeleteUserDefinedFunctionAsync(ctx workflow.Context, input *glue.DeleteUserDefinedFunctionInput) *DeleteUserDefinedFunctionFuture

	DeleteWorkflow(ctx workflow.Context, input *glue.DeleteWorkflowInput) (*glue.DeleteWorkflowOutput, error)
	DeleteWorkflowAsync(ctx workflow.Context, input *glue.DeleteWorkflowInput) *DeleteWorkflowFuture

	GetCatalogImportStatus(ctx workflow.Context, input *glue.GetCatalogImportStatusInput) (*glue.GetCatalogImportStatusOutput, error)
	GetCatalogImportStatusAsync(ctx workflow.Context, input *glue.GetCatalogImportStatusInput) *GetCatalogImportStatusFuture

	GetClassifier(ctx workflow.Context, input *glue.GetClassifierInput) (*glue.GetClassifierOutput, error)
	GetClassifierAsync(ctx workflow.Context, input *glue.GetClassifierInput) *GetClassifierFuture

	GetClassifiers(ctx workflow.Context, input *glue.GetClassifiersInput) (*glue.GetClassifiersOutput, error)
	GetClassifiersAsync(ctx workflow.Context, input *glue.GetClassifiersInput) *GetClassifiersFuture

	GetColumnStatisticsForPartition(ctx workflow.Context, input *glue.GetColumnStatisticsForPartitionInput) (*glue.GetColumnStatisticsForPartitionOutput, error)
	GetColumnStatisticsForPartitionAsync(ctx workflow.Context, input *glue.GetColumnStatisticsForPartitionInput) *GetColumnStatisticsForPartitionFuture

	GetColumnStatisticsForTable(ctx workflow.Context, input *glue.GetColumnStatisticsForTableInput) (*glue.GetColumnStatisticsForTableOutput, error)
	GetColumnStatisticsForTableAsync(ctx workflow.Context, input *glue.GetColumnStatisticsForTableInput) *GetColumnStatisticsForTableFuture

	GetConnection(ctx workflow.Context, input *glue.GetConnectionInput) (*glue.GetConnectionOutput, error)
	GetConnectionAsync(ctx workflow.Context, input *glue.GetConnectionInput) *GetConnectionFuture

	GetConnections(ctx workflow.Context, input *glue.GetConnectionsInput) (*glue.GetConnectionsOutput, error)
	GetConnectionsAsync(ctx workflow.Context, input *glue.GetConnectionsInput) *GetConnectionsFuture

	GetCrawler(ctx workflow.Context, input *glue.GetCrawlerInput) (*glue.GetCrawlerOutput, error)
	GetCrawlerAsync(ctx workflow.Context, input *glue.GetCrawlerInput) *GetCrawlerFuture

	GetCrawlerMetrics(ctx workflow.Context, input *glue.GetCrawlerMetricsInput) (*glue.GetCrawlerMetricsOutput, error)
	GetCrawlerMetricsAsync(ctx workflow.Context, input *glue.GetCrawlerMetricsInput) *GetCrawlerMetricsFuture

	GetCrawlers(ctx workflow.Context, input *glue.GetCrawlersInput) (*glue.GetCrawlersOutput, error)
	GetCrawlersAsync(ctx workflow.Context, input *glue.GetCrawlersInput) *GetCrawlersFuture

	GetDataCatalogEncryptionSettings(ctx workflow.Context, input *glue.GetDataCatalogEncryptionSettingsInput) (*glue.GetDataCatalogEncryptionSettingsOutput, error)
	GetDataCatalogEncryptionSettingsAsync(ctx workflow.Context, input *glue.GetDataCatalogEncryptionSettingsInput) *GetDataCatalogEncryptionSettingsFuture

	GetDatabase(ctx workflow.Context, input *glue.GetDatabaseInput) (*glue.GetDatabaseOutput, error)
	GetDatabaseAsync(ctx workflow.Context, input *glue.GetDatabaseInput) *GetDatabaseFuture

	GetDatabases(ctx workflow.Context, input *glue.GetDatabasesInput) (*glue.GetDatabasesOutput, error)
	GetDatabasesAsync(ctx workflow.Context, input *glue.GetDatabasesInput) *GetDatabasesFuture

	GetDataflowGraph(ctx workflow.Context, input *glue.GetDataflowGraphInput) (*glue.GetDataflowGraphOutput, error)
	GetDataflowGraphAsync(ctx workflow.Context, input *glue.GetDataflowGraphInput) *GetDataflowGraphFuture

	GetDevEndpoint(ctx workflow.Context, input *glue.GetDevEndpointInput) (*glue.GetDevEndpointOutput, error)
	GetDevEndpointAsync(ctx workflow.Context, input *glue.GetDevEndpointInput) *GetDevEndpointFuture

	GetDevEndpoints(ctx workflow.Context, input *glue.GetDevEndpointsInput) (*glue.GetDevEndpointsOutput, error)
	GetDevEndpointsAsync(ctx workflow.Context, input *glue.GetDevEndpointsInput) *GetDevEndpointsFuture

	GetJob(ctx workflow.Context, input *glue.GetJobInput) (*glue.GetJobOutput, error)
	GetJobAsync(ctx workflow.Context, input *glue.GetJobInput) *GetJobFuture

	GetJobBookmark(ctx workflow.Context, input *glue.GetJobBookmarkInput) (*glue.GetJobBookmarkOutput, error)
	GetJobBookmarkAsync(ctx workflow.Context, input *glue.GetJobBookmarkInput) *GetJobBookmarkFuture

	GetJobRun(ctx workflow.Context, input *glue.GetJobRunInput) (*glue.GetJobRunOutput, error)
	GetJobRunAsync(ctx workflow.Context, input *glue.GetJobRunInput) *GetJobRunFuture

	GetJobRuns(ctx workflow.Context, input *glue.GetJobRunsInput) (*glue.GetJobRunsOutput, error)
	GetJobRunsAsync(ctx workflow.Context, input *glue.GetJobRunsInput) *GetJobRunsFuture

	GetJobs(ctx workflow.Context, input *glue.GetJobsInput) (*glue.GetJobsOutput, error)
	GetJobsAsync(ctx workflow.Context, input *glue.GetJobsInput) *GetJobsFuture

	GetMLTaskRun(ctx workflow.Context, input *glue.GetMLTaskRunInput) (*glue.GetMLTaskRunOutput, error)
	GetMLTaskRunAsync(ctx workflow.Context, input *glue.GetMLTaskRunInput) *GetMLTaskRunFuture

	GetMLTaskRuns(ctx workflow.Context, input *glue.GetMLTaskRunsInput) (*glue.GetMLTaskRunsOutput, error)
	GetMLTaskRunsAsync(ctx workflow.Context, input *glue.GetMLTaskRunsInput) *GetMLTaskRunsFuture

	GetMLTransform(ctx workflow.Context, input *glue.GetMLTransformInput) (*glue.GetMLTransformOutput, error)
	GetMLTransformAsync(ctx workflow.Context, input *glue.GetMLTransformInput) *GetMLTransformFuture

	GetMLTransforms(ctx workflow.Context, input *glue.GetMLTransformsInput) (*glue.GetMLTransformsOutput, error)
	GetMLTransformsAsync(ctx workflow.Context, input *glue.GetMLTransformsInput) *GetMLTransformsFuture

	GetMapping(ctx workflow.Context, input *glue.GetMappingInput) (*glue.GetMappingOutput, error)
	GetMappingAsync(ctx workflow.Context, input *glue.GetMappingInput) *GetMappingFuture

	GetPartition(ctx workflow.Context, input *glue.GetPartitionInput) (*glue.GetPartitionOutput, error)
	GetPartitionAsync(ctx workflow.Context, input *glue.GetPartitionInput) *GetPartitionFuture

	GetPartitionIndexes(ctx workflow.Context, input *glue.GetPartitionIndexesInput) (*glue.GetPartitionIndexesOutput, error)
	GetPartitionIndexesAsync(ctx workflow.Context, input *glue.GetPartitionIndexesInput) *GetPartitionIndexesFuture

	GetPartitions(ctx workflow.Context, input *glue.GetPartitionsInput) (*glue.GetPartitionsOutput, error)
	GetPartitionsAsync(ctx workflow.Context, input *glue.GetPartitionsInput) *GetPartitionsFuture

	GetPlan(ctx workflow.Context, input *glue.GetPlanInput) (*glue.GetPlanOutput, error)
	GetPlanAsync(ctx workflow.Context, input *glue.GetPlanInput) *GetPlanFuture

	GetRegistry(ctx workflow.Context, input *glue.GetRegistryInput) (*glue.GetRegistryOutput, error)
	GetRegistryAsync(ctx workflow.Context, input *glue.GetRegistryInput) *GetRegistryFuture

	GetResourcePolicies(ctx workflow.Context, input *glue.GetResourcePoliciesInput) (*glue.GetResourcePoliciesOutput, error)
	GetResourcePoliciesAsync(ctx workflow.Context, input *glue.GetResourcePoliciesInput) *GetResourcePoliciesFuture

	GetResourcePolicy(ctx workflow.Context, input *glue.GetResourcePolicyInput) (*glue.GetResourcePolicyOutput, error)
	GetResourcePolicyAsync(ctx workflow.Context, input *glue.GetResourcePolicyInput) *GetResourcePolicyFuture

	GetSchema(ctx workflow.Context, input *glue.GetSchemaInput) (*glue.GetSchemaOutput, error)
	GetSchemaAsync(ctx workflow.Context, input *glue.GetSchemaInput) *GetSchemaFuture

	GetSchemaByDefinition(ctx workflow.Context, input *glue.GetSchemaByDefinitionInput) (*glue.GetSchemaByDefinitionOutput, error)
	GetSchemaByDefinitionAsync(ctx workflow.Context, input *glue.GetSchemaByDefinitionInput) *GetSchemaByDefinitionFuture

	GetSchemaVersion(ctx workflow.Context, input *glue.GetSchemaVersionInput) (*glue.GetSchemaVersionOutput, error)
	GetSchemaVersionAsync(ctx workflow.Context, input *glue.GetSchemaVersionInput) *GetSchemaVersionFuture

	GetSchemaVersionsDiff(ctx workflow.Context, input *glue.GetSchemaVersionsDiffInput) (*glue.GetSchemaVersionsDiffOutput, error)
	GetSchemaVersionsDiffAsync(ctx workflow.Context, input *glue.GetSchemaVersionsDiffInput) *GetSchemaVersionsDiffFuture

	GetSecurityConfiguration(ctx workflow.Context, input *glue.GetSecurityConfigurationInput) (*glue.GetSecurityConfigurationOutput, error)
	GetSecurityConfigurationAsync(ctx workflow.Context, input *glue.GetSecurityConfigurationInput) *GetSecurityConfigurationFuture

	GetSecurityConfigurations(ctx workflow.Context, input *glue.GetSecurityConfigurationsInput) (*glue.GetSecurityConfigurationsOutput, error)
	GetSecurityConfigurationsAsync(ctx workflow.Context, input *glue.GetSecurityConfigurationsInput) *GetSecurityConfigurationsFuture

	GetTable(ctx workflow.Context, input *glue.GetTableInput) (*glue.GetTableOutput, error)
	GetTableAsync(ctx workflow.Context, input *glue.GetTableInput) *GetTableFuture

	GetTableVersion(ctx workflow.Context, input *glue.GetTableVersionInput) (*glue.GetTableVersionOutput, error)
	GetTableVersionAsync(ctx workflow.Context, input *glue.GetTableVersionInput) *GetTableVersionFuture

	GetTableVersions(ctx workflow.Context, input *glue.GetTableVersionsInput) (*glue.GetTableVersionsOutput, error)
	GetTableVersionsAsync(ctx workflow.Context, input *glue.GetTableVersionsInput) *GetTableVersionsFuture

	GetTables(ctx workflow.Context, input *glue.GetTablesInput) (*glue.GetTablesOutput, error)
	GetTablesAsync(ctx workflow.Context, input *glue.GetTablesInput) *GetTablesFuture

	GetTags(ctx workflow.Context, input *glue.GetTagsInput) (*glue.GetTagsOutput, error)
	GetTagsAsync(ctx workflow.Context, input *glue.GetTagsInput) *GetTagsFuture

	GetTrigger(ctx workflow.Context, input *glue.GetTriggerInput) (*glue.GetTriggerOutput, error)
	GetTriggerAsync(ctx workflow.Context, input *glue.GetTriggerInput) *GetTriggerFuture

	GetTriggers(ctx workflow.Context, input *glue.GetTriggersInput) (*glue.GetTriggersOutput, error)
	GetTriggersAsync(ctx workflow.Context, input *glue.GetTriggersInput) *GetTriggersFuture

	GetUserDefinedFunction(ctx workflow.Context, input *glue.GetUserDefinedFunctionInput) (*glue.GetUserDefinedFunctionOutput, error)
	GetUserDefinedFunctionAsync(ctx workflow.Context, input *glue.GetUserDefinedFunctionInput) *GetUserDefinedFunctionFuture

	GetUserDefinedFunctions(ctx workflow.Context, input *glue.GetUserDefinedFunctionsInput) (*glue.GetUserDefinedFunctionsOutput, error)
	GetUserDefinedFunctionsAsync(ctx workflow.Context, input *glue.GetUserDefinedFunctionsInput) *GetUserDefinedFunctionsFuture

	GetWorkflow(ctx workflow.Context, input *glue.GetWorkflowInput) (*glue.GetWorkflowOutput, error)
	GetWorkflowAsync(ctx workflow.Context, input *glue.GetWorkflowInput) *GetWorkflowFuture

	GetWorkflowRun(ctx workflow.Context, input *glue.GetWorkflowRunInput) (*glue.GetWorkflowRunOutput, error)
	GetWorkflowRunAsync(ctx workflow.Context, input *glue.GetWorkflowRunInput) *GetWorkflowRunFuture

	GetWorkflowRunProperties(ctx workflow.Context, input *glue.GetWorkflowRunPropertiesInput) (*glue.GetWorkflowRunPropertiesOutput, error)
	GetWorkflowRunPropertiesAsync(ctx workflow.Context, input *glue.GetWorkflowRunPropertiesInput) *GetWorkflowRunPropertiesFuture

	GetWorkflowRuns(ctx workflow.Context, input *glue.GetWorkflowRunsInput) (*glue.GetWorkflowRunsOutput, error)
	GetWorkflowRunsAsync(ctx workflow.Context, input *glue.GetWorkflowRunsInput) *GetWorkflowRunsFuture

	ImportCatalogToGlue(ctx workflow.Context, input *glue.ImportCatalogToGlueInput) (*glue.ImportCatalogToGlueOutput, error)
	ImportCatalogToGlueAsync(ctx workflow.Context, input *glue.ImportCatalogToGlueInput) *ImportCatalogToGlueFuture

	ListCrawlers(ctx workflow.Context, input *glue.ListCrawlersInput) (*glue.ListCrawlersOutput, error)
	ListCrawlersAsync(ctx workflow.Context, input *glue.ListCrawlersInput) *ListCrawlersFuture

	ListDevEndpoints(ctx workflow.Context, input *glue.ListDevEndpointsInput) (*glue.ListDevEndpointsOutput, error)
	ListDevEndpointsAsync(ctx workflow.Context, input *glue.ListDevEndpointsInput) *ListDevEndpointsFuture

	ListJobs(ctx workflow.Context, input *glue.ListJobsInput) (*glue.ListJobsOutput, error)
	ListJobsAsync(ctx workflow.Context, input *glue.ListJobsInput) *ListJobsFuture

	ListMLTransforms(ctx workflow.Context, input *glue.ListMLTransformsInput) (*glue.ListMLTransformsOutput, error)
	ListMLTransformsAsync(ctx workflow.Context, input *glue.ListMLTransformsInput) *ListMLTransformsFuture

	ListRegistries(ctx workflow.Context, input *glue.ListRegistriesInput) (*glue.ListRegistriesOutput, error)
	ListRegistriesAsync(ctx workflow.Context, input *glue.ListRegistriesInput) *ListRegistriesFuture

	ListSchemaVersions(ctx workflow.Context, input *glue.ListSchemaVersionsInput) (*glue.ListSchemaVersionsOutput, error)
	ListSchemaVersionsAsync(ctx workflow.Context, input *glue.ListSchemaVersionsInput) *ListSchemaVersionsFuture

	ListSchemas(ctx workflow.Context, input *glue.ListSchemasInput) (*glue.ListSchemasOutput, error)
	ListSchemasAsync(ctx workflow.Context, input *glue.ListSchemasInput) *ListSchemasFuture

	ListTriggers(ctx workflow.Context, input *glue.ListTriggersInput) (*glue.ListTriggersOutput, error)
	ListTriggersAsync(ctx workflow.Context, input *glue.ListTriggersInput) *ListTriggersFuture

	ListWorkflows(ctx workflow.Context, input *glue.ListWorkflowsInput) (*glue.ListWorkflowsOutput, error)
	ListWorkflowsAsync(ctx workflow.Context, input *glue.ListWorkflowsInput) *ListWorkflowsFuture

	PutDataCatalogEncryptionSettings(ctx workflow.Context, input *glue.PutDataCatalogEncryptionSettingsInput) (*glue.PutDataCatalogEncryptionSettingsOutput, error)
	PutDataCatalogEncryptionSettingsAsync(ctx workflow.Context, input *glue.PutDataCatalogEncryptionSettingsInput) *PutDataCatalogEncryptionSettingsFuture

	PutResourcePolicy(ctx workflow.Context, input *glue.PutResourcePolicyInput) (*glue.PutResourcePolicyOutput, error)
	PutResourcePolicyAsync(ctx workflow.Context, input *glue.PutResourcePolicyInput) *PutResourcePolicyFuture

	PutSchemaVersionMetadata(ctx workflow.Context, input *glue.PutSchemaVersionMetadataInput) (*glue.PutSchemaVersionMetadataOutput, error)
	PutSchemaVersionMetadataAsync(ctx workflow.Context, input *glue.PutSchemaVersionMetadataInput) *PutSchemaVersionMetadataFuture

	PutWorkflowRunProperties(ctx workflow.Context, input *glue.PutWorkflowRunPropertiesInput) (*glue.PutWorkflowRunPropertiesOutput, error)
	PutWorkflowRunPropertiesAsync(ctx workflow.Context, input *glue.PutWorkflowRunPropertiesInput) *PutWorkflowRunPropertiesFuture

	QuerySchemaVersionMetadata(ctx workflow.Context, input *glue.QuerySchemaVersionMetadataInput) (*glue.QuerySchemaVersionMetadataOutput, error)
	QuerySchemaVersionMetadataAsync(ctx workflow.Context, input *glue.QuerySchemaVersionMetadataInput) *QuerySchemaVersionMetadataFuture

	RegisterSchemaVersion(ctx workflow.Context, input *glue.RegisterSchemaVersionInput) (*glue.RegisterSchemaVersionOutput, error)
	RegisterSchemaVersionAsync(ctx workflow.Context, input *glue.RegisterSchemaVersionInput) *RegisterSchemaVersionFuture

	RemoveSchemaVersionMetadata(ctx workflow.Context, input *glue.RemoveSchemaVersionMetadataInput) (*glue.RemoveSchemaVersionMetadataOutput, error)
	RemoveSchemaVersionMetadataAsync(ctx workflow.Context, input *glue.RemoveSchemaVersionMetadataInput) *RemoveSchemaVersionMetadataFuture

	ResetJobBookmark(ctx workflow.Context, input *glue.ResetJobBookmarkInput) (*glue.ResetJobBookmarkOutput, error)
	ResetJobBookmarkAsync(ctx workflow.Context, input *glue.ResetJobBookmarkInput) *ResetJobBookmarkFuture

	ResumeWorkflowRun(ctx workflow.Context, input *glue.ResumeWorkflowRunInput) (*glue.ResumeWorkflowRunOutput, error)
	ResumeWorkflowRunAsync(ctx workflow.Context, input *glue.ResumeWorkflowRunInput) *ResumeWorkflowRunFuture

	SearchTables(ctx workflow.Context, input *glue.SearchTablesInput) (*glue.SearchTablesOutput, error)
	SearchTablesAsync(ctx workflow.Context, input *glue.SearchTablesInput) *SearchTablesFuture

	StartCrawler(ctx workflow.Context, input *glue.StartCrawlerInput) (*glue.StartCrawlerOutput, error)
	StartCrawlerAsync(ctx workflow.Context, input *glue.StartCrawlerInput) *StartCrawlerFuture

	StartCrawlerSchedule(ctx workflow.Context, input *glue.StartCrawlerScheduleInput) (*glue.StartCrawlerScheduleOutput, error)
	StartCrawlerScheduleAsync(ctx workflow.Context, input *glue.StartCrawlerScheduleInput) *StartCrawlerScheduleFuture

	StartExportLabelsTaskRun(ctx workflow.Context, input *glue.StartExportLabelsTaskRunInput) (*glue.StartExportLabelsTaskRunOutput, error)
	StartExportLabelsTaskRunAsync(ctx workflow.Context, input *glue.StartExportLabelsTaskRunInput) *StartExportLabelsTaskRunFuture

	StartImportLabelsTaskRun(ctx workflow.Context, input *glue.StartImportLabelsTaskRunInput) (*glue.StartImportLabelsTaskRunOutput, error)
	StartImportLabelsTaskRunAsync(ctx workflow.Context, input *glue.StartImportLabelsTaskRunInput) *StartImportLabelsTaskRunFuture

	StartJobRun(ctx workflow.Context, input *glue.StartJobRunInput) (*glue.StartJobRunOutput, error)
	StartJobRunAsync(ctx workflow.Context, input *glue.StartJobRunInput) *StartJobRunFuture

	StartMLEvaluationTaskRun(ctx workflow.Context, input *glue.StartMLEvaluationTaskRunInput) (*glue.StartMLEvaluationTaskRunOutput, error)
	StartMLEvaluationTaskRunAsync(ctx workflow.Context, input *glue.StartMLEvaluationTaskRunInput) *StartMLEvaluationTaskRunFuture

	StartMLLabelingSetGenerationTaskRun(ctx workflow.Context, input *glue.StartMLLabelingSetGenerationTaskRunInput) (*glue.StartMLLabelingSetGenerationTaskRunOutput, error)
	StartMLLabelingSetGenerationTaskRunAsync(ctx workflow.Context, input *glue.StartMLLabelingSetGenerationTaskRunInput) *StartMLLabelingSetGenerationTaskRunFuture

	StartTrigger(ctx workflow.Context, input *glue.StartTriggerInput) (*glue.StartTriggerOutput, error)
	StartTriggerAsync(ctx workflow.Context, input *glue.StartTriggerInput) *StartTriggerFuture

	StartWorkflowRun(ctx workflow.Context, input *glue.StartWorkflowRunInput) (*glue.StartWorkflowRunOutput, error)
	StartWorkflowRunAsync(ctx workflow.Context, input *glue.StartWorkflowRunInput) *StartWorkflowRunFuture

	StopCrawler(ctx workflow.Context, input *glue.StopCrawlerInput) (*glue.StopCrawlerOutput, error)
	StopCrawlerAsync(ctx workflow.Context, input *glue.StopCrawlerInput) *StopCrawlerFuture

	StopCrawlerSchedule(ctx workflow.Context, input *glue.StopCrawlerScheduleInput) (*glue.StopCrawlerScheduleOutput, error)
	StopCrawlerScheduleAsync(ctx workflow.Context, input *glue.StopCrawlerScheduleInput) *StopCrawlerScheduleFuture

	StopTrigger(ctx workflow.Context, input *glue.StopTriggerInput) (*glue.StopTriggerOutput, error)
	StopTriggerAsync(ctx workflow.Context, input *glue.StopTriggerInput) *StopTriggerFuture

	StopWorkflowRun(ctx workflow.Context, input *glue.StopWorkflowRunInput) (*glue.StopWorkflowRunOutput, error)
	StopWorkflowRunAsync(ctx workflow.Context, input *glue.StopWorkflowRunInput) *StopWorkflowRunFuture

	TagResource(ctx workflow.Context, input *glue.TagResourceInput) (*glue.TagResourceOutput, error)
	TagResourceAsync(ctx workflow.Context, input *glue.TagResourceInput) *TagResourceFuture

	UntagResource(ctx workflow.Context, input *glue.UntagResourceInput) (*glue.UntagResourceOutput, error)
	UntagResourceAsync(ctx workflow.Context, input *glue.UntagResourceInput) *UntagResourceFuture

	UpdateClassifier(ctx workflow.Context, input *glue.UpdateClassifierInput) (*glue.UpdateClassifierOutput, error)
	UpdateClassifierAsync(ctx workflow.Context, input *glue.UpdateClassifierInput) *UpdateClassifierFuture

	UpdateColumnStatisticsForPartition(ctx workflow.Context, input *glue.UpdateColumnStatisticsForPartitionInput) (*glue.UpdateColumnStatisticsForPartitionOutput, error)
	UpdateColumnStatisticsForPartitionAsync(ctx workflow.Context, input *glue.UpdateColumnStatisticsForPartitionInput) *UpdateColumnStatisticsForPartitionFuture

	UpdateColumnStatisticsForTable(ctx workflow.Context, input *glue.UpdateColumnStatisticsForTableInput) (*glue.UpdateColumnStatisticsForTableOutput, error)
	UpdateColumnStatisticsForTableAsync(ctx workflow.Context, input *glue.UpdateColumnStatisticsForTableInput) *UpdateColumnStatisticsForTableFuture

	UpdateConnection(ctx workflow.Context, input *glue.UpdateConnectionInput) (*glue.UpdateConnectionOutput, error)
	UpdateConnectionAsync(ctx workflow.Context, input *glue.UpdateConnectionInput) *UpdateConnectionFuture

	UpdateCrawler(ctx workflow.Context, input *glue.UpdateCrawlerInput) (*glue.UpdateCrawlerOutput, error)
	UpdateCrawlerAsync(ctx workflow.Context, input *glue.UpdateCrawlerInput) *UpdateCrawlerFuture

	UpdateCrawlerSchedule(ctx workflow.Context, input *glue.UpdateCrawlerScheduleInput) (*glue.UpdateCrawlerScheduleOutput, error)
	UpdateCrawlerScheduleAsync(ctx workflow.Context, input *glue.UpdateCrawlerScheduleInput) *UpdateCrawlerScheduleFuture

	UpdateDatabase(ctx workflow.Context, input *glue.UpdateDatabaseInput) (*glue.UpdateDatabaseOutput, error)
	UpdateDatabaseAsync(ctx workflow.Context, input *glue.UpdateDatabaseInput) *UpdateDatabaseFuture

	UpdateDevEndpoint(ctx workflow.Context, input *glue.UpdateDevEndpointInput) (*glue.UpdateDevEndpointOutput, error)
	UpdateDevEndpointAsync(ctx workflow.Context, input *glue.UpdateDevEndpointInput) *UpdateDevEndpointFuture

	UpdateJob(ctx workflow.Context, input *glue.UpdateJobInput) (*glue.UpdateJobOutput, error)
	UpdateJobAsync(ctx workflow.Context, input *glue.UpdateJobInput) *UpdateJobFuture

	UpdateMLTransform(ctx workflow.Context, input *glue.UpdateMLTransformInput) (*glue.UpdateMLTransformOutput, error)
	UpdateMLTransformAsync(ctx workflow.Context, input *glue.UpdateMLTransformInput) *UpdateMLTransformFuture

	UpdatePartition(ctx workflow.Context, input *glue.UpdatePartitionInput) (*glue.UpdatePartitionOutput, error)
	UpdatePartitionAsync(ctx workflow.Context, input *glue.UpdatePartitionInput) *UpdatePartitionFuture

	UpdateRegistry(ctx workflow.Context, input *glue.UpdateRegistryInput) (*glue.UpdateRegistryOutput, error)
	UpdateRegistryAsync(ctx workflow.Context, input *glue.UpdateRegistryInput) *UpdateRegistryFuture

	UpdateSchema(ctx workflow.Context, input *glue.UpdateSchemaInput) (*glue.UpdateSchemaOutput, error)
	UpdateSchemaAsync(ctx workflow.Context, input *glue.UpdateSchemaInput) *UpdateSchemaFuture

	UpdateTable(ctx workflow.Context, input *glue.UpdateTableInput) (*glue.UpdateTableOutput, error)
	UpdateTableAsync(ctx workflow.Context, input *glue.UpdateTableInput) *UpdateTableFuture

	UpdateTrigger(ctx workflow.Context, input *glue.UpdateTriggerInput) (*glue.UpdateTriggerOutput, error)
	UpdateTriggerAsync(ctx workflow.Context, input *glue.UpdateTriggerInput) *UpdateTriggerFuture

	UpdateUserDefinedFunction(ctx workflow.Context, input *glue.UpdateUserDefinedFunctionInput) (*glue.UpdateUserDefinedFunctionOutput, error)
	UpdateUserDefinedFunctionAsync(ctx workflow.Context, input *glue.UpdateUserDefinedFunctionInput) *UpdateUserDefinedFunctionFuture

	UpdateWorkflow(ctx workflow.Context, input *glue.UpdateWorkflowInput) (*glue.UpdateWorkflowOutput, error)
	UpdateWorkflowAsync(ctx workflow.Context, input *glue.UpdateWorkflowInput) *UpdateWorkflowFuture
}

func NewClient

func NewClient() Client

type CreateClassifierFuture

type CreateClassifierFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateClassifierFuture) Get

type CreateConnectionFuture

type CreateConnectionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateConnectionFuture) Get

type CreateCrawlerFuture

type CreateCrawlerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateCrawlerFuture) Get

type CreateDatabaseFuture

type CreateDatabaseFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateDatabaseFuture) Get

type CreateDevEndpointFuture

type CreateDevEndpointFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateDevEndpointFuture) Get

type CreateJobFuture

type CreateJobFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateJobFuture) Get

type CreateMLTransformFuture

type CreateMLTransformFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateMLTransformFuture) Get

type CreatePartitionFuture

type CreatePartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreatePartitionFuture) Get

type CreatePartitionIndexFuture

type CreatePartitionIndexFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreatePartitionIndexFuture) Get

type CreateRegistryFuture

type CreateRegistryFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateRegistryFuture) Get

type CreateSchemaFuture

type CreateSchemaFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateSchemaFuture) Get

type CreateScriptFuture

type CreateScriptFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateScriptFuture) Get

type CreateSecurityConfigurationFuture

type CreateSecurityConfigurationFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateSecurityConfigurationFuture) Get

type CreateTableFuture

type CreateTableFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateTableFuture) Get

type CreateTriggerFuture

type CreateTriggerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateTriggerFuture) Get

type CreateUserDefinedFunctionFuture

type CreateUserDefinedFunctionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateUserDefinedFunctionFuture) Get

type CreateWorkflowFuture

type CreateWorkflowFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateWorkflowFuture) Get

type DeleteClassifierFuture

type DeleteClassifierFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteClassifierFuture) Get

type DeleteColumnStatisticsForPartitionFuture

type DeleteColumnStatisticsForPartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteColumnStatisticsForPartitionFuture) Get

type DeleteColumnStatisticsForTableFuture

type DeleteColumnStatisticsForTableFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteColumnStatisticsForTableFuture) Get

type DeleteConnectionFuture

type DeleteConnectionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteConnectionFuture) Get

type DeleteCrawlerFuture

type DeleteCrawlerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteCrawlerFuture) Get

type DeleteDatabaseFuture

type DeleteDatabaseFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteDatabaseFuture) Get

type DeleteDevEndpointFuture

type DeleteDevEndpointFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteDevEndpointFuture) Get

type DeleteJobFuture

type DeleteJobFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteJobFuture) Get

type DeleteMLTransformFuture

type DeleteMLTransformFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteMLTransformFuture) Get

type DeletePartitionFuture

type DeletePartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeletePartitionFuture) Get

type DeletePartitionIndexFuture

type DeletePartitionIndexFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeletePartitionIndexFuture) Get

type DeleteRegistryFuture

type DeleteRegistryFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteRegistryFuture) Get

type DeleteResourcePolicyFuture

type DeleteResourcePolicyFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteResourcePolicyFuture) Get

type DeleteSchemaFuture

type DeleteSchemaFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteSchemaFuture) Get

type DeleteSchemaVersionsFuture

type DeleteSchemaVersionsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteSchemaVersionsFuture) Get

type DeleteSecurityConfigurationFuture

type DeleteSecurityConfigurationFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteSecurityConfigurationFuture) Get

type DeleteTableFuture

type DeleteTableFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteTableFuture) Get

type DeleteTableVersionFuture

type DeleteTableVersionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteTableVersionFuture) Get

type DeleteTriggerFuture

type DeleteTriggerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteTriggerFuture) Get

type DeleteUserDefinedFunctionFuture

type DeleteUserDefinedFunctionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteUserDefinedFunctionFuture) Get

type DeleteWorkflowFuture

type DeleteWorkflowFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteWorkflowFuture) Get

type GetCatalogImportStatusFuture

type GetCatalogImportStatusFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetCatalogImportStatusFuture) Get

type GetClassifierFuture

type GetClassifierFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetClassifierFuture) Get

type GetClassifiersFuture

type GetClassifiersFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetClassifiersFuture) Get

type GetColumnStatisticsForPartitionFuture

type GetColumnStatisticsForPartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetColumnStatisticsForPartitionFuture) Get

type GetColumnStatisticsForTableFuture

type GetColumnStatisticsForTableFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetColumnStatisticsForTableFuture) Get

type GetConnectionFuture

type GetConnectionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetConnectionFuture) Get

type GetConnectionsFuture

type GetConnectionsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetConnectionsFuture) Get

type GetCrawlerFuture

type GetCrawlerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetCrawlerFuture) Get

type GetCrawlerMetricsFuture

type GetCrawlerMetricsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetCrawlerMetricsFuture) Get

type GetCrawlersFuture

type GetCrawlersFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetCrawlersFuture) Get

type GetDataCatalogEncryptionSettingsFuture

type GetDataCatalogEncryptionSettingsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetDataCatalogEncryptionSettingsFuture) Get

type GetDatabaseFuture

type GetDatabaseFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetDatabaseFuture) Get

type GetDatabasesFuture

type GetDatabasesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetDatabasesFuture) Get

type GetDataflowGraphFuture

type GetDataflowGraphFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetDataflowGraphFuture) Get

type GetDevEndpointFuture

type GetDevEndpointFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetDevEndpointFuture) Get

type GetDevEndpointsFuture

type GetDevEndpointsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetDevEndpointsFuture) Get

type GetJobBookmarkFuture

type GetJobBookmarkFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetJobBookmarkFuture) Get

type GetJobFuture

type GetJobFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetJobFuture) Get

type GetJobRunFuture

type GetJobRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetJobRunFuture) Get

type GetJobRunsFuture

type GetJobRunsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetJobRunsFuture) Get

type GetJobsFuture

type GetJobsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetJobsFuture) Get

type GetMLTaskRunFuture

type GetMLTaskRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetMLTaskRunFuture) Get

type GetMLTaskRunsFuture

type GetMLTaskRunsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetMLTaskRunsFuture) Get

type GetMLTransformFuture

type GetMLTransformFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetMLTransformFuture) Get

type GetMLTransformsFuture

type GetMLTransformsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetMLTransformsFuture) Get

type GetMappingFuture

type GetMappingFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetMappingFuture) Get

type GetPartitionFuture

type GetPartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetPartitionFuture) Get

type GetPartitionIndexesFuture

type GetPartitionIndexesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetPartitionIndexesFuture) Get

type GetPartitionsFuture

type GetPartitionsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetPartitionsFuture) Get

type GetPlanFuture

type GetPlanFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetPlanFuture) Get

type GetRegistryFuture

type GetRegistryFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetRegistryFuture) Get

type GetResourcePoliciesFuture

type GetResourcePoliciesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetResourcePoliciesFuture) Get

type GetResourcePolicyFuture

type GetResourcePolicyFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetResourcePolicyFuture) Get

type GetSchemaByDefinitionFuture

type GetSchemaByDefinitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetSchemaByDefinitionFuture) Get

type GetSchemaFuture

type GetSchemaFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetSchemaFuture) Get

type GetSchemaVersionFuture

type GetSchemaVersionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetSchemaVersionFuture) Get

type GetSchemaVersionsDiffFuture

type GetSchemaVersionsDiffFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetSchemaVersionsDiffFuture) Get

type GetSecurityConfigurationFuture

type GetSecurityConfigurationFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetSecurityConfigurationFuture) Get

type GetSecurityConfigurationsFuture

type GetSecurityConfigurationsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetSecurityConfigurationsFuture) Get

type GetTableFuture

type GetTableFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetTableFuture) Get

type GetTableVersionFuture

type GetTableVersionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetTableVersionFuture) Get

type GetTableVersionsFuture

type GetTableVersionsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetTableVersionsFuture) Get

type GetTablesFuture

type GetTablesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetTablesFuture) Get

type GetTagsFuture

type GetTagsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetTagsFuture) Get

type GetTriggerFuture

type GetTriggerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetTriggerFuture) Get

type GetTriggersFuture

type GetTriggersFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetTriggersFuture) Get

type GetUserDefinedFunctionFuture

type GetUserDefinedFunctionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetUserDefinedFunctionFuture) Get

type GetUserDefinedFunctionsFuture

type GetUserDefinedFunctionsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetUserDefinedFunctionsFuture) Get

type GetWorkflowFuture

type GetWorkflowFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetWorkflowFuture) Get

type GetWorkflowRunFuture

type GetWorkflowRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetWorkflowRunFuture) Get

type GetWorkflowRunPropertiesFuture

type GetWorkflowRunPropertiesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetWorkflowRunPropertiesFuture) Get

type GetWorkflowRunsFuture

type GetWorkflowRunsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetWorkflowRunsFuture) Get

type ImportCatalogToGlueFuture

type ImportCatalogToGlueFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ImportCatalogToGlueFuture) Get

type ListCrawlersFuture

type ListCrawlersFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListCrawlersFuture) Get

type ListDevEndpointsFuture

type ListDevEndpointsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListDevEndpointsFuture) Get

type ListJobsFuture

type ListJobsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListJobsFuture) Get

type ListMLTransformsFuture

type ListMLTransformsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListMLTransformsFuture) Get

type ListRegistriesFuture

type ListRegistriesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListRegistriesFuture) Get

type ListSchemaVersionsFuture

type ListSchemaVersionsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListSchemaVersionsFuture) Get

type ListSchemasFuture

type ListSchemasFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListSchemasFuture) Get

type ListTriggersFuture

type ListTriggersFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListTriggersFuture) Get

type ListWorkflowsFuture

type ListWorkflowsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListWorkflowsFuture) Get

type PutDataCatalogEncryptionSettingsFuture

type PutDataCatalogEncryptionSettingsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*PutDataCatalogEncryptionSettingsFuture) Get

type PutResourcePolicyFuture

type PutResourcePolicyFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*PutResourcePolicyFuture) Get

type PutSchemaVersionMetadataFuture

type PutSchemaVersionMetadataFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*PutSchemaVersionMetadataFuture) Get

type PutWorkflowRunPropertiesFuture

type PutWorkflowRunPropertiesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*PutWorkflowRunPropertiesFuture) Get

type QuerySchemaVersionMetadataFuture

type QuerySchemaVersionMetadataFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*QuerySchemaVersionMetadataFuture) Get

type RegisterSchemaVersionFuture

type RegisterSchemaVersionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*RegisterSchemaVersionFuture) Get

type RemoveSchemaVersionMetadataFuture

type RemoveSchemaVersionMetadataFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*RemoveSchemaVersionMetadataFuture) Get

type ResetJobBookmarkFuture

type ResetJobBookmarkFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ResetJobBookmarkFuture) Get

type ResumeWorkflowRunFuture

type ResumeWorkflowRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ResumeWorkflowRunFuture) Get

type SearchTablesFuture

type SearchTablesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*SearchTablesFuture) Get

type StartCrawlerFuture

type StartCrawlerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartCrawlerFuture) Get

type StartCrawlerScheduleFuture

type StartCrawlerScheduleFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartCrawlerScheduleFuture) Get

type StartExportLabelsTaskRunFuture

type StartExportLabelsTaskRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartExportLabelsTaskRunFuture) Get

type StartImportLabelsTaskRunFuture

type StartImportLabelsTaskRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartImportLabelsTaskRunFuture) Get

type StartJobRunFuture

type StartJobRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartJobRunFuture) Get

type StartMLEvaluationTaskRunFuture

type StartMLEvaluationTaskRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartMLEvaluationTaskRunFuture) Get

type StartMLLabelingSetGenerationTaskRunFuture

type StartMLLabelingSetGenerationTaskRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartMLLabelingSetGenerationTaskRunFuture) Get

type StartTriggerFuture

type StartTriggerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartTriggerFuture) Get

type StartWorkflowRunFuture

type StartWorkflowRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartWorkflowRunFuture) Get

type StopCrawlerFuture

type StopCrawlerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StopCrawlerFuture) Get

type StopCrawlerScheduleFuture

type StopCrawlerScheduleFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StopCrawlerScheduleFuture) Get

type StopTriggerFuture

type StopTriggerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StopTriggerFuture) Get

type StopWorkflowRunFuture

type StopWorkflowRunFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StopWorkflowRunFuture) Get

type TagResourceFuture

type TagResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*TagResourceFuture) Get

type UntagResourceFuture

type UntagResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UntagResourceFuture) Get

type UpdateClassifierFuture

type UpdateClassifierFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateClassifierFuture) Get

type UpdateColumnStatisticsForPartitionFuture

type UpdateColumnStatisticsForPartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateColumnStatisticsForPartitionFuture) Get

type UpdateColumnStatisticsForTableFuture

type UpdateColumnStatisticsForTableFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateColumnStatisticsForTableFuture) Get

type UpdateConnectionFuture

type UpdateConnectionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateConnectionFuture) Get

type UpdateCrawlerFuture

type UpdateCrawlerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateCrawlerFuture) Get

type UpdateCrawlerScheduleFuture

type UpdateCrawlerScheduleFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateCrawlerScheduleFuture) Get

type UpdateDatabaseFuture

type UpdateDatabaseFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateDatabaseFuture) Get

type UpdateDevEndpointFuture

type UpdateDevEndpointFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateDevEndpointFuture) Get

type UpdateJobFuture

type UpdateJobFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateJobFuture) Get

type UpdateMLTransformFuture

type UpdateMLTransformFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateMLTransformFuture) Get

type UpdatePartitionFuture

type UpdatePartitionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdatePartitionFuture) Get

type UpdateRegistryFuture

type UpdateRegistryFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateRegistryFuture) Get

type UpdateSchemaFuture

type UpdateSchemaFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateSchemaFuture) Get

type UpdateTableFuture

type UpdateTableFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateTableFuture) Get

type UpdateTriggerFuture

type UpdateTriggerFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateTriggerFuture) Get

type UpdateUserDefinedFunctionFuture

type UpdateUserDefinedFunctionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateUserDefinedFunctionFuture) Get

type UpdateWorkflowFuture

type UpdateWorkflowFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateWorkflowFuture) Get

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL