Documentation ¶
Index ¶
- type AccessDeniedException
- type ConflictException
- type DbInstanceSummary
- type DbInstanceType
- type DbParameterGroupSummary
- type DbStorageType
- type DeploymentType
- type InfluxDBv2Parameters
- type InternalServerException
- type LogDeliveryConfiguration
- type LogLevel
- type Parameters
- type ParametersMemberInfluxDBv2
- type ResourceNotFoundException
- type S3Configuration
- type ServiceQuotaExceededException
- type Status
- type ThrottlingException
- type TracingType
- type UnknownUnionMember
- type ValidationException
- type ValidationExceptionReason
Examples ¶
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 do not have sufficient access 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 ConflictException ¶
type ConflictException struct { Message *string ErrorCodeOverride *string ResourceId *string ResourceType *string // contains filtered or unexported fields }
The request conflicts with an existing resource in Timestream for InfluxDB.
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 DbInstanceSummary ¶
type DbInstanceSummary struct { // The Amazon Resource Name (ARN) of the DB instance. // // This member is required. Arn *string // The service-generated unique identifier of the DB instance. // // This member is required. Id *string // This customer-supplied name uniquely identifies the DB instance when // interacting with the Amazon Timestream for InfluxDB API and AWS CLI commands. // // This member is required. Name *string // The amount of storage to allocate for your DbStorageType in GiB (gibibytes). AllocatedStorage *int32 // The Timestream for InfluxDB instance type to run InfluxDB on. DbInstanceType DbInstanceType // The storage type for your DB instance. DbStorageType DbStorageType // Single-Instance or with a MultiAZ Standby for High availability. DeploymentType DeploymentType // The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086. Endpoint *string // The status of the DB instance. Status Status // contains filtered or unexported fields }
Contains a summary of a DB instance.
type DbInstanceType ¶
type DbInstanceType string
const ( DbInstanceTypeDbInfluxMedium DbInstanceType = "db.influx.medium" DbInstanceTypeDbInfluxLarge DbInstanceType = "db.influx.large" DbInstanceTypeDbInfluxXlarge DbInstanceType = "db.influx.xlarge" DbInstanceTypeDbInflux2xlarge DbInstanceType = "db.influx.2xlarge" DbInstanceTypeDbInflux4xlarge DbInstanceType = "db.influx.4xlarge" DbInstanceTypeDbInflux8xlarge DbInstanceType = "db.influx.8xlarge" DbInstanceTypeDbInflux12xlarge DbInstanceType = "db.influx.12xlarge" DbInstanceTypeDbInflux16xlarge DbInstanceType = "db.influx.16xlarge" )
Enum values for DbInstanceType
func (DbInstanceType) Values ¶
func (DbInstanceType) Values() []DbInstanceType
Values returns all known values for DbInstanceType. 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 DbParameterGroupSummary ¶
type DbParameterGroupSummary struct { // The Amazon Resource Name (ARN) of the DB parameter group. // // This member is required. Arn *string // A service-generated unique identifier. // // This member is required. Id *string // This customer-supplied name uniquely identifies the parameter group. // // This member is required. Name *string // A description of the DB parameter group. Description *string // contains filtered or unexported fields }
Contains a summary of a DB parameter group.
type DbStorageType ¶
type DbStorageType string
const ( DbStorageTypeInfluxIoIncludedT1 DbStorageType = "InfluxIOIncludedT1" DbStorageTypeInfluxIoIncludedT2 DbStorageType = "InfluxIOIncludedT2" DbStorageTypeInfluxIoIncludedT3 DbStorageType = "InfluxIOIncludedT3" )
Enum values for DbStorageType
func (DbStorageType) Values ¶
func (DbStorageType) Values() []DbStorageType
Values returns all known values for DbStorageType. 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 DeploymentType ¶
type DeploymentType string
const ( DeploymentTypeSingleAz DeploymentType = "SINGLE_AZ" DeploymentTypeWithMultiazStandby DeploymentType = "WITH_MULTIAZ_STANDBY" )
Enum values for DeploymentType
func (DeploymentType) Values ¶
func (DeploymentType) Values() []DeploymentType
Values returns all known values for DeploymentType. 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 InfluxDBv2Parameters ¶
type InfluxDBv2Parameters struct { // Include option to show detailed logs for Flux queries. // // Default: false FluxLogEnabled *bool // Log output level. InfluxDB outputs log entries with severity levels greater // than or equal to the level specified. // // Default: info LogLevel LogLevel // Disable the HTTP /metrics endpoint which exposes [internal InfluxDB metrics]. // // Default: false // // [internal InfluxDB metrics]: https://docs.influxdata.com/influxdb/v2/reference/internals/metrics/ MetricsDisabled *bool // Disable the task scheduler. If problematic tasks prevent InfluxDB from // starting, use this option to start InfluxDB without scheduling or executing // tasks. // // Default: false NoTasks *bool // Number of queries allowed to execute concurrently. Setting to 0 allows an // unlimited number of concurrent queries. // // Default: 0 QueryConcurrency *int32 // Maximum number of queries allowed in execution queue. When queue limit is // reached, new queries are rejected. Setting to 0 allows an unlimited number of // queries in the queue. // // Default: 0 QueryQueueSize *int32 // Enable tracing in InfluxDB and specifies the tracing type. Tracing is disabled // by default. TracingType TracingType // contains filtered or unexported fields }
All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.
type InternalServerException ¶
type InternalServerException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The request processing has failed because of an unknown error, exception or failure.
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 LogDeliveryConfiguration ¶
type LogDeliveryConfiguration struct { // Configuration for S3 bucket log delivery. // // This member is required. S3Configuration *S3Configuration // contains filtered or unexported fields }
Configuration for sending InfluxDB engine logs to send to specified S3 bucket.
type LogLevel ¶
type LogLevel string
type Parameters ¶
type Parameters interface {
// contains filtered or unexported methods
}
The parameters that comprise the parameter group.
The following types satisfy this interface:
ParametersMemberInfluxDBv2
Example (OutputUsage) ¶
// Code generated by smithy-go-codegen DO NOT EDIT. package main import ( "fmt" "github.com/aws/aws-sdk-go-v2/service/timestreaminfluxdb/types" ) func main() { var union types.Parameters // type switches can be used to check the union value switch v := union.(type) { case *types.ParametersMemberInfluxDBv2: _ = v.Value // Value is types.InfluxDBv2Parameters case *types.UnknownUnionMember: fmt.Println("unknown tag:", v.Tag) default: fmt.Println("union is nil or unknown type") } } var _ *types.InfluxDBv2Parameters
Output:
type ParametersMemberInfluxDBv2 ¶
type ParametersMemberInfluxDBv2 struct { Value InfluxDBv2Parameters // contains filtered or unexported fields }
All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.
type ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string ErrorCodeOverride *string ResourceId *string ResourceType *string // contains filtered or unexported fields }
The requested resource was not found or does not exist.
func (*ResourceNotFoundException) Error ¶
func (e *ResourceNotFoundException) Error() string
func (*ResourceNotFoundException) ErrorCode ¶
func (e *ResourceNotFoundException) ErrorCode() string
func (*ResourceNotFoundException) ErrorFault ¶
func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
func (*ResourceNotFoundException) ErrorMessage ¶
func (e *ResourceNotFoundException) ErrorMessage() string
type S3Configuration ¶
type S3Configuration struct { // The name of the S3 bucket to deliver logs to. // // This member is required. BucketName *string // Indicates whether log delivery to the S3 bucket is enabled. // // This member is required. Enabled *bool // contains filtered or unexported fields }
Configuration for S3 bucket log delivery.
type ServiceQuotaExceededException ¶
type ServiceQuotaExceededException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The request exceeds the service quota.
func (*ServiceQuotaExceededException) Error ¶
func (e *ServiceQuotaExceededException) Error() string
func (*ServiceQuotaExceededException) ErrorCode ¶
func (e *ServiceQuotaExceededException) ErrorCode() string
func (*ServiceQuotaExceededException) ErrorFault ¶
func (e *ServiceQuotaExceededException) ErrorFault() smithy.ErrorFault
func (*ServiceQuotaExceededException) ErrorMessage ¶
func (e *ServiceQuotaExceededException) ErrorMessage() string
type Status ¶
type Status string
type ThrottlingException ¶
type ThrottlingException struct { Message *string ErrorCodeOverride *string RetryAfterSeconds *int32 // 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 TracingType ¶
type TracingType string
const ( TracingTypeLog TracingType = "log" TracingTypeJaeger TracingType = "jaeger" )
Enum values for TracingType
func (TracingType) Values ¶
func (TracingType) Values() []TracingType
Values returns all known values for TracingType. 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 UnknownUnionMember ¶
type UnknownUnionMember struct { Tag string Value []byte // contains filtered or unexported fields }
UnknownUnionMember is returned when a union member is returned over the wire, but has an unknown tag.
type ValidationException ¶
type ValidationException struct { Message *string ErrorCodeOverride *string Reason ValidationExceptionReason // contains filtered or unexported fields }
The input fails to satisfy the constraints specified by Timestream for InfluxDB.
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
type ValidationExceptionReason ¶
type ValidationExceptionReason string
const ( ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "FIELD_VALIDATION_FAILED" ValidationExceptionReasonOther ValidationExceptionReason = "OTHER" )
Enum values for ValidationExceptionReason
func (ValidationExceptionReason) Values ¶
func (ValidationExceptionReason) Values() []ValidationExceptionReason
Values returns all known values for ValidationExceptionReason. 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.