athenastub

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 BatchGetNamedQueryFuture

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

func (*BatchGetNamedQueryFuture) Get

type BatchGetQueryExecutionFuture

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

func (*BatchGetQueryExecutionFuture) Get

type Client

type Client interface {
	BatchGetNamedQuery(ctx workflow.Context, input *athena.BatchGetNamedQueryInput) (*athena.BatchGetNamedQueryOutput, error)
	BatchGetNamedQueryAsync(ctx workflow.Context, input *athena.BatchGetNamedQueryInput) *BatchGetNamedQueryFuture

	BatchGetQueryExecution(ctx workflow.Context, input *athena.BatchGetQueryExecutionInput) (*athena.BatchGetQueryExecutionOutput, error)
	BatchGetQueryExecutionAsync(ctx workflow.Context, input *athena.BatchGetQueryExecutionInput) *BatchGetQueryExecutionFuture

	CreateDataCatalog(ctx workflow.Context, input *athena.CreateDataCatalogInput) (*athena.CreateDataCatalogOutput, error)
	CreateDataCatalogAsync(ctx workflow.Context, input *athena.CreateDataCatalogInput) *CreateDataCatalogFuture

	CreateNamedQuery(ctx workflow.Context, input *athena.CreateNamedQueryInput) (*athena.CreateNamedQueryOutput, error)
	CreateNamedQueryAsync(ctx workflow.Context, input *athena.CreateNamedQueryInput) *CreateNamedQueryFuture

	CreateWorkGroup(ctx workflow.Context, input *athena.CreateWorkGroupInput) (*athena.CreateWorkGroupOutput, error)
	CreateWorkGroupAsync(ctx workflow.Context, input *athena.CreateWorkGroupInput) *CreateWorkGroupFuture

	DeleteDataCatalog(ctx workflow.Context, input *athena.DeleteDataCatalogInput) (*athena.DeleteDataCatalogOutput, error)
	DeleteDataCatalogAsync(ctx workflow.Context, input *athena.DeleteDataCatalogInput) *DeleteDataCatalogFuture

	DeleteNamedQuery(ctx workflow.Context, input *athena.DeleteNamedQueryInput) (*athena.DeleteNamedQueryOutput, error)
	DeleteNamedQueryAsync(ctx workflow.Context, input *athena.DeleteNamedQueryInput) *DeleteNamedQueryFuture

	DeleteWorkGroup(ctx workflow.Context, input *athena.DeleteWorkGroupInput) (*athena.DeleteWorkGroupOutput, error)
	DeleteWorkGroupAsync(ctx workflow.Context, input *athena.DeleteWorkGroupInput) *DeleteWorkGroupFuture

	GetDataCatalog(ctx workflow.Context, input *athena.GetDataCatalogInput) (*athena.GetDataCatalogOutput, error)
	GetDataCatalogAsync(ctx workflow.Context, input *athena.GetDataCatalogInput) *GetDataCatalogFuture

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

	GetNamedQuery(ctx workflow.Context, input *athena.GetNamedQueryInput) (*athena.GetNamedQueryOutput, error)
	GetNamedQueryAsync(ctx workflow.Context, input *athena.GetNamedQueryInput) *GetNamedQueryFuture

	GetQueryExecution(ctx workflow.Context, input *athena.GetQueryExecutionInput) (*athena.GetQueryExecutionOutput, error)
	GetQueryExecutionAsync(ctx workflow.Context, input *athena.GetQueryExecutionInput) *GetQueryExecutionFuture

	GetQueryResults(ctx workflow.Context, input *athena.GetQueryResultsInput) (*athena.GetQueryResultsOutput, error)
	GetQueryResultsAsync(ctx workflow.Context, input *athena.GetQueryResultsInput) *GetQueryResultsFuture

	GetTableMetadata(ctx workflow.Context, input *athena.GetTableMetadataInput) (*athena.GetTableMetadataOutput, error)
	GetTableMetadataAsync(ctx workflow.Context, input *athena.GetTableMetadataInput) *GetTableMetadataFuture

	GetWorkGroup(ctx workflow.Context, input *athena.GetWorkGroupInput) (*athena.GetWorkGroupOutput, error)
	GetWorkGroupAsync(ctx workflow.Context, input *athena.GetWorkGroupInput) *GetWorkGroupFuture

	ListDataCatalogs(ctx workflow.Context, input *athena.ListDataCatalogsInput) (*athena.ListDataCatalogsOutput, error)
	ListDataCatalogsAsync(ctx workflow.Context, input *athena.ListDataCatalogsInput) *ListDataCatalogsFuture

	ListDatabases(ctx workflow.Context, input *athena.ListDatabasesInput) (*athena.ListDatabasesOutput, error)
	ListDatabasesAsync(ctx workflow.Context, input *athena.ListDatabasesInput) *ListDatabasesFuture

	ListNamedQueries(ctx workflow.Context, input *athena.ListNamedQueriesInput) (*athena.ListNamedQueriesOutput, error)
	ListNamedQueriesAsync(ctx workflow.Context, input *athena.ListNamedQueriesInput) *ListNamedQueriesFuture

	ListQueryExecutions(ctx workflow.Context, input *athena.ListQueryExecutionsInput) (*athena.ListQueryExecutionsOutput, error)
	ListQueryExecutionsAsync(ctx workflow.Context, input *athena.ListQueryExecutionsInput) *ListQueryExecutionsFuture

	ListTableMetadata(ctx workflow.Context, input *athena.ListTableMetadataInput) (*athena.ListTableMetadataOutput, error)
	ListTableMetadataAsync(ctx workflow.Context, input *athena.ListTableMetadataInput) *ListTableMetadataFuture

	ListTagsForResource(ctx workflow.Context, input *athena.ListTagsForResourceInput) (*athena.ListTagsForResourceOutput, error)
	ListTagsForResourceAsync(ctx workflow.Context, input *athena.ListTagsForResourceInput) *ListTagsForResourceFuture

	ListWorkGroups(ctx workflow.Context, input *athena.ListWorkGroupsInput) (*athena.ListWorkGroupsOutput, error)
	ListWorkGroupsAsync(ctx workflow.Context, input *athena.ListWorkGroupsInput) *ListWorkGroupsFuture

	StartQueryExecution(ctx workflow.Context, input *athena.StartQueryExecutionInput) (*athena.StartQueryExecutionOutput, error)
	StartQueryExecutionAsync(ctx workflow.Context, input *athena.StartQueryExecutionInput) *StartQueryExecutionFuture

	StopQueryExecution(ctx workflow.Context, input *athena.StopQueryExecutionInput) (*athena.StopQueryExecutionOutput, error)
	StopQueryExecutionAsync(ctx workflow.Context, input *athena.StopQueryExecutionInput) *StopQueryExecutionFuture

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

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

	UpdateDataCatalog(ctx workflow.Context, input *athena.UpdateDataCatalogInput) (*athena.UpdateDataCatalogOutput, error)
	UpdateDataCatalogAsync(ctx workflow.Context, input *athena.UpdateDataCatalogInput) *UpdateDataCatalogFuture

	UpdateWorkGroup(ctx workflow.Context, input *athena.UpdateWorkGroupInput) (*athena.UpdateWorkGroupOutput, error)
	UpdateWorkGroupAsync(ctx workflow.Context, input *athena.UpdateWorkGroupInput) *UpdateWorkGroupFuture
}

func NewClient

func NewClient() Client

type CreateDataCatalogFuture

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

func (*CreateDataCatalogFuture) Get

type CreateNamedQueryFuture

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

func (*CreateNamedQueryFuture) Get

type CreateWorkGroupFuture

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

func (*CreateWorkGroupFuture) Get

type DeleteDataCatalogFuture

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

func (*DeleteDataCatalogFuture) Get

type DeleteNamedQueryFuture

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

func (*DeleteNamedQueryFuture) Get

type DeleteWorkGroupFuture

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

func (*DeleteWorkGroupFuture) Get

type GetDataCatalogFuture

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

func (*GetDataCatalogFuture) Get

type GetDatabaseFuture

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

func (*GetDatabaseFuture) Get

type GetNamedQueryFuture

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

func (*GetNamedQueryFuture) Get

type GetQueryExecutionFuture

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

func (*GetQueryExecutionFuture) Get

type GetQueryResultsFuture

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

func (*GetQueryResultsFuture) Get

type GetTableMetadataFuture

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

func (*GetTableMetadataFuture) Get

type GetWorkGroupFuture

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

func (*GetWorkGroupFuture) Get

type ListDataCatalogsFuture

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

func (*ListDataCatalogsFuture) Get

type ListDatabasesFuture

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

func (*ListDatabasesFuture) Get

type ListNamedQueriesFuture

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

func (*ListNamedQueriesFuture) Get

type ListQueryExecutionsFuture

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

func (*ListQueryExecutionsFuture) Get

type ListTableMetadataFuture

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

func (*ListTableMetadataFuture) Get

type ListTagsForResourceFuture

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

func (*ListTagsForResourceFuture) Get

type ListWorkGroupsFuture

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

func (*ListWorkGroupsFuture) Get

type StartQueryExecutionFuture

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

func (*StartQueryExecutionFuture) Get

type StopQueryExecutionFuture

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

func (*StopQueryExecutionFuture) 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 UpdateDataCatalogFuture

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

func (*UpdateDataCatalogFuture) Get

type UpdateWorkGroupFuture

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

func (*UpdateWorkGroupFuture) Get

Jump to

Keyboard shortcuts

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