athena - ActiveState ActiveGo 1.8
...

Package athena

import "github.com/aws/aws-sdk-go/service/athena"
Overview
Index
Subdirectories

Overview ▾

Package athena provides the client and types for making API requests to Amazon Athena.

Amazon Athena is an interactive query service that lets you use standard SQL to analyze data directly in Amazon S3. You can point Athena at your data in Amazon S3 and run ad-hoc queries and get results in seconds. Athena is serverless, so there is no infrastructure to set up or manage. You pay only for the queries you run. Athena scales automatically—executing queries in parallel—so results are fast, even with large datasets and complex queries. For more information, see What is Amazon Athena (http://docs.aws.amazon.com/athena/latest/ug/what-is.html) in the Amazon Athena User Guide.

For code samples using the AWS SDK for Java, see Examples and Code Samples (http://docs.aws.amazon.com/athena/latest/ug/code-samples.html) in the Amazon Athena User Guide.

See https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18 for more information on this service.

See athena package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/athena/

Using the Client

To use the client for Amazon Athena you will first need to create a new instance of it.

When creating a client for an AWS service you'll first need to have a Session already created. The Session provides configuration that can be shared between multiple service clients. Additional configuration can be applied to the Session and service's client when they are constructed. The aws package's Config type contains several fields such as Region for the AWS Region the client should make API requests too. The optional Config value can be provided as the variadic argument for Sessions and client creation.

Once the service's client is created you can use it to make API requests the AWS service. These clients are safe to use concurrently.

// Create a session to share configuration, and load external configuration.
sess := session.Must(session.NewSession())

// Create the service's client with the session.
svc := athena.New(sess)

See the SDK's documentation for more information on how to use service clients. https://docs.aws.amazon.com/sdk-for-go/api/

See aws package's Config type for more information on configuration options. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Amazon Athena client Athena for more information on creating the service's client. https://docs.aws.amazon.com/sdk-for-go/api/service/athena/#New

Once the client is created you can make an API request to the service. Each API method takes a input parameter, and returns the service response and an error.

The API method will document which error codes the service can be returned by the operation if the service models the API operation's errors. These errors will also be available as const strings prefixed with "ErrCode".

result, err := svc.BatchGetNamedQuery(params)
if err != nil {
    // Cast err to awserr.Error to handle specific error codes.
    aerr, ok := err.(awserr.Error)
    if ok && aerr.Code() == <error code to check for> {
        // Specific error code handling
    }
    return err
}

fmt.Println("BatchGetNamedQuery result:")
fmt.Println(result)

Using the Client with Context

The service's client also provides methods to make API requests with a Context value. This allows you to control the timeout, and cancellation of pending requests. These methods also take request Option as variadic parameter to apply additional configuration to the API request.

ctx := context.Background()

result, err := svc.BatchGetNamedQueryWithContext(ctx, params)

See the request package documentation for more information on using Context pattern with the SDK. https://docs.aws.amazon.com/sdk-for-go/api/aws/request/

Index ▾

Constants
type Athena
    func New(p client.ConfigProvider, cfgs ...*aws.Config) *Athena
    func (c *Athena) BatchGetNamedQuery(input *BatchGetNamedQueryInput) (*BatchGetNamedQueryOutput, error)
    func (c *Athena) BatchGetNamedQueryRequest(input *BatchGetNamedQueryInput) (req *request.Request, output *BatchGetNamedQueryOutput)
    func (c *Athena) BatchGetNamedQueryWithContext(ctx aws.Context, input *BatchGetNamedQueryInput, opts ...request.Option) (*BatchGetNamedQueryOutput, error)
    func (c *Athena) BatchGetQueryExecution(input *BatchGetQueryExecutionInput) (*BatchGetQueryExecutionOutput, error)
    func (c *Athena) BatchGetQueryExecutionRequest(input *BatchGetQueryExecutionInput) (req *request.Request, output *BatchGetQueryExecutionOutput)
    func (c *Athena) BatchGetQueryExecutionWithContext(ctx aws.Context, input *BatchGetQueryExecutionInput, opts ...request.Option) (*BatchGetQueryExecutionOutput, error)
    func (c *Athena) CreateNamedQuery(input *CreateNamedQueryInput) (*CreateNamedQueryOutput, error)
    func (c *Athena) CreateNamedQueryRequest(input *CreateNamedQueryInput) (req *request.Request, output *CreateNamedQueryOutput)
    func (c *Athena) CreateNamedQueryWithContext(ctx aws.Context, input *CreateNamedQueryInput, opts ...request.Option) (*CreateNamedQueryOutput, error)
    func (c *Athena) DeleteNamedQuery(input *DeleteNamedQueryInput) (*DeleteNamedQueryOutput, error)
    func (c *Athena) DeleteNamedQueryRequest(input *DeleteNamedQueryInput) (req *request.Request, output *DeleteNamedQueryOutput)
    func (c *Athena) DeleteNamedQueryWithContext(ctx aws.Context, input *DeleteNamedQueryInput, opts ...request.Option) (*DeleteNamedQueryOutput, error)
    func (c *Athena) GetNamedQuery(input *GetNamedQueryInput) (*GetNamedQueryOutput, error)
    func (c *Athena) GetNamedQueryRequest(input *GetNamedQueryInput) (req *request.Request, output *GetNamedQueryOutput)
    func (c *Athena) GetNamedQueryWithContext(ctx aws.Context, input *GetNamedQueryInput, opts ...request.Option) (*GetNamedQueryOutput, error)
    func (c *Athena) GetQueryExecution(input *GetQueryExecutionInput) (*GetQueryExecutionOutput, error)
    func (c *Athena) GetQueryExecutionRequest(input *GetQueryExecutionInput) (req *request.Request, output *GetQueryExecutionOutput)
    func (c *Athena) GetQueryExecutionWithContext(ctx aws.Context, input *GetQueryExecutionInput, opts ...request.Option) (*GetQueryExecutionOutput, error)
    func (c *Athena) GetQueryResults(input *GetQueryResultsInput) (*GetQueryResultsOutput, error)
    func (c *Athena) GetQueryResultsPages(input *GetQueryResultsInput, fn func(*GetQueryResultsOutput, bool) bool) error
    func (c *Athena) GetQueryResultsPagesWithContext(ctx aws.Context, input *GetQueryResultsInput, fn func(*GetQueryResultsOutput, bool) bool, opts ...request.Option) error
    func (c *Athena) GetQueryResultsRequest(input *GetQueryResultsInput) (req *request.Request, output *GetQueryResultsOutput)
    func (c *Athena) GetQueryResultsWithContext(ctx aws.Context, input *GetQueryResultsInput, opts ...request.Option) (*GetQueryResultsOutput, error)
    func (c *Athena) ListNamedQueries(input *ListNamedQueriesInput) (*ListNamedQueriesOutput, error)
    func (c *Athena) ListNamedQueriesPages(input *ListNamedQueriesInput, fn func(*ListNamedQueriesOutput, bool) bool) error
    func (c *Athena) ListNamedQueriesPagesWithContext(ctx aws.Context, input *ListNamedQueriesInput, fn func(*ListNamedQueriesOutput, bool) bool, opts ...request.Option) error
    func (c *Athena) ListNamedQueriesRequest(input *ListNamedQueriesInput) (req *request.Request, output *ListNamedQueriesOutput)
    func (c *Athena) ListNamedQueriesWithContext(ctx aws.Context, input *ListNamedQueriesInput, opts ...request.Option) (*ListNamedQueriesOutput, error)
    func (c *Athena) ListQueryExecutions(input *ListQueryExecutionsInput) (*ListQueryExecutionsOutput, error)
    func (c *Athena) ListQueryExecutionsPages(input *ListQueryExecutionsInput, fn func(*ListQueryExecutionsOutput, bool) bool) error
    func (c *Athena) ListQueryExecutionsPagesWithContext(ctx aws.Context, input *ListQueryExecutionsInput, fn func(*ListQueryExecutionsOutput, bool) bool, opts ...request.Option) error
    func (c *Athena) ListQueryExecutionsRequest(input *ListQueryExecutionsInput) (req *request.Request, output *ListQueryExecutionsOutput)
    func (c *Athena) ListQueryExecutionsWithContext(ctx aws.Context, input *ListQueryExecutionsInput, opts ...request.Option) (*ListQueryExecutionsOutput, error)
    func (c *Athena) StartQueryExecution(input *StartQueryExecutionInput) (*StartQueryExecutionOutput, error)
    func (c *Athena) StartQueryExecutionRequest(input *StartQueryExecutionInput) (req *request.Request, output *StartQueryExecutionOutput)
    func (c *Athena) StartQueryExecutionWithContext(ctx aws.Context, input *StartQueryExecutionInput, opts ...request.Option) (*StartQueryExecutionOutput, error)
    func (c *Athena) StopQueryExecution(input *StopQueryExecutionInput) (*StopQueryExecutionOutput, error)
    func (c *Athena) StopQueryExecutionRequest(input *StopQueryExecutionInput) (req *request.Request, output *StopQueryExecutionOutput)
    func (c *Athena) StopQueryExecutionWithContext(ctx aws.Context, input *StopQueryExecutionInput, opts ...request.Option) (*StopQueryExecutionOutput, error)
type BatchGetNamedQueryInput
    func (s BatchGetNamedQueryInput) GoString() string
    func (s *BatchGetNamedQueryInput) SetNamedQueryIds(v []*string) *BatchGetNamedQueryInput
    func (s BatchGetNamedQueryInput) String() string
    func (s *BatchGetNamedQueryInput) Validate() error
type BatchGetNamedQueryOutput
    func (s BatchGetNamedQueryOutput) GoString() string
    func (s *BatchGetNamedQueryOutput) SetNamedQueries(v []*NamedQuery) *BatchGetNamedQueryOutput
    func (s *BatchGetNamedQueryOutput) SetUnprocessedNamedQueryIds(v []*UnprocessedNamedQueryId) *BatchGetNamedQueryOutput
    func (s BatchGetNamedQueryOutput) String() string
type BatchGetQueryExecutionInput
    func (s BatchGetQueryExecutionInput) GoString() string
    func (s *BatchGetQueryExecutionInput) SetQueryExecutionIds(v []*string) *BatchGetQueryExecutionInput
    func (s BatchGetQueryExecutionInput) String() string
    func (s *BatchGetQueryExecutionInput) Validate() error
type BatchGetQueryExecutionOutput
    func (s BatchGetQueryExecutionOutput) GoString() string
    func (s *BatchGetQueryExecutionOutput) SetQueryExecutions(v []*QueryExecution) *BatchGetQueryExecutionOutput
    func (s *BatchGetQueryExecutionOutput) SetUnprocessedQueryExecutionIds(v []*UnprocessedQueryExecutionId) *BatchGetQueryExecutionOutput
    func (s BatchGetQueryExecutionOutput) String() string
type ColumnInfo
    func (s ColumnInfo) GoString() string
    func (s *ColumnInfo) SetCaseSensitive(v bool) *ColumnInfo
    func (s *ColumnInfo) SetCatalogName(v string) *ColumnInfo
    func (s *ColumnInfo) SetLabel(v string) *ColumnInfo
    func (s *ColumnInfo) SetName(v string) *ColumnInfo
    func (s *ColumnInfo) SetNullable(v string) *ColumnInfo
    func (s *ColumnInfo) SetPrecision(v int64) *ColumnInfo
    func (s *ColumnInfo) SetScale(v int64) *ColumnInfo
    func (s *ColumnInfo) SetSchemaName(v string) *ColumnInfo
    func (s *ColumnInfo) SetTableName(v string) *ColumnInfo
    func (s *ColumnInfo) SetType(v string) *ColumnInfo
    func (s ColumnInfo) String() string
type CreateNamedQueryInput
    func (s CreateNamedQueryInput) GoString() string
    func (s *CreateNamedQueryInput) SetClientRequestToken(v string) *CreateNamedQueryInput
    func (s *CreateNamedQueryInput) SetDatabase(v string) *CreateNamedQueryInput
    func (s *CreateNamedQueryInput) SetDescription(v string) *CreateNamedQueryInput
    func (s *CreateNamedQueryInput) SetName(v string) *CreateNamedQueryInput
    func (s *CreateNamedQueryInput) SetQueryString(v string) *CreateNamedQueryInput
    func (s CreateNamedQueryInput) String() string
    func (s *CreateNamedQueryInput) Validate() error
type CreateNamedQueryOutput
    func (s CreateNamedQueryOutput) GoString() string
    func (s *CreateNamedQueryOutput) SetNamedQueryId(v string) *CreateNamedQueryOutput
    func (s CreateNamedQueryOutput) String() string
type Datum
    func (s Datum) GoString() string
    func (s *Datum) SetVarCharValue(v string) *Datum
    func (s Datum) String() string
type DeleteNamedQueryInput
    func (s DeleteNamedQueryInput) GoString() string
    func (s *DeleteNamedQueryInput) SetNamedQueryId(v string) *DeleteNamedQueryInput
    func (s DeleteNamedQueryInput) String() string
    func (s *DeleteNamedQueryInput) Validate() error
type DeleteNamedQueryOutput
    func (s DeleteNamedQueryOutput) GoString() string
    func (s DeleteNamedQueryOutput) String() string
type EncryptionConfiguration
    func (s EncryptionConfiguration) GoString() string
    func (s *EncryptionConfiguration) SetEncryptionOption(v string) *EncryptionConfiguration
    func (s *EncryptionConfiguration) SetKmsKey(v string) *EncryptionConfiguration
    func (s EncryptionConfiguration) String() string
    func (s *EncryptionConfiguration) Validate() error
type GetNamedQueryInput
    func (s GetNamedQueryInput) GoString() string
    func (s *GetNamedQueryInput) SetNamedQueryId(v string) *GetNamedQueryInput
    func (s GetNamedQueryInput) String() string
    func (s *GetNamedQueryInput) Validate() error
type GetNamedQueryOutput
    func (s GetNamedQueryOutput) GoString() string
    func (s *GetNamedQueryOutput) SetNamedQuery(v *NamedQuery) *GetNamedQueryOutput
    func (s GetNamedQueryOutput) String() string
type GetQueryExecutionInput
    func (s GetQueryExecutionInput) GoString() string
    func (s *GetQueryExecutionInput) SetQueryExecutionId(v string) *GetQueryExecutionInput
    func (s GetQueryExecutionInput) String() string
    func (s *GetQueryExecutionInput) Validate() error
type GetQueryExecutionOutput
    func (s GetQueryExecutionOutput) GoString() string
    func (s *GetQueryExecutionOutput) SetQueryExecution(v *QueryExecution) *GetQueryExecutionOutput
    func (s GetQueryExecutionOutput) String() string
type GetQueryResultsInput
    func (s GetQueryResultsInput) GoString() string
    func (s *GetQueryResultsInput) SetMaxResults(v int64) *GetQueryResultsInput
    func (s *GetQueryResultsInput) SetNextToken(v string) *GetQueryResultsInput
    func (s *GetQueryResultsInput) SetQueryExecutionId(v string) *GetQueryResultsInput
    func (s GetQueryResultsInput) String() string
    func (s *GetQueryResultsInput) Validate() error
type GetQueryResultsOutput
    func (s GetQueryResultsOutput) GoString() string
    func (s *GetQueryResultsOutput) SetNextToken(v string) *GetQueryResultsOutput
    func (s *GetQueryResultsOutput) SetResultSet(v *ResultSet) *GetQueryResultsOutput
    func (s GetQueryResultsOutput) String() string
type ListNamedQueriesInput
    func (s ListNamedQueriesInput) GoString() string
    func (s *ListNamedQueriesInput) SetMaxResults(v int64) *ListNamedQueriesInput
    func (s *ListNamedQueriesInput) SetNextToken(v string) *ListNamedQueriesInput
    func (s ListNamedQueriesInput) String() string
type ListNamedQueriesOutput
    func (s ListNamedQueriesOutput) GoString() string
    func (s *ListNamedQueriesOutput) SetNamedQueryIds(v []*string) *ListNamedQueriesOutput
    func (s *ListNamedQueriesOutput) SetNextToken(v string) *ListNamedQueriesOutput
    func (s ListNamedQueriesOutput) String() string
type ListQueryExecutionsInput
    func (s ListQueryExecutionsInput) GoString() string
    func (s *ListQueryExecutionsInput) SetMaxResults(v int64) *ListQueryExecutionsInput
    func (s *ListQueryExecutionsInput) SetNextToken(v string) *ListQueryExecutionsInput
    func (s ListQueryExecutionsInput) String() string
type ListQueryExecutionsOutput
    func (s ListQueryExecutionsOutput) GoString() string
    func (s *ListQueryExecutionsOutput) SetNextToken(v string) *ListQueryExecutionsOutput
    func (s *ListQueryExecutionsOutput) SetQueryExecutionIds(v []*string) *ListQueryExecutionsOutput
    func (s ListQueryExecutionsOutput) String() string
type NamedQuery
    func (s NamedQuery) GoString() string
    func (s *NamedQuery) SetDatabase(v string) *NamedQuery
    func (s *NamedQuery) SetDescription(v string) *NamedQuery
    func (s *NamedQuery) SetName(v string) *NamedQuery
    func (s *NamedQuery) SetNamedQueryId(v string) *NamedQuery
    func (s *NamedQuery) SetQueryString(v string) *NamedQuery
    func (s NamedQuery) String() string
type QueryExecution
    func (s QueryExecution) GoString() string
    func (s *QueryExecution) SetQuery(v string) *QueryExecution
    func (s *QueryExecution) SetQueryExecutionContext(v *QueryExecutionContext) *QueryExecution
    func (s *QueryExecution) SetQueryExecutionId(v string) *QueryExecution
    func (s *QueryExecution) SetResultConfiguration(v *ResultConfiguration) *QueryExecution
    func (s *QueryExecution) SetStatistics(v *QueryExecutionStatistics) *QueryExecution
    func (s *QueryExecution) SetStatus(v *QueryExecutionStatus) *QueryExecution
    func (s QueryExecution) String() string
type QueryExecutionContext
    func (s QueryExecutionContext) GoString() string
    func (s *QueryExecutionContext) SetDatabase(v string) *QueryExecutionContext
    func (s QueryExecutionContext) String() string
    func (s *QueryExecutionContext) Validate() error
type QueryExecutionStatistics
    func (s QueryExecutionStatistics) GoString() string
    func (s *QueryExecutionStatistics) SetDataScannedInBytes(v int64) *QueryExecutionStatistics
    func (s *QueryExecutionStatistics) SetEngineExecutionTimeInMillis(v int64) *QueryExecutionStatistics
    func (s QueryExecutionStatistics) String() string
type QueryExecutionStatus
    func (s QueryExecutionStatus) GoString() string
    func (s *QueryExecutionStatus) SetCompletionDateTime(v time.Time) *QueryExecutionStatus
    func (s *QueryExecutionStatus) SetState(v string) *QueryExecutionStatus
    func (s *QueryExecutionStatus) SetStateChangeReason(v string) *QueryExecutionStatus
    func (s *QueryExecutionStatus) SetSubmissionDateTime(v time.Time) *QueryExecutionStatus
    func (s QueryExecutionStatus) String() string
type ResultConfiguration
    func (s ResultConfiguration) GoString() string
    func (s *ResultConfiguration) SetEncryptionConfiguration(v *EncryptionConfiguration) *ResultConfiguration
    func (s *ResultConfiguration) SetOutputLocation(v string) *ResultConfiguration
    func (s ResultConfiguration) String() string
    func (s *ResultConfiguration) Validate() error
type ResultSet
    func (s ResultSet) GoString() string
    func (s *ResultSet) SetResultSetMetadata(v *ResultSetMetadata) *ResultSet
    func (s *ResultSet) SetRows(v []*Row) *ResultSet
    func (s ResultSet) String() string
type ResultSetMetadata
    func (s ResultSetMetadata) GoString() string
    func (s *ResultSetMetadata) SetColumnInfo(v []*ColumnInfo) *ResultSetMetadata
    func (s ResultSetMetadata) String() string
type Row
    func (s Row) GoString() string
    func (s *Row) SetData(v []*Datum) *Row
    func (s Row) String() string
type StartQueryExecutionInput
    func (s StartQueryExecutionInput) GoString() string
    func (s *StartQueryExecutionInput) SetClientRequestToken(v string) *StartQueryExecutionInput
    func (s *StartQueryExecutionInput) SetQueryExecutionContext(v *QueryExecutionContext) *StartQueryExecutionInput
    func (s *StartQueryExecutionInput) SetQueryString(v string) *StartQueryExecutionInput
    func (s *StartQueryExecutionInput) SetResultConfiguration(v *ResultConfiguration) *StartQueryExecutionInput
    func (s StartQueryExecutionInput) String() string
    func (s *StartQueryExecutionInput) Validate() error
type StartQueryExecutionOutput
    func (s StartQueryExecutionOutput) GoString() string
    func (s *StartQueryExecutionOutput) SetQueryExecutionId(v string) *StartQueryExecutionOutput
    func (s StartQueryExecutionOutput) String() string
type StopQueryExecutionInput
    func (s StopQueryExecutionInput) GoString() string
    func (s *StopQueryExecutionInput) SetQueryExecutionId(v string) *StopQueryExecutionInput
    func (s StopQueryExecutionInput) String() string
    func (s *StopQueryExecutionInput) Validate() error
type StopQueryExecutionOutput
    func (s StopQueryExecutionOutput) GoString() string
    func (s StopQueryExecutionOutput) String() string
type UnprocessedNamedQueryId
    func (s UnprocessedNamedQueryId) GoString() string
    func (s *UnprocessedNamedQueryId) SetErrorCode(v string) *UnprocessedNamedQueryId
    func (s *UnprocessedNamedQueryId) SetErrorMessage(v string) *UnprocessedNamedQueryId
    func (s *UnprocessedNamedQueryId) SetNamedQueryId(v string) *UnprocessedNamedQueryId
    func (s UnprocessedNamedQueryId) String() string
type UnprocessedQueryExecutionId
    func (s UnprocessedQueryExecutionId) GoString() string
    func (s *UnprocessedQueryExecutionId) SetErrorCode(v string) *UnprocessedQueryExecutionId
    func (s *UnprocessedQueryExecutionId) SetErrorMessage(v string) *UnprocessedQueryExecutionId
    func (s *UnprocessedQueryExecutionId) SetQueryExecutionId(v string) *UnprocessedQueryExecutionId
    func (s UnprocessedQueryExecutionId) String() string

Package files

api.go doc.go errors.go service.go

Constants

const (
    // ColumnNullableNotNull is a ColumnNullable enum value
    ColumnNullableNotNull = "NOT_NULL"

    // ColumnNullableNullable is a ColumnNullable enum value
    ColumnNullableNullable = "NULLABLE"

    // ColumnNullableUnknown is a ColumnNullable enum value
    ColumnNullableUnknown = "UNKNOWN"
)
const (
    // EncryptionOptionSseS3 is a EncryptionOption enum value
    EncryptionOptionSseS3 = "SSE_S3"

    // EncryptionOptionSseKms is a EncryptionOption enum value
    EncryptionOptionSseKms = "SSE_KMS"

    // EncryptionOptionCseKms is a EncryptionOption enum value
    EncryptionOptionCseKms = "CSE_KMS"
)
const (
    // QueryExecutionStateQueued is a QueryExecutionState enum value
    QueryExecutionStateQueued = "QUEUED"

    // QueryExecutionStateRunning is a QueryExecutionState enum value
    QueryExecutionStateRunning = "RUNNING"

    // QueryExecutionStateSucceeded is a QueryExecutionState enum value
    QueryExecutionStateSucceeded = "SUCCEEDED"

    // QueryExecutionStateFailed is a QueryExecutionState enum value
    QueryExecutionStateFailed = "FAILED"

    // QueryExecutionStateCancelled is a QueryExecutionState enum value
    QueryExecutionStateCancelled = "CANCELLED"
)
const (

    // ErrCodeInternalServerException for service response error code
    // "InternalServerException".
    //
    // Indicates a platform issue, which may be due to a transient condition or
    // outage.
    ErrCodeInternalServerException = "InternalServerException"

    // ErrCodeInvalidRequestException for service response error code
    // "InvalidRequestException".
    //
    // Indicates that something is wrong with the input to the request. For example,
    // a required parameter may be missing or out of range.
    ErrCodeInvalidRequestException = "InvalidRequestException"

    // ErrCodeTooManyRequestsException for service response error code
    // "TooManyRequestsException".
    //
    // Indicates that the request was throttled.
    ErrCodeTooManyRequestsException = "TooManyRequestsException"
)

Service information constants

const (
    ServiceName = "athena"    // Service endpoint prefix API calls made to.
    EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata.
)
const (
    // ThrottleReasonConcurrentQueryLimitExceeded is a ThrottleReason enum value
    ThrottleReasonConcurrentQueryLimitExceeded = "CONCURRENT_QUERY_LIMIT_EXCEEDED"
)

type Athena

Athena provides the API operation methods for making requests to Amazon Athena. See this package's package overview docs for details on the service.

Athena methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

type Athena struct {
    *client.Client
}

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *Athena

New creates a new instance of the Athena client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a Athena client from just a session.
svc := athena.New(mySession)

// Create a Athena client with additional configuration
svc := athena.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*Athena) BatchGetNamedQuery

func (c *Athena) BatchGetNamedQuery(input *BatchGetNamedQueryInput) (*BatchGetNamedQueryOutput, error)

BatchGetNamedQuery API operation for Amazon Athena.

Returns the details of a single named query or a list of up to 50 queries, which you provide as an array of query ID strings. Use ListNamedQueries to get the list of named query IDs. If information could not be retrieved for a submitted query ID, information about the query ID submitted is listed under UnprocessedNamedQueryId. Named queries are different from executed queries. Use BatchGetQueryExecution to get details about each unique query execution, and ListQueryExecutions to get a list of query execution IDs.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation BatchGetNamedQuery for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/BatchGetNamedQuery

func (*Athena) BatchGetNamedQueryRequest

func (c *Athena) BatchGetNamedQueryRequest(input *BatchGetNamedQueryInput) (req *request.Request, output *BatchGetNamedQueryOutput)

BatchGetNamedQueryRequest generates a "aws/request.Request" representing the client's request for the BatchGetNamedQuery operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See BatchGetNamedQuery for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the BatchGetNamedQuery method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the BatchGetNamedQueryRequest method.
req, resp := client.BatchGetNamedQueryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/BatchGetNamedQuery

func (*Athena) BatchGetNamedQueryWithContext

func (c *Athena) BatchGetNamedQueryWithContext(ctx aws.Context, input *BatchGetNamedQueryInput, opts ...request.Option) (*BatchGetNamedQueryOutput, error)

BatchGetNamedQueryWithContext is the same as BatchGetNamedQuery with the addition of the ability to pass a context and additional request options.

See BatchGetNamedQuery for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) BatchGetQueryExecution

func (c *Athena) BatchGetQueryExecution(input *BatchGetQueryExecutionInput) (*BatchGetQueryExecutionOutput, error)

BatchGetQueryExecution API operation for Amazon Athena.

Returns the details of a single query execution or a list of up to 50 query executions, which you provide as an array of query execution ID strings. To get a list of query execution IDs, use ListQueryExecutions. Query executions are different from named (saved) queries. Use BatchGetNamedQuery to get details about named queries.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation BatchGetQueryExecution for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/BatchGetQueryExecution

func (*Athena) BatchGetQueryExecutionRequest

func (c *Athena) BatchGetQueryExecutionRequest(input *BatchGetQueryExecutionInput) (req *request.Request, output *BatchGetQueryExecutionOutput)

BatchGetQueryExecutionRequest generates a "aws/request.Request" representing the client's request for the BatchGetQueryExecution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See BatchGetQueryExecution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the BatchGetQueryExecution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the BatchGetQueryExecutionRequest method.
req, resp := client.BatchGetQueryExecutionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/BatchGetQueryExecution

func (*Athena) BatchGetQueryExecutionWithContext

func (c *Athena) BatchGetQueryExecutionWithContext(ctx aws.Context, input *BatchGetQueryExecutionInput, opts ...request.Option) (*BatchGetQueryExecutionOutput, error)

BatchGetQueryExecutionWithContext is the same as BatchGetQueryExecution with the addition of the ability to pass a context and additional request options.

See BatchGetQueryExecution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) CreateNamedQuery

func (c *Athena) CreateNamedQuery(input *CreateNamedQueryInput) (*CreateNamedQueryOutput, error)

CreateNamedQuery API operation for Amazon Athena.

Creates a named query.

For code samples using the AWS SDK for Java, see Examples and Code Samples (http://docs.aws.amazon.com/athena/latest/ug/code-samples.html) in the Amazon Athena User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation CreateNamedQuery for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/CreateNamedQuery

func (*Athena) CreateNamedQueryRequest

func (c *Athena) CreateNamedQueryRequest(input *CreateNamedQueryInput) (req *request.Request, output *CreateNamedQueryOutput)

CreateNamedQueryRequest generates a "aws/request.Request" representing the client's request for the CreateNamedQuery operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateNamedQuery for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateNamedQuery method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateNamedQueryRequest method.
req, resp := client.CreateNamedQueryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/CreateNamedQuery

func (*Athena) CreateNamedQueryWithContext

func (c *Athena) CreateNamedQueryWithContext(ctx aws.Context, input *CreateNamedQueryInput, opts ...request.Option) (*CreateNamedQueryOutput, error)

CreateNamedQueryWithContext is the same as CreateNamedQuery with the addition of the ability to pass a context and additional request options.

See CreateNamedQuery for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) DeleteNamedQuery

func (c *Athena) DeleteNamedQuery(input *DeleteNamedQueryInput) (*DeleteNamedQueryOutput, error)

DeleteNamedQuery API operation for Amazon Athena.

Deletes a named query.

For code samples using the AWS SDK for Java, see Examples and Code Samples (http://docs.aws.amazon.com/athena/latest/ug/code-samples.html) in the Amazon Athena User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation DeleteNamedQuery for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/DeleteNamedQuery

func (*Athena) DeleteNamedQueryRequest

func (c *Athena) DeleteNamedQueryRequest(input *DeleteNamedQueryInput) (req *request.Request, output *DeleteNamedQueryOutput)

DeleteNamedQueryRequest generates a "aws/request.Request" representing the client's request for the DeleteNamedQuery operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteNamedQuery for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteNamedQuery method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteNamedQueryRequest method.
req, resp := client.DeleteNamedQueryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/DeleteNamedQuery

func (*Athena) DeleteNamedQueryWithContext

func (c *Athena) DeleteNamedQueryWithContext(ctx aws.Context, input *DeleteNamedQueryInput, opts ...request.Option) (*DeleteNamedQueryOutput, error)

DeleteNamedQueryWithContext is the same as DeleteNamedQuery with the addition of the ability to pass a context and additional request options.

See DeleteNamedQuery for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) GetNamedQuery

func (c *Athena) GetNamedQuery(input *GetNamedQueryInput) (*GetNamedQueryOutput, error)

GetNamedQuery API operation for Amazon Athena.

Returns information about a single query.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation GetNamedQuery for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetNamedQuery

func (*Athena) GetNamedQueryRequest

func (c *Athena) GetNamedQueryRequest(input *GetNamedQueryInput) (req *request.Request, output *GetNamedQueryOutput)

GetNamedQueryRequest generates a "aws/request.Request" representing the client's request for the GetNamedQuery operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetNamedQuery for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetNamedQuery method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetNamedQueryRequest method.
req, resp := client.GetNamedQueryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetNamedQuery

func (*Athena) GetNamedQueryWithContext

func (c *Athena) GetNamedQueryWithContext(ctx aws.Context, input *GetNamedQueryInput, opts ...request.Option) (*GetNamedQueryOutput, error)

GetNamedQueryWithContext is the same as GetNamedQuery with the addition of the ability to pass a context and additional request options.

See GetNamedQuery for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) GetQueryExecution

func (c *Athena) GetQueryExecution(input *GetQueryExecutionInput) (*GetQueryExecutionOutput, error)

GetQueryExecution API operation for Amazon Athena.

Returns information about a single execution of a query. Each time a query executes, information about the query execution is saved with a unique ID.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation GetQueryExecution for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetQueryExecution

func (*Athena) GetQueryExecutionRequest

func (c *Athena) GetQueryExecutionRequest(input *GetQueryExecutionInput) (req *request.Request, output *GetQueryExecutionOutput)

GetQueryExecutionRequest generates a "aws/request.Request" representing the client's request for the GetQueryExecution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetQueryExecution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetQueryExecution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetQueryExecutionRequest method.
req, resp := client.GetQueryExecutionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetQueryExecution

func (*Athena) GetQueryExecutionWithContext

func (c *Athena) GetQueryExecutionWithContext(ctx aws.Context, input *GetQueryExecutionInput, opts ...request.Option) (*GetQueryExecutionOutput, error)

GetQueryExecutionWithContext is the same as GetQueryExecution with the addition of the ability to pass a context and additional request options.

See GetQueryExecution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) GetQueryResults

func (c *Athena) GetQueryResults(input *GetQueryResultsInput) (*GetQueryResultsOutput, error)

GetQueryResults API operation for Amazon Athena.

Returns the results of a single query execution specified by QueryExecutionId. This request does not execute the query but returns results. Use StartQueryExecution to run a query.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation GetQueryResults for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetQueryResults

func (*Athena) GetQueryResultsPages

func (c *Athena) GetQueryResultsPages(input *GetQueryResultsInput, fn func(*GetQueryResultsOutput, bool) bool) error

GetQueryResultsPages iterates over the pages of a GetQueryResults operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetQueryResults method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetQueryResults operation.
pageNum := 0
err := client.GetQueryResultsPages(params,
    func(page *GetQueryResultsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*Athena) GetQueryResultsPagesWithContext

func (c *Athena) GetQueryResultsPagesWithContext(ctx aws.Context, input *GetQueryResultsInput, fn func(*GetQueryResultsOutput, bool) bool, opts ...request.Option) error

GetQueryResultsPagesWithContext same as GetQueryResultsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) GetQueryResultsRequest

func (c *Athena) GetQueryResultsRequest(input *GetQueryResultsInput) (req *request.Request, output *GetQueryResultsOutput)

GetQueryResultsRequest generates a "aws/request.Request" representing the client's request for the GetQueryResults operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetQueryResults for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetQueryResults method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetQueryResultsRequest method.
req, resp := client.GetQueryResultsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetQueryResults

func (*Athena) GetQueryResultsWithContext

func (c *Athena) GetQueryResultsWithContext(ctx aws.Context, input *GetQueryResultsInput, opts ...request.Option) (*GetQueryResultsOutput, error)

GetQueryResultsWithContext is the same as GetQueryResults with the addition of the ability to pass a context and additional request options.

See GetQueryResults for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) ListNamedQueries

func (c *Athena) ListNamedQueries(input *ListNamedQueriesInput) (*ListNamedQueriesOutput, error)

ListNamedQueries API operation for Amazon Athena.

Provides a list of all available query IDs.

For code samples using the AWS SDK for Java, see Examples and Code Samples (http://docs.aws.amazon.com/athena/latest/ug/code-samples.html) in the Amazon Athena User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation ListNamedQueries for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListNamedQueries

func (*Athena) ListNamedQueriesPages

func (c *Athena) ListNamedQueriesPages(input *ListNamedQueriesInput, fn func(*ListNamedQueriesOutput, bool) bool) error

ListNamedQueriesPages iterates over the pages of a ListNamedQueries operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListNamedQueries method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListNamedQueries operation.
pageNum := 0
err := client.ListNamedQueriesPages(params,
    func(page *ListNamedQueriesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*Athena) ListNamedQueriesPagesWithContext

func (c *Athena) ListNamedQueriesPagesWithContext(ctx aws.Context, input *ListNamedQueriesInput, fn func(*ListNamedQueriesOutput, bool) bool, opts ...request.Option) error

ListNamedQueriesPagesWithContext same as ListNamedQueriesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) ListNamedQueriesRequest

func (c *Athena) ListNamedQueriesRequest(input *ListNamedQueriesInput) (req *request.Request, output *ListNamedQueriesOutput)

ListNamedQueriesRequest generates a "aws/request.Request" representing the client's request for the ListNamedQueries operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListNamedQueries for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListNamedQueries method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListNamedQueriesRequest method.
req, resp := client.ListNamedQueriesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListNamedQueries

func (*Athena) ListNamedQueriesWithContext

func (c *Athena) ListNamedQueriesWithContext(ctx aws.Context, input *ListNamedQueriesInput, opts ...request.Option) (*ListNamedQueriesOutput, error)

ListNamedQueriesWithContext is the same as ListNamedQueries with the addition of the ability to pass a context and additional request options.

See ListNamedQueries for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) ListQueryExecutions

func (c *Athena) ListQueryExecutions(input *ListQueryExecutionsInput) (*ListQueryExecutionsOutput, error)

ListQueryExecutions API operation for Amazon Athena.

Provides a list of all available query execution IDs.

For code samples using the AWS SDK for Java, see Examples and Code Samples (http://docs.aws.amazon.com/athena/latest/ug/code-samples.html) in the Amazon Athena User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation ListQueryExecutions for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListQueryExecutions

func (*Athena) ListQueryExecutionsPages

func (c *Athena) ListQueryExecutionsPages(input *ListQueryExecutionsInput, fn func(*ListQueryExecutionsOutput, bool) bool) error

ListQueryExecutionsPages iterates over the pages of a ListQueryExecutions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListQueryExecutions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListQueryExecutions operation.
pageNum := 0
err := client.ListQueryExecutionsPages(params,
    func(page *ListQueryExecutionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*Athena) ListQueryExecutionsPagesWithContext

func (c *Athena) ListQueryExecutionsPagesWithContext(ctx aws.Context, input *ListQueryExecutionsInput, fn func(*ListQueryExecutionsOutput, bool) bool, opts ...request.Option) error

ListQueryExecutionsPagesWithContext same as ListQueryExecutionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) ListQueryExecutionsRequest

func (c *Athena) ListQueryExecutionsRequest(input *ListQueryExecutionsInput) (req *request.Request, output *ListQueryExecutionsOutput)

ListQueryExecutionsRequest generates a "aws/request.Request" representing the client's request for the ListQueryExecutions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListQueryExecutions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListQueryExecutions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListQueryExecutionsRequest method.
req, resp := client.ListQueryExecutionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListQueryExecutions

func (*Athena) ListQueryExecutionsWithContext

func (c *Athena) ListQueryExecutionsWithContext(ctx aws.Context, input *ListQueryExecutionsInput, opts ...request.Option) (*ListQueryExecutionsOutput, error)

ListQueryExecutionsWithContext is the same as ListQueryExecutions with the addition of the ability to pass a context and additional request options.

See ListQueryExecutions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) StartQueryExecution

func (c *Athena) StartQueryExecution(input *StartQueryExecutionInput) (*StartQueryExecutionOutput, error)

StartQueryExecution API operation for Amazon Athena.

Runs (executes) the SQL query statements contained in the Query string.

For code samples using the AWS SDK for Java, see Examples and Code Samples (http://docs.aws.amazon.com/athena/latest/ug/code-samples.html) in the Amazon Athena User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation StartQueryExecution for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

* ErrCodeTooManyRequestsException "TooManyRequestsException"
Indicates that the request was throttled.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StartQueryExecution

func (*Athena) StartQueryExecutionRequest

func (c *Athena) StartQueryExecutionRequest(input *StartQueryExecutionInput) (req *request.Request, output *StartQueryExecutionOutput)

StartQueryExecutionRequest generates a "aws/request.Request" representing the client's request for the StartQueryExecution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See StartQueryExecution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the StartQueryExecution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the StartQueryExecutionRequest method.
req, resp := client.StartQueryExecutionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StartQueryExecution

func (*Athena) StartQueryExecutionWithContext

func (c *Athena) StartQueryExecutionWithContext(ctx aws.Context, input *StartQueryExecutionInput, opts ...request.Option) (*StartQueryExecutionOutput, error)

StartQueryExecutionWithContext is the same as StartQueryExecution with the addition of the ability to pass a context and additional request options.

See StartQueryExecution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*Athena) StopQueryExecution

func (c *Athena) StopQueryExecution(input *StopQueryExecutionInput) (*StopQueryExecutionOutput, error)

StopQueryExecution API operation for Amazon Athena.

Stops a query execution.

For code samples using the AWS SDK for Java, see Examples and Code Samples (http://docs.aws.amazon.com/athena/latest/ug/code-samples.html) in the Amazon Athena User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Athena's API operation StopQueryExecution for usage and error information.

Returned Error Codes:

* ErrCodeInternalServerException "InternalServerException"
Indicates a platform issue, which may be due to a transient condition or
outage.

* ErrCodeInvalidRequestException "InvalidRequestException"
Indicates that something is wrong with the input to the request. For example,
a required parameter may be missing or out of range.

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StopQueryExecution

func (*Athena) StopQueryExecutionRequest

func (c *Athena) StopQueryExecutionRequest(input *StopQueryExecutionInput) (req *request.Request, output *StopQueryExecutionOutput)

StopQueryExecutionRequest generates a "aws/request.Request" representing the client's request for the StopQueryExecution operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See StopQueryExecution for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the StopQueryExecution method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the StopQueryExecutionRequest method.
req, resp := client.StopQueryExecutionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StopQueryExecution

func (*Athena) StopQueryExecutionWithContext

func (c *Athena) StopQueryExecutionWithContext(ctx aws.Context, input *StopQueryExecutionInput, opts ...request.Option) (*StopQueryExecutionOutput, error)

StopQueryExecutionWithContext is the same as StopQueryExecution with the addition of the ability to pass a context and additional request options.

See StopQueryExecution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type BatchGetNamedQueryInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/BatchGetNamedQueryInput

type BatchGetNamedQueryInput struct {

    // An array of query IDs.
    //
    // NamedQueryIds is a required field
    NamedQueryIds []*string `min:"1" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (BatchGetNamedQueryInput) GoString

func (s BatchGetNamedQueryInput) GoString() string

GoString returns the string representation

func (*BatchGetNamedQueryInput) SetNamedQueryIds

func (s *BatchGetNamedQueryInput) SetNamedQueryIds(v []*string) *BatchGetNamedQueryInput

SetNamedQueryIds sets the NamedQueryIds field's value.

func (BatchGetNamedQueryInput) String

func (s BatchGetNamedQueryInput) String() string

String returns the string representation

func (*BatchGetNamedQueryInput) Validate

func (s *BatchGetNamedQueryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetNamedQueryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/BatchGetNamedQueryOutput

type BatchGetNamedQueryOutput struct {

    // Information about the named query IDs submitted.
    NamedQueries []*NamedQuery `type:"list"`

    // Information about provided query IDs.
    UnprocessedNamedQueryIds []*UnprocessedNamedQueryId `type:"list"`
    // contains filtered or unexported fields
}

func (BatchGetNamedQueryOutput) GoString

func (s BatchGetNamedQueryOutput) GoString() string

GoString returns the string representation

func (*BatchGetNamedQueryOutput) SetNamedQueries

func (s *BatchGetNamedQueryOutput) SetNamedQueries(v []*NamedQuery) *BatchGetNamedQueryOutput

SetNamedQueries sets the NamedQueries field's value.

func (*BatchGetNamedQueryOutput) SetUnprocessedNamedQueryIds

func (s *BatchGetNamedQueryOutput) SetUnprocessedNamedQueryIds(v []*UnprocessedNamedQueryId) *BatchGetNamedQueryOutput

SetUnprocessedNamedQueryIds sets the UnprocessedNamedQueryIds field's value.

func (BatchGetNamedQueryOutput) String

func (s BatchGetNamedQueryOutput) String() string

String returns the string representation

type BatchGetQueryExecutionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/BatchGetQueryExecutionInput

type BatchGetQueryExecutionInput struct {

    // An array of query execution IDs.
    //
    // QueryExecutionIds is a required field
    QueryExecutionIds []*string `min:"1" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (BatchGetQueryExecutionInput) GoString

func (s BatchGetQueryExecutionInput) GoString() string

GoString returns the string representation

func (*BatchGetQueryExecutionInput) SetQueryExecutionIds

func (s *BatchGetQueryExecutionInput) SetQueryExecutionIds(v []*string) *BatchGetQueryExecutionInput

SetQueryExecutionIds sets the QueryExecutionIds field's value.

func (BatchGetQueryExecutionInput) String

func (s BatchGetQueryExecutionInput) String() string

String returns the string representation

func (*BatchGetQueryExecutionInput) Validate

func (s *BatchGetQueryExecutionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetQueryExecutionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/BatchGetQueryExecutionOutput

type BatchGetQueryExecutionOutput struct {

    // Information about a query execution.
    QueryExecutions []*QueryExecution `type:"list"`

    // Information about the query executions that failed to run.
    UnprocessedQueryExecutionIds []*UnprocessedQueryExecutionId `type:"list"`
    // contains filtered or unexported fields
}

func (BatchGetQueryExecutionOutput) GoString

func (s BatchGetQueryExecutionOutput) GoString() string

GoString returns the string representation

func (*BatchGetQueryExecutionOutput) SetQueryExecutions

func (s *BatchGetQueryExecutionOutput) SetQueryExecutions(v []*QueryExecution) *BatchGetQueryExecutionOutput

SetQueryExecutions sets the QueryExecutions field's value.

func (*BatchGetQueryExecutionOutput) SetUnprocessedQueryExecutionIds

func (s *BatchGetQueryExecutionOutput) SetUnprocessedQueryExecutionIds(v []*UnprocessedQueryExecutionId) *BatchGetQueryExecutionOutput

SetUnprocessedQueryExecutionIds sets the UnprocessedQueryExecutionIds field's value.

func (BatchGetQueryExecutionOutput) String

func (s BatchGetQueryExecutionOutput) String() string

String returns the string representation

type ColumnInfo

Information about the columns in a query execution result. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ColumnInfo

type ColumnInfo struct {

    // Indicates whether values in the column are case-sensitive.
    CaseSensitive *bool `type:"boolean"`

    // The catalog to which the query results belong.
    CatalogName *string `type:"string"`

    // A column label.
    Label *string `type:"string"`

    // The name of the column.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // Indicates the column's nullable status.
    Nullable *string `type:"string" enum:"ColumnNullable"`

    // For DECIMAL data types, specifies the total number of digits, up to 38. For
    // performance reasons, we recommend up to 18 digits.
    Precision *int64 `type:"integer"`

    // For DECIMAL data types, specifies the total number of digits in the fractional
    // part of the value. Defaults to 0.
    Scale *int64 `type:"integer"`

    // The schema name (database name) to which the query results belong.
    SchemaName *string `type:"string"`

    // The table name for the query results.
    TableName *string `type:"string"`

    // The data type of the column.
    //
    // Type is a required field
    Type *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ColumnInfo) GoString

func (s ColumnInfo) GoString() string

GoString returns the string representation

func (*ColumnInfo) SetCaseSensitive

func (s *ColumnInfo) SetCaseSensitive(v bool) *ColumnInfo

SetCaseSensitive sets the CaseSensitive field's value.

func (*ColumnInfo) SetCatalogName

func (s *ColumnInfo) SetCatalogName(v string) *ColumnInfo

SetCatalogName sets the CatalogName field's value.

func (*ColumnInfo) SetLabel

func (s *ColumnInfo) SetLabel(v string) *ColumnInfo

SetLabel sets the Label field's value.

func (*ColumnInfo) SetName

func (s *ColumnInfo) SetName(v string) *ColumnInfo

SetName sets the Name field's value.

func (*ColumnInfo) SetNullable

func (s *ColumnInfo) SetNullable(v string) *ColumnInfo

SetNullable sets the Nullable field's value.

func (*ColumnInfo) SetPrecision

func (s *ColumnInfo) SetPrecision(v int64) *ColumnInfo

SetPrecision sets the Precision field's value.

func (*ColumnInfo) SetScale

func (s *ColumnInfo) SetScale(v int64) *ColumnInfo

SetScale sets the Scale field's value.

func (*ColumnInfo) SetSchemaName

func (s *ColumnInfo) SetSchemaName(v string) *ColumnInfo

SetSchemaName sets the SchemaName field's value.

func (*ColumnInfo) SetTableName

func (s *ColumnInfo) SetTableName(v string) *ColumnInfo

SetTableName sets the TableName field's value.

func (*ColumnInfo) SetType

func (s *ColumnInfo) SetType(v string) *ColumnInfo

SetType sets the Type field's value.

func (ColumnInfo) String

func (s ColumnInfo) String() string

String returns the string representation

type CreateNamedQueryInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/CreateNamedQueryInput

type CreateNamedQueryInput struct {

    // A unique case-sensitive string used to ensure the request to create the query
    // is idempotent (executes only once). If another CreateNamedQuery request is
    // received, the same response is returned and another query is not created.
    // If a parameter has changed, for example, the QueryString, an error is returned.
    //
    // This token is listed as not required because AWS SDKs (for example the AWS
    // SDK for Java) auto-generate the token for users. If you are not using the
    // AWS SDK or the AWS CLI, you must provide this token or the action will fail.
    ClientRequestToken *string `min:"32" type:"string" idempotencyToken:"true"`

    // The database to which the query belongs.
    //
    // Database is a required field
    Database *string `min:"1" type:"string" required:"true"`

    // A brief explanation of the query.
    Description *string `min:"1" type:"string"`

    // The plain language name for the query.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The text of the query itself. In other words, all query statements.
    //
    // QueryString is a required field
    QueryString *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateNamedQueryInput) GoString

func (s CreateNamedQueryInput) GoString() string

GoString returns the string representation

func (*CreateNamedQueryInput) SetClientRequestToken

func (s *CreateNamedQueryInput) SetClientRequestToken(v string) *CreateNamedQueryInput

SetClientRequestToken sets the ClientRequestToken field's value.

func (*CreateNamedQueryInput) SetDatabase

func (s *CreateNamedQueryInput) SetDatabase(v string) *CreateNamedQueryInput

SetDatabase sets the Database field's value.

func (*CreateNamedQueryInput) SetDescription

func (s *CreateNamedQueryInput) SetDescription(v string) *CreateNamedQueryInput

SetDescription sets the Description field's value.

func (*CreateNamedQueryInput) SetName

func (s *CreateNamedQueryInput) SetName(v string) *CreateNamedQueryInput

SetName sets the Name field's value.

func (*CreateNamedQueryInput) SetQueryString

func (s *CreateNamedQueryInput) SetQueryString(v string) *CreateNamedQueryInput

SetQueryString sets the QueryString field's value.

func (CreateNamedQueryInput) String

func (s CreateNamedQueryInput) String() string

String returns the string representation

func (*CreateNamedQueryInput) Validate

func (s *CreateNamedQueryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateNamedQueryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/CreateNamedQueryOutput

type CreateNamedQueryOutput struct {

    // The unique ID of the query.
    NamedQueryId *string `type:"string"`
    // contains filtered or unexported fields
}

func (CreateNamedQueryOutput) GoString

func (s CreateNamedQueryOutput) GoString() string

GoString returns the string representation

func (*CreateNamedQueryOutput) SetNamedQueryId

func (s *CreateNamedQueryOutput) SetNamedQueryId(v string) *CreateNamedQueryOutput

SetNamedQueryId sets the NamedQueryId field's value.

func (CreateNamedQueryOutput) String

func (s CreateNamedQueryOutput) String() string

String returns the string representation

type Datum

A piece of data (a field in the table). Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/Datum

type Datum struct {

    // The value of the datum.
    VarCharValue *string `type:"string"`
    // contains filtered or unexported fields
}

func (Datum) GoString

func (s Datum) GoString() string

GoString returns the string representation

func (*Datum) SetVarCharValue

func (s *Datum) SetVarCharValue(v string) *Datum

SetVarCharValue sets the VarCharValue field's value.

func (Datum) String

func (s Datum) String() string

String returns the string representation

type DeleteNamedQueryInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/DeleteNamedQueryInput

type DeleteNamedQueryInput struct {

    // The unique ID of the query to delete.
    //
    // NamedQueryId is a required field
    NamedQueryId *string `type:"string" required:"true" idempotencyToken:"true"`
    // contains filtered or unexported fields
}

func (DeleteNamedQueryInput) GoString

func (s DeleteNamedQueryInput) GoString() string

GoString returns the string representation

func (*DeleteNamedQueryInput) SetNamedQueryId

func (s *DeleteNamedQueryInput) SetNamedQueryId(v string) *DeleteNamedQueryInput

SetNamedQueryId sets the NamedQueryId field's value.

func (DeleteNamedQueryInput) String

func (s DeleteNamedQueryInput) String() string

String returns the string representation

func (*DeleteNamedQueryInput) Validate

func (s *DeleteNamedQueryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteNamedQueryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/DeleteNamedQueryOutput

type DeleteNamedQueryOutput struct {
    // contains filtered or unexported fields
}

func (DeleteNamedQueryOutput) GoString

func (s DeleteNamedQueryOutput) GoString() string

GoString returns the string representation

func (DeleteNamedQueryOutput) String

func (s DeleteNamedQueryOutput) String() string

String returns the string representation

type EncryptionConfiguration

If query results are encrypted in Amazon S3, indicates the Amazon S3 encryption option used. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/EncryptionConfiguration

type EncryptionConfiguration struct {

    // Indicates whether Amazon S3 server-side encryption with Amazon S3-managed
    // keys (SSE-S3), server-side encryption with KMS-managed keys (SSE-KMS), or
    // client-side encryption with KMS-managed keys (CSE-KMS) is used.
    //
    // EncryptionOption is a required field
    EncryptionOption *string `type:"string" required:"true" enum:"EncryptionOption"`

    // For SSE-KMS and CSE-KMS, this is the KMS key ARN or ID.
    KmsKey *string `type:"string"`
    // contains filtered or unexported fields
}

func (EncryptionConfiguration) GoString

func (s EncryptionConfiguration) GoString() string

GoString returns the string representation

func (*EncryptionConfiguration) SetEncryptionOption

func (s *EncryptionConfiguration) SetEncryptionOption(v string) *EncryptionConfiguration

SetEncryptionOption sets the EncryptionOption field's value.

func (*EncryptionConfiguration) SetKmsKey

func (s *EncryptionConfiguration) SetKmsKey(v string) *EncryptionConfiguration

SetKmsKey sets the KmsKey field's value.

func (EncryptionConfiguration) String

func (s EncryptionConfiguration) String() string

String returns the string representation

func (*EncryptionConfiguration) Validate

func (s *EncryptionConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetNamedQueryInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetNamedQueryInput

type GetNamedQueryInput struct {

    // The unique ID of the query. Use ListNamedQueries to get query IDs.
    //
    // NamedQueryId is a required field
    NamedQueryId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetNamedQueryInput) GoString

func (s GetNamedQueryInput) GoString() string

GoString returns the string representation

func (*GetNamedQueryInput) SetNamedQueryId

func (s *GetNamedQueryInput) SetNamedQueryId(v string) *GetNamedQueryInput

SetNamedQueryId sets the NamedQueryId field's value.

func (GetNamedQueryInput) String

func (s GetNamedQueryInput) String() string

String returns the string representation

func (*GetNamedQueryInput) Validate

func (s *GetNamedQueryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetNamedQueryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetNamedQueryOutput

type GetNamedQueryOutput struct {

    // Information about the query.
    NamedQuery *NamedQuery `type:"structure"`
    // contains filtered or unexported fields
}

func (GetNamedQueryOutput) GoString

func (s GetNamedQueryOutput) GoString() string

GoString returns the string representation

func (*GetNamedQueryOutput) SetNamedQuery

func (s *GetNamedQueryOutput) SetNamedQuery(v *NamedQuery) *GetNamedQueryOutput

SetNamedQuery sets the NamedQuery field's value.

func (GetNamedQueryOutput) String

func (s GetNamedQueryOutput) String() string

String returns the string representation

type GetQueryExecutionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetQueryExecutionInput

type GetQueryExecutionInput struct {

    // The unique ID of the query execution.
    //
    // QueryExecutionId is a required field
    QueryExecutionId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetQueryExecutionInput) GoString

func (s GetQueryExecutionInput) GoString() string

GoString returns the string representation

func (*GetQueryExecutionInput) SetQueryExecutionId

func (s *GetQueryExecutionInput) SetQueryExecutionId(v string) *GetQueryExecutionInput

SetQueryExecutionId sets the QueryExecutionId field's value.

func (GetQueryExecutionInput) String

func (s GetQueryExecutionInput) String() string

String returns the string representation

func (*GetQueryExecutionInput) Validate

func (s *GetQueryExecutionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetQueryExecutionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetQueryExecutionOutput

type GetQueryExecutionOutput struct {

    // Information about the query execution.
    QueryExecution *QueryExecution `type:"structure"`
    // contains filtered or unexported fields
}

func (GetQueryExecutionOutput) GoString

func (s GetQueryExecutionOutput) GoString() string

GoString returns the string representation

func (*GetQueryExecutionOutput) SetQueryExecution

func (s *GetQueryExecutionOutput) SetQueryExecution(v *QueryExecution) *GetQueryExecutionOutput

SetQueryExecution sets the QueryExecution field's value.

func (GetQueryExecutionOutput) String

func (s GetQueryExecutionOutput) String() string

String returns the string representation

type GetQueryResultsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetQueryResultsInput

type GetQueryResultsInput struct {

    // The maximum number of results (rows) to return in this request.
    MaxResults *int64 `type:"integer"`

    // The token that specifies where to start pagination if a previous request
    // was truncated.
    NextToken *string `type:"string"`

    // The unique ID of the query execution.
    //
    // QueryExecutionId is a required field
    QueryExecutionId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetQueryResultsInput) GoString

func (s GetQueryResultsInput) GoString() string

GoString returns the string representation

func (*GetQueryResultsInput) SetMaxResults

func (s *GetQueryResultsInput) SetMaxResults(v int64) *GetQueryResultsInput

SetMaxResults sets the MaxResults field's value.

func (*GetQueryResultsInput) SetNextToken

func (s *GetQueryResultsInput) SetNextToken(v string) *GetQueryResultsInput

SetNextToken sets the NextToken field's value.

func (*GetQueryResultsInput) SetQueryExecutionId

func (s *GetQueryResultsInput) SetQueryExecutionId(v string) *GetQueryResultsInput

SetQueryExecutionId sets the QueryExecutionId field's value.

func (GetQueryResultsInput) String

func (s GetQueryResultsInput) String() string

String returns the string representation

func (*GetQueryResultsInput) Validate

func (s *GetQueryResultsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetQueryResultsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/GetQueryResultsOutput

type GetQueryResultsOutput struct {

    // A token to be used by the next request if this request is truncated.
    NextToken *string `type:"string"`

    // The results of the query execution.
    ResultSet *ResultSet `type:"structure"`
    // contains filtered or unexported fields
}

func (GetQueryResultsOutput) GoString

func (s GetQueryResultsOutput) GoString() string

GoString returns the string representation

func (*GetQueryResultsOutput) SetNextToken

func (s *GetQueryResultsOutput) SetNextToken(v string) *GetQueryResultsOutput

SetNextToken sets the NextToken field's value.

func (*GetQueryResultsOutput) SetResultSet

func (s *GetQueryResultsOutput) SetResultSet(v *ResultSet) *GetQueryResultsOutput

SetResultSet sets the ResultSet field's value.

func (GetQueryResultsOutput) String

func (s GetQueryResultsOutput) String() string

String returns the string representation

type ListNamedQueriesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListNamedQueriesInput

type ListNamedQueriesInput struct {

    // The maximum number of queries to return in this request.
    MaxResults *int64 `type:"integer"`

    // The token that specifies where to start pagination if a previous request
    // was truncated.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListNamedQueriesInput) GoString

func (s ListNamedQueriesInput) GoString() string

GoString returns the string representation

func (*ListNamedQueriesInput) SetMaxResults

func (s *ListNamedQueriesInput) SetMaxResults(v int64) *ListNamedQueriesInput

SetMaxResults sets the MaxResults field's value.

func (*ListNamedQueriesInput) SetNextToken

func (s *ListNamedQueriesInput) SetNextToken(v string) *ListNamedQueriesInput

SetNextToken sets the NextToken field's value.

func (ListNamedQueriesInput) String

func (s ListNamedQueriesInput) String() string

String returns the string representation

type ListNamedQueriesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListNamedQueriesOutput

type ListNamedQueriesOutput struct {

    // The list of unique query IDs.
    NamedQueryIds []*string `min:"1" type:"list"`

    // A token to be used by the next request if this request is truncated.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListNamedQueriesOutput) GoString

func (s ListNamedQueriesOutput) GoString() string

GoString returns the string representation

func (*ListNamedQueriesOutput) SetNamedQueryIds

func (s *ListNamedQueriesOutput) SetNamedQueryIds(v []*string) *ListNamedQueriesOutput

SetNamedQueryIds sets the NamedQueryIds field's value.

func (*ListNamedQueriesOutput) SetNextToken

func (s *ListNamedQueriesOutput) SetNextToken(v string) *ListNamedQueriesOutput

SetNextToken sets the NextToken field's value.

func (ListNamedQueriesOutput) String

func (s ListNamedQueriesOutput) String() string

String returns the string representation

type ListQueryExecutionsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListQueryExecutionsInput

type ListQueryExecutionsInput struct {

    // The maximum number of query executions to return in this request.
    MaxResults *int64 `type:"integer"`

    // The token that specifies where to start pagination if a previous request
    // was truncated.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListQueryExecutionsInput) GoString

func (s ListQueryExecutionsInput) GoString() string

GoString returns the string representation

func (*ListQueryExecutionsInput) SetMaxResults

func (s *ListQueryExecutionsInput) SetMaxResults(v int64) *ListQueryExecutionsInput

SetMaxResults sets the MaxResults field's value.

func (*ListQueryExecutionsInput) SetNextToken

func (s *ListQueryExecutionsInput) SetNextToken(v string) *ListQueryExecutionsInput

SetNextToken sets the NextToken field's value.

func (ListQueryExecutionsInput) String

func (s ListQueryExecutionsInput) String() string

String returns the string representation

type ListQueryExecutionsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ListQueryExecutionsOutput

type ListQueryExecutionsOutput struct {

    // A token to be used by the next request if this request is truncated.
    NextToken *string `type:"string"`

    // The unique IDs of each query execution as an array of strings.
    QueryExecutionIds []*string `min:"1" type:"list"`
    // contains filtered or unexported fields
}

func (ListQueryExecutionsOutput) GoString

func (s ListQueryExecutionsOutput) GoString() string

GoString returns the string representation

func (*ListQueryExecutionsOutput) SetNextToken

func (s *ListQueryExecutionsOutput) SetNextToken(v string) *ListQueryExecutionsOutput

SetNextToken sets the NextToken field's value.

func (*ListQueryExecutionsOutput) SetQueryExecutionIds

func (s *ListQueryExecutionsOutput) SetQueryExecutionIds(v []*string) *ListQueryExecutionsOutput

SetQueryExecutionIds sets the QueryExecutionIds field's value.

func (ListQueryExecutionsOutput) String

func (s ListQueryExecutionsOutput) String() string

String returns the string representation

type NamedQuery

A query, where QueryString is the SQL query statements that comprise the query. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/NamedQuery

type NamedQuery struct {

    // The database to which the query belongs.
    //
    // Database is a required field
    Database *string `min:"1" type:"string" required:"true"`

    // A brief description of the query.
    Description *string `min:"1" type:"string"`

    // The plain-language name of the query.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The unique identifier of the query.
    NamedQueryId *string `type:"string"`

    // The SQL query statements that comprise the query.
    //
    // QueryString is a required field
    QueryString *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (NamedQuery) GoString

func (s NamedQuery) GoString() string

GoString returns the string representation

func (*NamedQuery) SetDatabase

func (s *NamedQuery) SetDatabase(v string) *NamedQuery

SetDatabase sets the Database field's value.

func (*NamedQuery) SetDescription

func (s *NamedQuery) SetDescription(v string) *NamedQuery

SetDescription sets the Description field's value.

func (*NamedQuery) SetName

func (s *NamedQuery) SetName(v string) *NamedQuery

SetName sets the Name field's value.

func (*NamedQuery) SetNamedQueryId

func (s *NamedQuery) SetNamedQueryId(v string) *NamedQuery

SetNamedQueryId sets the NamedQueryId field's value.

func (*NamedQuery) SetQueryString

func (s *NamedQuery) SetQueryString(v string) *NamedQuery

SetQueryString sets the QueryString field's value.

func (NamedQuery) String

func (s NamedQuery) String() string

String returns the string representation

type QueryExecution

Information about a single instance of a query execution. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/QueryExecution

type QueryExecution struct {

    // The SQL query statements which the query execution ran.
    Query *string `min:"1" type:"string"`

    // The database in which the query execution occurred.
    QueryExecutionContext *QueryExecutionContext `type:"structure"`

    // The unique identifier for each query execution.
    QueryExecutionId *string `type:"string"`

    // The location in Amazon S3 where query results were stored and the encryption
    // option, if any, used for query results.
    ResultConfiguration *ResultConfiguration `type:"structure"`

    // The amount of data scanned during the query execution and the amount of time
    // that it took to execute.
    Statistics *QueryExecutionStatistics `type:"structure"`

    // The completion date, current state, submission time, and state change reason
    // (if applicable) for the query execution.
    Status *QueryExecutionStatus `type:"structure"`
    // contains filtered or unexported fields
}

func (QueryExecution) GoString

func (s QueryExecution) GoString() string

GoString returns the string representation

func (*QueryExecution) SetQuery

func (s *QueryExecution) SetQuery(v string) *QueryExecution

SetQuery sets the Query field's value.

func (*QueryExecution) SetQueryExecutionContext

func (s *QueryExecution) SetQueryExecutionContext(v *QueryExecutionContext) *QueryExecution

SetQueryExecutionContext sets the QueryExecutionContext field's value.

func (*QueryExecution) SetQueryExecutionId

func (s *QueryExecution) SetQueryExecutionId(v string) *QueryExecution

SetQueryExecutionId sets the QueryExecutionId field's value.

func (*QueryExecution) SetResultConfiguration

func (s *QueryExecution) SetResultConfiguration(v *ResultConfiguration) *QueryExecution

SetResultConfiguration sets the ResultConfiguration field's value.

func (*QueryExecution) SetStatistics

func (s *QueryExecution) SetStatistics(v *QueryExecutionStatistics) *QueryExecution

SetStatistics sets the Statistics field's value.

func (*QueryExecution) SetStatus

func (s *QueryExecution) SetStatus(v *QueryExecutionStatus) *QueryExecution

SetStatus sets the Status field's value.

func (QueryExecution) String

func (s QueryExecution) String() string

String returns the string representation

type QueryExecutionContext

The database in which the query execution occurs. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/QueryExecutionContext

type QueryExecutionContext struct {

    // The name of the database.
    Database *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (QueryExecutionContext) GoString

func (s QueryExecutionContext) GoString() string

GoString returns the string representation

func (*QueryExecutionContext) SetDatabase

func (s *QueryExecutionContext) SetDatabase(v string) *QueryExecutionContext

SetDatabase sets the Database field's value.

func (QueryExecutionContext) String

func (s QueryExecutionContext) String() string

String returns the string representation

func (*QueryExecutionContext) Validate

func (s *QueryExecutionContext) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type QueryExecutionStatistics

The amount of data scanned during the query execution and the amount of time that it took to execute. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/QueryExecutionStatistics

type QueryExecutionStatistics struct {

    // The number of bytes in the data that was queried.
    DataScannedInBytes *int64 `type:"long"`

    // The number of milliseconds that the query took to execute.
    EngineExecutionTimeInMillis *int64 `type:"long"`
    // contains filtered or unexported fields
}

func (QueryExecutionStatistics) GoString

func (s QueryExecutionStatistics) GoString() string

GoString returns the string representation

func (*QueryExecutionStatistics) SetDataScannedInBytes

func (s *QueryExecutionStatistics) SetDataScannedInBytes(v int64) *QueryExecutionStatistics

SetDataScannedInBytes sets the DataScannedInBytes field's value.

func (*QueryExecutionStatistics) SetEngineExecutionTimeInMillis

func (s *QueryExecutionStatistics) SetEngineExecutionTimeInMillis(v int64) *QueryExecutionStatistics

SetEngineExecutionTimeInMillis sets the EngineExecutionTimeInMillis field's value.

func (QueryExecutionStatistics) String

func (s QueryExecutionStatistics) String() string

String returns the string representation

type QueryExecutionStatus

The completion date, current state, submission time, and state change reason (if applicable) for the query execution. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/QueryExecutionStatus

type QueryExecutionStatus struct {

    // The date and time that the query completed.
    CompletionDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The state of query execution. SUBMITTED indicates that the query is queued
    // for execution. RUNNING indicates that the query is scanning data and returning
    // results. SUCCEEDED indicates that the query completed without error. FAILED
    // indicates that the query experienced an error and did not complete processing.
    // CANCELLED indicates that user input interrupted query execution.
    State *string `type:"string" enum:"QueryExecutionState"`

    // Further detail about the status of the query.
    StateChangeReason *string `type:"string"`

    // The date and time that the query was submitted.
    SubmissionDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`
    // contains filtered or unexported fields
}

func (QueryExecutionStatus) GoString

func (s QueryExecutionStatus) GoString() string

GoString returns the string representation

func (*QueryExecutionStatus) SetCompletionDateTime

func (s *QueryExecutionStatus) SetCompletionDateTime(v time.Time) *QueryExecutionStatus

SetCompletionDateTime sets the CompletionDateTime field's value.

func (*QueryExecutionStatus) SetState

func (s *QueryExecutionStatus) SetState(v string) *QueryExecutionStatus

SetState sets the State field's value.

func (*QueryExecutionStatus) SetStateChangeReason

func (s *QueryExecutionStatus) SetStateChangeReason(v string) *QueryExecutionStatus

SetStateChangeReason sets the StateChangeReason field's value.

func (*QueryExecutionStatus) SetSubmissionDateTime

func (s *QueryExecutionStatus) SetSubmissionDateTime(v time.Time) *QueryExecutionStatus

SetSubmissionDateTime sets the SubmissionDateTime field's value.

func (QueryExecutionStatus) String

func (s QueryExecutionStatus) String() string

String returns the string representation

type ResultConfiguration

The location in Amazon S3 where query results are stored and the encryption option, if any, used for query results. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ResultConfiguration

type ResultConfiguration struct {

    // If query results are encrypted in S3, indicates the S3 encryption option
    // used (for example, SSE-KMS or CSE-KMS and key information.
    EncryptionConfiguration *EncryptionConfiguration `type:"structure"`

    // The location in S3 where query results are stored.
    //
    // OutputLocation is a required field
    OutputLocation *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ResultConfiguration) GoString

func (s ResultConfiguration) GoString() string

GoString returns the string representation

func (*ResultConfiguration) SetEncryptionConfiguration

func (s *ResultConfiguration) SetEncryptionConfiguration(v *EncryptionConfiguration) *ResultConfiguration

SetEncryptionConfiguration sets the EncryptionConfiguration field's value.

func (*ResultConfiguration) SetOutputLocation

func (s *ResultConfiguration) SetOutputLocation(v string) *ResultConfiguration

SetOutputLocation sets the OutputLocation field's value.

func (ResultConfiguration) String

func (s ResultConfiguration) String() string

String returns the string representation

func (*ResultConfiguration) Validate

func (s *ResultConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResultSet

The metadata and rows that comprise a query result set. The metadata describes the column structure and data types. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ResultSet

type ResultSet struct {

    // The metadata that describes the column structure and data types of a table
    // of query results.
    ResultSetMetadata *ResultSetMetadata `type:"structure"`

    // The rows in the table.
    Rows []*Row `type:"list"`
    // contains filtered or unexported fields
}

func (ResultSet) GoString

func (s ResultSet) GoString() string

GoString returns the string representation

func (*ResultSet) SetResultSetMetadata

func (s *ResultSet) SetResultSetMetadata(v *ResultSetMetadata) *ResultSet

SetResultSetMetadata sets the ResultSetMetadata field's value.

func (*ResultSet) SetRows

func (s *ResultSet) SetRows(v []*Row) *ResultSet

SetRows sets the Rows field's value.

func (ResultSet) String

func (s ResultSet) String() string

String returns the string representation

type ResultSetMetadata

The metadata that describes the column structure and data types of a table of query results. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/ResultSetMetadata

type ResultSetMetadata struct {

    // Information about the columns in a query execution result.
    ColumnInfo []*ColumnInfo `type:"list"`
    // contains filtered or unexported fields
}

func (ResultSetMetadata) GoString

func (s ResultSetMetadata) GoString() string

GoString returns the string representation

func (*ResultSetMetadata) SetColumnInfo

func (s *ResultSetMetadata) SetColumnInfo(v []*ColumnInfo) *ResultSetMetadata

SetColumnInfo sets the ColumnInfo field's value.

func (ResultSetMetadata) String

func (s ResultSetMetadata) String() string

String returns the string representation

type Row

The rows that comprise a query result table. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/Row

type Row struct {

    // The data that populates a row in a query result table.
    Data []*Datum `type:"list"`
    // contains filtered or unexported fields
}

func (Row) GoString

func (s Row) GoString() string

GoString returns the string representation

func (*Row) SetData

func (s *Row) SetData(v []*Datum) *Row

SetData sets the Data field's value.

func (Row) String

func (s Row) String() string

String returns the string representation

type StartQueryExecutionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StartQueryExecutionInput

type StartQueryExecutionInput struct {

    // A unique case-sensitive string used to ensure the request to create the query
    // is idempotent (executes only once). If another StartQueryExecution request
    // is received, the same response is returned and another query is not created.
    // If a parameter has changed, for example, the QueryString, an error is returned.
    //
    // This token is listed as not required because AWS SDKs (for example the AWS
    // SDK for Java) auto-generate the token for users. If you are not using the
    // AWS SDK or the AWS CLI, you must provide this token or the action will fail.
    ClientRequestToken *string `min:"32" type:"string" idempotencyToken:"true"`

    // The database within which the query executes.
    QueryExecutionContext *QueryExecutionContext `type:"structure"`

    // The SQL query statements to be executed.
    //
    // QueryString is a required field
    QueryString *string `min:"1" type:"string" required:"true"`

    // Specifies information about where and how to save the results of the query
    // execution.
    //
    // ResultConfiguration is a required field
    ResultConfiguration *ResultConfiguration `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (StartQueryExecutionInput) GoString

func (s StartQueryExecutionInput) GoString() string

GoString returns the string representation

func (*StartQueryExecutionInput) SetClientRequestToken

func (s *StartQueryExecutionInput) SetClientRequestToken(v string) *StartQueryExecutionInput

SetClientRequestToken sets the ClientRequestToken field's value.

func (*StartQueryExecutionInput) SetQueryExecutionContext

func (s *StartQueryExecutionInput) SetQueryExecutionContext(v *QueryExecutionContext) *StartQueryExecutionInput

SetQueryExecutionContext sets the QueryExecutionContext field's value.

func (*StartQueryExecutionInput) SetQueryString

func (s *StartQueryExecutionInput) SetQueryString(v string) *StartQueryExecutionInput

SetQueryString sets the QueryString field's value.

func (*StartQueryExecutionInput) SetResultConfiguration

func (s *StartQueryExecutionInput) SetResultConfiguration(v *ResultConfiguration) *StartQueryExecutionInput

SetResultConfiguration sets the ResultConfiguration field's value.

func (StartQueryExecutionInput) String

func (s StartQueryExecutionInput) String() string

String returns the string representation

func (*StartQueryExecutionInput) Validate

func (s *StartQueryExecutionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartQueryExecutionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StartQueryExecutionOutput

type StartQueryExecutionOutput struct {

    // The unique ID of the query that ran as a result of this request.
    QueryExecutionId *string `type:"string"`
    // contains filtered or unexported fields
}

func (StartQueryExecutionOutput) GoString

func (s StartQueryExecutionOutput) GoString() string

GoString returns the string representation

func (*StartQueryExecutionOutput) SetQueryExecutionId

func (s *StartQueryExecutionOutput) SetQueryExecutionId(v string) *StartQueryExecutionOutput

SetQueryExecutionId sets the QueryExecutionId field's value.

func (StartQueryExecutionOutput) String

func (s StartQueryExecutionOutput) String() string

String returns the string representation

type StopQueryExecutionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StopQueryExecutionInput

type StopQueryExecutionInput struct {

    // The unique ID of the query execution to stop.
    //
    // QueryExecutionId is a required field
    QueryExecutionId *string `type:"string" required:"true" idempotencyToken:"true"`
    // contains filtered or unexported fields
}

func (StopQueryExecutionInput) GoString

func (s StopQueryExecutionInput) GoString() string

GoString returns the string representation

func (*StopQueryExecutionInput) SetQueryExecutionId

func (s *StopQueryExecutionInput) SetQueryExecutionId(v string) *StopQueryExecutionInput

SetQueryExecutionId sets the QueryExecutionId field's value.

func (StopQueryExecutionInput) String

func (s StopQueryExecutionInput) String() string

String returns the string representation

func (*StopQueryExecutionInput) Validate

func (s *StopQueryExecutionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopQueryExecutionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StopQueryExecutionOutput

type StopQueryExecutionOutput struct {
    // contains filtered or unexported fields
}

func (StopQueryExecutionOutput) GoString

func (s StopQueryExecutionOutput) GoString() string

GoString returns the string representation

func (StopQueryExecutionOutput) String

func (s StopQueryExecutionOutput) String() string

String returns the string representation

type UnprocessedNamedQueryId

Information about a named query ID that could not be processed. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/UnprocessedNamedQueryId

type UnprocessedNamedQueryId struct {

    // The error code returned when the processing request for the named query failed,
    // if applicable.
    ErrorCode *string `min:"1" type:"string"`

    // The error message returned when the processing request for the named query
    // failed, if applicable.
    ErrorMessage *string `type:"string"`

    // The unique identifier of the named query.
    NamedQueryId *string `type:"string"`
    // contains filtered or unexported fields
}

func (UnprocessedNamedQueryId) GoString

func (s UnprocessedNamedQueryId) GoString() string

GoString returns the string representation

func (*UnprocessedNamedQueryId) SetErrorCode

func (s *UnprocessedNamedQueryId) SetErrorCode(v string) *UnprocessedNamedQueryId

SetErrorCode sets the ErrorCode field's value.

func (*UnprocessedNamedQueryId) SetErrorMessage

func (s *UnprocessedNamedQueryId) SetErrorMessage(v string) *UnprocessedNamedQueryId

SetErrorMessage sets the ErrorMessage field's value.

func (*UnprocessedNamedQueryId) SetNamedQueryId

func (s *UnprocessedNamedQueryId) SetNamedQueryId(v string) *UnprocessedNamedQueryId

SetNamedQueryId sets the NamedQueryId field's value.

func (UnprocessedNamedQueryId) String

func (s UnprocessedNamedQueryId) String() string

String returns the string representation

type UnprocessedQueryExecutionId

Describes a query execution that failed to process. Please also see https://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/UnprocessedQueryExecutionId

type UnprocessedQueryExecutionId struct {

    // The error code returned when the query execution failed to process, if applicable.
    ErrorCode *string `min:"1" type:"string"`

    // The error message returned when the query execution failed to process, if
    // applicable.
    ErrorMessage *string `type:"string"`

    // The unique identifier of the query execution.
    QueryExecutionId *string `type:"string"`
    // contains filtered or unexported fields
}

func (UnprocessedQueryExecutionId) GoString

func (s UnprocessedQueryExecutionId) GoString() string

GoString returns the string representation

func (*UnprocessedQueryExecutionId) SetErrorCode

func (s *UnprocessedQueryExecutionId) SetErrorCode(v string) *UnprocessedQueryExecutionId

SetErrorCode sets the ErrorCode field's value.

func (*UnprocessedQueryExecutionId) SetErrorMessage

func (s *UnprocessedQueryExecutionId) SetErrorMessage(v string) *UnprocessedQueryExecutionId

SetErrorMessage sets the ErrorMessage field's value.

func (*UnprocessedQueryExecutionId) SetQueryExecutionId

func (s *UnprocessedQueryExecutionId) SetQueryExecutionId(v string) *UnprocessedQueryExecutionId

SetQueryExecutionId sets the QueryExecutionId field's value.

func (UnprocessedQueryExecutionId) String

func (s UnprocessedQueryExecutionId) String() string

String returns the string representation

Subdirectories

Name Synopsis
..
athenaiface Package athenaiface provides an interface to enable mocking the Amazon Athena service client for testing your code.