timestreamwritetable

package
v0.0.0-...-964ba77 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CompositePartitionKey

type CompositePartitionKey struct {
	// EnforcementInRecord: string, optional
	EnforcementInRecord terra.StringValue `hcl:"enforcement_in_record,attr"`
	// Name: string, optional
	Name terra.StringValue `hcl:"name,attr"`
	// Type: string, required
	Type terra.StringValue `hcl:"type,attr" validate:"required"`
}

type CompositePartitionKeyAttributes

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

func (CompositePartitionKeyAttributes) EnforcementInRecord

func (cpk CompositePartitionKeyAttributes) EnforcementInRecord() terra.StringValue

func (CompositePartitionKeyAttributes) InternalRef

func (CompositePartitionKeyAttributes) InternalTokens

func (cpk CompositePartitionKeyAttributes) InternalTokens() (hclwrite.Tokens, error)

func (CompositePartitionKeyAttributes) InternalWithRef

func (CompositePartitionKeyAttributes) Name

func (CompositePartitionKeyAttributes) Type

type CompositePartitionKeyState

type CompositePartitionKeyState struct {
	EnforcementInRecord string `json:"enforcement_in_record"`
	Name                string `json:"name"`
	Type                string `json:"type"`
}

type MagneticStoreRejectedDataLocation

type MagneticStoreRejectedDataLocation struct {
	// S3Configuration: optional
	S3Configuration *S3Configuration `hcl:"s3_configuration,block"`
}

type MagneticStoreRejectedDataLocationAttributes

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

func (MagneticStoreRejectedDataLocationAttributes) InternalRef

func (MagneticStoreRejectedDataLocationAttributes) InternalTokens

func (MagneticStoreRejectedDataLocationAttributes) InternalWithRef

func (MagneticStoreRejectedDataLocationAttributes) S3Configuration

type MagneticStoreRejectedDataLocationState

type MagneticStoreRejectedDataLocationState struct {
	S3Configuration []S3ConfigurationState `json:"s3_configuration"`
}

type MagneticStoreWriteProperties

type MagneticStoreWriteProperties struct {
	// EnableMagneticStoreWrites: bool, optional
	EnableMagneticStoreWrites terra.BoolValue `hcl:"enable_magnetic_store_writes,attr"`
	// MagneticStoreRejectedDataLocation: optional
	MagneticStoreRejectedDataLocation *MagneticStoreRejectedDataLocation `hcl:"magnetic_store_rejected_data_location,block"`
}

type MagneticStoreWritePropertiesAttributes

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

func (MagneticStoreWritePropertiesAttributes) EnableMagneticStoreWrites

func (mswp MagneticStoreWritePropertiesAttributes) EnableMagneticStoreWrites() terra.BoolValue

func (MagneticStoreWritePropertiesAttributes) InternalRef

func (MagneticStoreWritePropertiesAttributes) InternalTokens

func (MagneticStoreWritePropertiesAttributes) InternalWithRef

func (MagneticStoreWritePropertiesAttributes) MagneticStoreRejectedDataLocation

type MagneticStoreWritePropertiesState

type MagneticStoreWritePropertiesState struct {
	EnableMagneticStoreWrites         bool                                     `json:"enable_magnetic_store_writes"`
	MagneticStoreRejectedDataLocation []MagneticStoreRejectedDataLocationState `json:"magnetic_store_rejected_data_location"`
}

type RetentionProperties

type RetentionProperties struct {
	// MagneticStoreRetentionPeriodInDays: number, required
	MagneticStoreRetentionPeriodInDays terra.NumberValue `hcl:"magnetic_store_retention_period_in_days,attr" validate:"required"`
	// MemoryStoreRetentionPeriodInHours: number, required
	MemoryStoreRetentionPeriodInHours terra.NumberValue `hcl:"memory_store_retention_period_in_hours,attr" validate:"required"`
}

type RetentionPropertiesAttributes

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

func (RetentionPropertiesAttributes) InternalRef

func (rp RetentionPropertiesAttributes) InternalRef() (terra.Reference, error)

func (RetentionPropertiesAttributes) InternalTokens

func (rp RetentionPropertiesAttributes) InternalTokens() (hclwrite.Tokens, error)

func (RetentionPropertiesAttributes) InternalWithRef

func (RetentionPropertiesAttributes) MagneticStoreRetentionPeriodInDays

func (rp RetentionPropertiesAttributes) MagneticStoreRetentionPeriodInDays() terra.NumberValue

func (RetentionPropertiesAttributes) MemoryStoreRetentionPeriodInHours

func (rp RetentionPropertiesAttributes) MemoryStoreRetentionPeriodInHours() terra.NumberValue

type RetentionPropertiesState

type RetentionPropertiesState struct {
	MagneticStoreRetentionPeriodInDays float64 `json:"magnetic_store_retention_period_in_days"`
	MemoryStoreRetentionPeriodInHours  float64 `json:"memory_store_retention_period_in_hours"`
}

type S3Configuration

type S3Configuration struct {
	// BucketName: string, optional
	BucketName terra.StringValue `hcl:"bucket_name,attr"`
	// EncryptionOption: string, optional
	EncryptionOption terra.StringValue `hcl:"encryption_option,attr"`
	// KmsKeyId: string, optional
	KmsKeyId terra.StringValue `hcl:"kms_key_id,attr"`
	// ObjectKeyPrefix: string, optional
	ObjectKeyPrefix terra.StringValue `hcl:"object_key_prefix,attr"`
}

type S3ConfigurationAttributes

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

func (S3ConfigurationAttributes) BucketName

func (S3ConfigurationAttributes) EncryptionOption

func (sc S3ConfigurationAttributes) EncryptionOption() terra.StringValue

func (S3ConfigurationAttributes) InternalRef

func (sc S3ConfigurationAttributes) InternalRef() (terra.Reference, error)

func (S3ConfigurationAttributes) InternalTokens

func (sc S3ConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (S3ConfigurationAttributes) InternalWithRef

func (S3ConfigurationAttributes) KmsKeyId

func (S3ConfigurationAttributes) ObjectKeyPrefix

func (sc S3ConfigurationAttributes) ObjectKeyPrefix() terra.StringValue

type S3ConfigurationState

type S3ConfigurationState struct {
	BucketName       string `json:"bucket_name"`
	EncryptionOption string `json:"encryption_option"`
	KmsKeyId         string `json:"kms_key_id"`
	ObjectKeyPrefix  string `json:"object_key_prefix"`
}

type Schema

type Schema struct {
	// CompositePartitionKey: optional
	CompositePartitionKey *CompositePartitionKey `hcl:"composite_partition_key,block"`
}

type SchemaAttributes

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

func (SchemaAttributes) CompositePartitionKey

func (SchemaAttributes) InternalRef

func (s SchemaAttributes) InternalRef() (terra.Reference, error)

func (SchemaAttributes) InternalTokens

func (s SchemaAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SchemaAttributes) InternalWithRef

func (s SchemaAttributes) InternalWithRef(ref terra.Reference) SchemaAttributes

type SchemaState

type SchemaState struct {
	CompositePartitionKey []CompositePartitionKeyState `json:"composite_partition_key"`
}

Jump to

Keyboard shortcuts

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