types

package
v1.22.5 Latest Latest
Warning

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

Go to latest
Published: Mar 29, 2024 License: Apache-2.0 Imports: 4 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccessDeniedException

type AccessDeniedException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You are not authorized to perform this action.

func (*AccessDeniedException) Error

func (e *AccessDeniedException) Error() string

func (*AccessDeniedException) ErrorCode

func (e *AccessDeniedException) ErrorCode() string

func (*AccessDeniedException) ErrorFault

func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault

func (*AccessDeniedException) ErrorMessage

func (e *AccessDeniedException) ErrorMessage() string

type ColumnInfo

type ColumnInfo struct {

	// The data type of the result set column. The data type can be a scalar or
	// complex. Scalar data types are integers, strings, doubles, Booleans, and others.
	// Complex data types are types such as arrays, rows, and others.
	//
	// This member is required.
	Type *Type

	// The name of the result set column. The name of the result set is available for
	// columns of all data types except for arrays.
	Name *string
	// contains filtered or unexported fields
}

Contains the metadata for query results such as the column names, data types, and other attributes.

type ConflictException

type ConflictException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Unable to poll results for a cancelled query.

func (*ConflictException) Error

func (e *ConflictException) Error() string

func (*ConflictException) ErrorCode

func (e *ConflictException) ErrorCode() string

func (*ConflictException) ErrorFault

func (e *ConflictException) ErrorFault() smithy.ErrorFault

func (*ConflictException) ErrorMessage

func (e *ConflictException) ErrorMessage() string

type Datum

type Datum struct {

	// Indicates if the data point is an array.
	ArrayValue []Datum

	// Indicates if the data point is null.
	NullValue *bool

	// Indicates if the data point is a row.
	RowValue *Row

	// Indicates if the data point is a scalar value such as integer, string, double,
	// or Boolean.
	ScalarValue *string

	// Indicates if the data point is a timeseries data type.
	TimeSeriesValue []TimeSeriesDataPoint
	// contains filtered or unexported fields
}

Datum represents a single data point in a query result.

type DimensionMapping added in v1.8.0

type DimensionMapping struct {

	// Type for the dimension.
	//
	// This member is required.
	DimensionValueType DimensionValueType

	// Column name from query result.
	//
	// This member is required.
	Name *string
	// contains filtered or unexported fields
}

This type is used to map column(s) from the query result to a dimension in the destination table.

type DimensionValueType added in v1.8.0

type DimensionValueType string
const (
	DimensionValueTypeVarchar DimensionValueType = "VARCHAR"
)

Enum values for DimensionValueType

func (DimensionValueType) Values added in v1.8.0

Values returns all known values for DimensionValueType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type Endpoint

type Endpoint struct {

	// An endpoint address.
	//
	// This member is required.
	Address *string

	// The TTL for the endpoint, in minutes.
	//
	// This member is required.
	CachePeriodInMinutes int64
	// contains filtered or unexported fields
}

Represents an available endpoint against which to make API calls against, as well as the TTL for that endpoint.

type ErrorReportConfiguration added in v1.8.0

type ErrorReportConfiguration struct {

	// The S3 configuration for the error reports.
	//
	// This member is required.
	S3Configuration *S3Configuration
	// contains filtered or unexported fields
}

Configuration required for error reporting.

type ErrorReportLocation added in v1.8.0

type ErrorReportLocation struct {

	// The S3 location where error reports are written.
	S3ReportLocation *S3ReportLocation
	// contains filtered or unexported fields
}

This contains the location of the error report for a single scheduled query call.

type ExecutionStats added in v1.8.0

type ExecutionStats struct {

	// Bytes metered for a single scheduled query run.
	BytesMetered int64

	// Data writes metered for records ingested in a single scheduled query run.
	DataWrites int64

	// Total time, measured in milliseconds, that was needed for the scheduled query
	// run to complete.
	ExecutionTimeInMillis int64

	// Number of rows present in the output from running a query before ingestion to
	// destination data source.
	QueryResultRows int64

	// The number of records ingested for a single scheduled query run.
	RecordsIngested int64
	// contains filtered or unexported fields
}

Statistics for a single scheduled query run.

type InternalServerException

type InternalServerException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Timestream was unable to fully process this request because of an internal server error.

func (*InternalServerException) Error

func (e *InternalServerException) Error() string

func (*InternalServerException) ErrorCode

func (e *InternalServerException) ErrorCode() string

func (*InternalServerException) ErrorFault

func (e *InternalServerException) ErrorFault() smithy.ErrorFault

func (*InternalServerException) ErrorMessage

func (e *InternalServerException) ErrorMessage() string

type InvalidEndpointException

type InvalidEndpointException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The requested endpoint was not valid.

func (*InvalidEndpointException) Error

func (e *InvalidEndpointException) Error() string

func (*InvalidEndpointException) ErrorCode

func (e *InvalidEndpointException) ErrorCode() string

func (*InvalidEndpointException) ErrorFault

func (e *InvalidEndpointException) ErrorFault() smithy.ErrorFault

func (*InvalidEndpointException) ErrorMessage

func (e *InvalidEndpointException) ErrorMessage() string

type MeasureValueType added in v1.8.0

type MeasureValueType string
const (
	MeasureValueTypeBigint  MeasureValueType = "BIGINT"
	MeasureValueTypeBoolean MeasureValueType = "BOOLEAN"
	MeasureValueTypeDouble  MeasureValueType = "DOUBLE"
	MeasureValueTypeVarchar MeasureValueType = "VARCHAR"
	MeasureValueTypeMulti   MeasureValueType = "MULTI"
)

Enum values for MeasureValueType

func (MeasureValueType) Values added in v1.8.0

Values returns all known values for MeasureValueType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type MixedMeasureMapping added in v1.8.0

type MixedMeasureMapping struct {

	// Type of the value that is to be read from sourceColumn. If the mapping is for
	// MULTI, use MeasureValueType.MULTI.
	//
	// This member is required.
	MeasureValueType MeasureValueType

	// Refers to the value of measure_name in a result row. This field is required if
	// MeasureNameColumn is provided.
	MeasureName *string

	// Required when measureValueType is MULTI. Attribute mappings for MULTI value
	// measures.
	MultiMeasureAttributeMappings []MultiMeasureAttributeMapping

	// This field refers to the source column from which measure-value is to be read
	// for result materialization.
	SourceColumn *string

	// Target measure name to be used. If not provided, the target measure name by
	// default would be measure-name if provided, or sourceColumn otherwise.
	TargetMeasureName *string
	// contains filtered or unexported fields
}

MixedMeasureMappings are mappings that can be used to ingest data into a mixture of narrow and multi measures in the derived table.

type MultiMeasureAttributeMapping added in v1.8.0

type MultiMeasureAttributeMapping struct {

	// Type of the attribute to be read from the source column.
	//
	// This member is required.
	MeasureValueType ScalarMeasureValueType

	// Source column from where the attribute value is to be read.
	//
	// This member is required.
	SourceColumn *string

	// Custom name to be used for attribute name in derived table. If not provided,
	// source column name would be used.
	TargetMultiMeasureAttributeName *string
	// contains filtered or unexported fields
}

Attribute mapping for MULTI value measures.

type MultiMeasureMappings added in v1.8.0

type MultiMeasureMappings struct {

	// Required. Attribute mappings to be used for mapping query results to ingest
	// data for multi-measure attributes.
	//
	// This member is required.
	MultiMeasureAttributeMappings []MultiMeasureAttributeMapping

	// The name of the target multi-measure name in the derived table. This input is
	// required when measureNameColumn is not provided. If MeasureNameColumn is
	// provided, then value from that column will be used as multi-measure name.
	TargetMultiMeasureName *string
	// contains filtered or unexported fields
}

Only one of MixedMeasureMappings or MultiMeasureMappings is to be provided. MultiMeasureMappings can be used to ingest data as multi measures in the derived table.

type NotificationConfiguration added in v1.8.0

type NotificationConfiguration struct {

	// Details on SNS configuration.
	//
	// This member is required.
	SnsConfiguration *SnsConfiguration
	// contains filtered or unexported fields
}

Notification configuration for a scheduled query. A notification is sent by Timestream when a scheduled query is created, its state is updated or when it is deleted.

type ParameterMapping added in v1.8.0

type ParameterMapping struct {

	// Parameter name.
	//
	// This member is required.
	Name *string

	// Contains the data type of a column in a query result set. The data type can be
	// scalar or complex. The supported scalar data types are integers, Boolean,
	// string, double, timestamp, date, time, and intervals. The supported complex data
	// types are arrays, rows, and timeseries.
	//
	// This member is required.
	Type *Type
	// contains filtered or unexported fields
}

Mapping for named parameters.

type QueryExecutionException

type QueryExecutionException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Timestream was unable to run the query successfully.

func (*QueryExecutionException) Error

func (e *QueryExecutionException) Error() string

func (*QueryExecutionException) ErrorCode

func (e *QueryExecutionException) ErrorCode() string

func (*QueryExecutionException) ErrorFault

func (e *QueryExecutionException) ErrorFault() smithy.ErrorFault

func (*QueryExecutionException) ErrorMessage

func (e *QueryExecutionException) ErrorMessage() string

type QueryStatus added in v0.3.0

type QueryStatus struct {

	// The amount of data scanned by the query in bytes that you will be charged for.
	// This is a cumulative sum and represents the total amount of data that you will
	// be charged for since the query was started. The charge is applied only once and
	// is either applied when the query completes running or when the query is
	// cancelled.
	CumulativeBytesMetered int64

	// The amount of data scanned by the query in bytes. This is a cumulative sum and
	// represents the total amount of bytes scanned since the query was started.
	CumulativeBytesScanned int64

	// The progress of the query, expressed as a percentage.
	ProgressPercentage float64
	// contains filtered or unexported fields
}

Information about the status of the query, including progress and bytes scanned.

type ResourceNotFoundException added in v1.8.0

type ResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string

	ScheduledQueryArn *string
	// contains filtered or unexported fields
}

The requested resource could not be found.

func (*ResourceNotFoundException) Error added in v1.8.0

func (e *ResourceNotFoundException) Error() string

func (*ResourceNotFoundException) ErrorCode added in v1.8.0

func (e *ResourceNotFoundException) ErrorCode() string

func (*ResourceNotFoundException) ErrorFault added in v1.8.0

func (*ResourceNotFoundException) ErrorMessage added in v1.8.0

func (e *ResourceNotFoundException) ErrorMessage() string

type Row

type Row struct {

	// List of data points in a single row of the result set.
	//
	// This member is required.
	Data []Datum
	// contains filtered or unexported fields
}

Represents a single row in the query results.

type S3Configuration added in v1.8.0

type S3Configuration struct {

	// Name of the S3 bucket under which error reports will be created.
	//
	// This member is required.
	BucketName *string

	// Encryption at rest options for the error reports. If no encryption option is
	// specified, Timestream will choose SSE_S3 as default.
	EncryptionOption S3EncryptionOption

	// Prefix for the error report key. Timestream by default adds the following
	// prefix to the error report path.
	ObjectKeyPrefix *string
	// contains filtered or unexported fields
}

Details on S3 location for error reports that result from running a query.

type S3EncryptionOption added in v1.8.0

type S3EncryptionOption string
const (
	S3EncryptionOptionSseS3  S3EncryptionOption = "SSE_S3"
	S3EncryptionOptionSseKms S3EncryptionOption = "SSE_KMS"
)

Enum values for S3EncryptionOption

func (S3EncryptionOption) Values added in v1.8.0

Values returns all known values for S3EncryptionOption. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type S3ReportLocation added in v1.8.0

type S3ReportLocation struct {

	// S3 bucket name.
	BucketName *string

	// S3 key.
	ObjectKey *string
	// contains filtered or unexported fields
}

S3 report location for the scheduled query run.

type ScalarMeasureValueType added in v1.8.0

type ScalarMeasureValueType string
const (
	ScalarMeasureValueTypeBigint    ScalarMeasureValueType = "BIGINT"
	ScalarMeasureValueTypeBoolean   ScalarMeasureValueType = "BOOLEAN"
	ScalarMeasureValueTypeDouble    ScalarMeasureValueType = "DOUBLE"
	ScalarMeasureValueTypeVarchar   ScalarMeasureValueType = "VARCHAR"
	ScalarMeasureValueTypeTimestamp ScalarMeasureValueType = "TIMESTAMP"
)

Enum values for ScalarMeasureValueType

func (ScalarMeasureValueType) Values added in v1.8.0

Values returns all known values for ScalarMeasureValueType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ScalarType

type ScalarType string
const (
	ScalarTypeVarchar             ScalarType = "VARCHAR"
	ScalarTypeBoolean             ScalarType = "BOOLEAN"
	ScalarTypeBigint              ScalarType = "BIGINT"
	ScalarTypeDouble              ScalarType = "DOUBLE"
	ScalarTypeTimestamp           ScalarType = "TIMESTAMP"
	ScalarTypeDate                ScalarType = "DATE"
	ScalarTypeTime                ScalarType = "TIME"
	ScalarTypeIntervalDayToSecond ScalarType = "INTERVAL_DAY_TO_SECOND"
	ScalarTypeIntervalYearToMonth ScalarType = "INTERVAL_YEAR_TO_MONTH"
	ScalarTypeUnknown             ScalarType = "UNKNOWN"
	ScalarTypeInteger             ScalarType = "INTEGER"
)

Enum values for ScalarType

func (ScalarType) Values

func (ScalarType) Values() []ScalarType

Values returns all known values for ScalarType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ScheduleConfiguration added in v1.8.0

type ScheduleConfiguration struct {

	// An expression that denotes when to trigger the scheduled query run. This can be
	// a cron expression or a rate expression.
	//
	// This member is required.
	ScheduleExpression *string
	// contains filtered or unexported fields
}

Configuration of the schedule of the query.

type ScheduledQuery added in v1.8.0

type ScheduledQuery struct {

	// The Amazon Resource Name.
	//
	// This member is required.
	Arn *string

	// The name of the scheduled query.
	//
	// This member is required.
	Name *string

	// State of scheduled query.
	//
	// This member is required.
	State ScheduledQueryState

	// The creation time of the scheduled query.
	CreationTime *time.Time

	// Configuration for scheduled query error reporting.
	ErrorReportConfiguration *ErrorReportConfiguration

	// Status of the last scheduled query run.
	LastRunStatus ScheduledQueryRunStatus

	// The next time the scheduled query is to be run.
	NextInvocationTime *time.Time

	// The last time the scheduled query was run.
	PreviousInvocationTime *time.Time

	// Target data source where final scheduled query result will be written.
	TargetDestination *TargetDestination
	// contains filtered or unexported fields
}

Scheduled Query

type ScheduledQueryDescription added in v1.8.0

type ScheduledQueryDescription struct {

	// Scheduled query ARN.
	//
	// This member is required.
	Arn *string

	// Name of the scheduled query.
	//
	// This member is required.
	Name *string

	// Notification configuration.
	//
	// This member is required.
	NotificationConfiguration *NotificationConfiguration

	// The query to be run.
	//
	// This member is required.
	QueryString *string

	// Schedule configuration.
	//
	// This member is required.
	ScheduleConfiguration *ScheduleConfiguration

	// State of the scheduled query.
	//
	// This member is required.
	State ScheduledQueryState

	// Creation time of the scheduled query.
	CreationTime *time.Time

	// Error-reporting configuration for the scheduled query.
	ErrorReportConfiguration *ErrorReportConfiguration

	// A customer provided KMS key used to encrypt the scheduled query resource.
	KmsKeyId *string

	// Runtime summary for the last scheduled query run.
	LastRunSummary *ScheduledQueryRunSummary

	// The next time the scheduled query is scheduled to run.
	NextInvocationTime *time.Time

	// Last time the query was run.
	PreviousInvocationTime *time.Time

	// Runtime summary for the last five failed scheduled query runs.
	RecentlyFailedRuns []ScheduledQueryRunSummary

	// IAM role that Timestream uses to run the schedule query.
	ScheduledQueryExecutionRoleArn *string

	// Scheduled query target store configuration.
	TargetConfiguration *TargetConfiguration
	// contains filtered or unexported fields
}

Structure that describes scheduled query.

type ScheduledQueryRunStatus added in v1.8.0

type ScheduledQueryRunStatus string
const (
	ScheduledQueryRunStatusAutoTriggerSuccess   ScheduledQueryRunStatus = "AUTO_TRIGGER_SUCCESS"
	ScheduledQueryRunStatusAutoTriggerFailure   ScheduledQueryRunStatus = "AUTO_TRIGGER_FAILURE"
	ScheduledQueryRunStatusManualTriggerSuccess ScheduledQueryRunStatus = "MANUAL_TRIGGER_SUCCESS"
	ScheduledQueryRunStatusManualTriggerFailure ScheduledQueryRunStatus = "MANUAL_TRIGGER_FAILURE"
)

Enum values for ScheduledQueryRunStatus

func (ScheduledQueryRunStatus) Values added in v1.8.0

Values returns all known values for ScheduledQueryRunStatus. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ScheduledQueryRunSummary added in v1.8.0

type ScheduledQueryRunSummary struct {

	// S3 location for error report.
	ErrorReportLocation *ErrorReportLocation

	// Runtime statistics for a scheduled run.
	ExecutionStats *ExecutionStats

	// Error message for the scheduled query in case of failure. You might have to
	// look at the error report to get more detailed error reasons.
	FailureReason *string

	// InvocationTime for this run. This is the time at which the query is scheduled
	// to run. Parameter @scheduled_runtime can be used in the query to get the value.
	InvocationTime *time.Time

	// The status of a scheduled query run.
	RunStatus ScheduledQueryRunStatus

	// The actual time when the query was run.
	TriggerTime *time.Time
	// contains filtered or unexported fields
}

Run summary for the scheduled query

type ScheduledQueryState added in v1.8.0

type ScheduledQueryState string
const (
	ScheduledQueryStateEnabled  ScheduledQueryState = "ENABLED"
	ScheduledQueryStateDisabled ScheduledQueryState = "DISABLED"
)

Enum values for ScheduledQueryState

func (ScheduledQueryState) Values added in v1.8.0

Values returns all known values for ScheduledQueryState. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type SelectColumn added in v1.8.0

type SelectColumn struct {

	// True, if the column name was aliased by the query. False otherwise.
	Aliased *bool

	// Database that has this column.
	DatabaseName *string

	// Name of the column.
	Name *string

	// Table within the database that has this column.
	TableName *string

	// Contains the data type of a column in a query result set. The data type can be
	// scalar or complex. The supported scalar data types are integers, Boolean,
	// string, double, timestamp, date, time, and intervals. The supported complex data
	// types are arrays, rows, and timeseries.
	Type *Type
	// contains filtered or unexported fields
}

Details of the column that is returned by the query.

type ServiceQuotaExceededException added in v1.8.0

type ServiceQuotaExceededException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You have exceeded the service quota.

func (*ServiceQuotaExceededException) Error added in v1.8.0

func (*ServiceQuotaExceededException) ErrorCode added in v1.8.0

func (e *ServiceQuotaExceededException) ErrorCode() string

func (*ServiceQuotaExceededException) ErrorFault added in v1.8.0

func (*ServiceQuotaExceededException) ErrorMessage added in v1.8.0

func (e *ServiceQuotaExceededException) ErrorMessage() string

type SnsConfiguration added in v1.8.0

type SnsConfiguration struct {

	// SNS topic ARN that the scheduled query status notifications will be sent to.
	//
	// This member is required.
	TopicArn *string
	// contains filtered or unexported fields
}

Details on SNS that are required to send the notification.

type Tag added in v1.8.0

type Tag struct {

	// The key of the tag. Tag keys are case sensitive.
	//
	// This member is required.
	Key *string

	// The value of the tag. Tag values are case sensitive and can be null.
	//
	// This member is required.
	Value *string
	// contains filtered or unexported fields
}

A tag is a label that you assign to a Timestream database and/or table. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize databases and/or tables, for example, by purpose, owner, or environment.

type TargetConfiguration added in v1.8.0

type TargetConfiguration struct {

	// Configuration needed to write data into the Timestream database and table.
	//
	// This member is required.
	TimestreamConfiguration *TimestreamConfiguration
	// contains filtered or unexported fields
}

Configuration used for writing the output of a query.

type TargetDestination added in v1.8.0

type TargetDestination struct {

	// Query result destination details for Timestream data source.
	TimestreamDestination *TimestreamDestination
	// contains filtered or unexported fields
}

Destination details to write data for a target data source. Current supported data source is Timestream.

type ThrottlingException

type ThrottlingException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request was denied due to request throttling.

func (*ThrottlingException) Error

func (e *ThrottlingException) Error() string

func (*ThrottlingException) ErrorCode

func (e *ThrottlingException) ErrorCode() string

func (*ThrottlingException) ErrorFault

func (e *ThrottlingException) ErrorFault() smithy.ErrorFault

func (*ThrottlingException) ErrorMessage

func (e *ThrottlingException) ErrorMessage() string

type TimeSeriesDataPoint

type TimeSeriesDataPoint struct {

	// The timestamp when the measure value was collected.
	//
	// This member is required.
	Time *string

	// The measure value for the data point.
	//
	// This member is required.
	Value *Datum
	// contains filtered or unexported fields
}

The timeseries data type represents the values of a measure over time. A time series is an array of rows of timestamps and measure values, with rows sorted in ascending order of time. A TimeSeriesDataPoint is a single data point in the time series. It represents a tuple of (time, measure value) in a time series.

type TimestreamConfiguration added in v1.8.0

type TimestreamConfiguration struct {

	// Name of Timestream database to which the query result will be written.
	//
	// This member is required.
	DatabaseName *string

	// This is to allow mapping column(s) from the query result to the dimension in
	// the destination table.
	//
	// This member is required.
	DimensionMappings []DimensionMapping

	// Name of Timestream table that the query result will be written to. The table
	// should be within the same database that is provided in Timestream configuration.
	//
	// This member is required.
	TableName *string

	// Column from query result that should be used as the time column in destination
	// table. Column type for this should be TIMESTAMP.
	//
	// This member is required.
	TimeColumn *string

	// Name of the measure column.
	MeasureNameColumn *string

	// Specifies how to map measures to multi-measure records.
	MixedMeasureMappings []MixedMeasureMapping

	// Multi-measure mappings.
	MultiMeasureMappings *MultiMeasureMappings
	// contains filtered or unexported fields
}

Configuration to write data into Timestream database and table. This configuration allows the user to map the query result select columns into the destination table columns.

type TimestreamDestination added in v1.8.0

type TimestreamDestination struct {

	// Timestream database name.
	DatabaseName *string

	// Timestream table name.
	TableName *string
	// contains filtered or unexported fields
}

Destination for scheduled query.

type Type

type Type struct {

	// Indicates if the column is an array.
	ArrayColumnInfo *ColumnInfo

	// Indicates if the column is a row.
	RowColumnInfo []ColumnInfo

	// Indicates if the column is of type string, integer, Boolean, double, timestamp,
	// date, time. For more information, see Supported data types (https://docs.aws.amazon.com/timestream/latest/developerguide/supported-data-types.html)
	// .
	ScalarType ScalarType

	// Indicates if the column is a timeseries data type.
	TimeSeriesMeasureValueColumnInfo *ColumnInfo
	// contains filtered or unexported fields
}

Contains the data type of a column in a query result set. The data type can be scalar or complex. The supported scalar data types are integers, Boolean, string, double, timestamp, date, time, and intervals. The supported complex data types are arrays, rows, and timeseries.

type ValidationException

type ValidationException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Invalid or malformed request.

func (*ValidationException) Error

func (e *ValidationException) Error() string

func (*ValidationException) ErrorCode

func (e *ValidationException) ErrorCode() string

func (*ValidationException) ErrorFault

func (e *ValidationException) ErrorFault() smithy.ErrorFault

func (*ValidationException) ErrorMessage

func (e *ValidationException) ErrorMessage() string

Jump to

Keyboard shortcuts

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