rdscluster

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 MasterUserSecret

type MasterUserSecret struct{}

type MasterUserSecretAttributes

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

func (MasterUserSecretAttributes) InternalRef

func (mus MasterUserSecretAttributes) InternalRef() (terra.Reference, error)

func (MasterUserSecretAttributes) InternalTokens

func (mus MasterUserSecretAttributes) InternalTokens() (hclwrite.Tokens, error)

func (MasterUserSecretAttributes) InternalWithRef

func (MasterUserSecretAttributes) KmsKeyId

func (MasterUserSecretAttributes) SecretArn

func (MasterUserSecretAttributes) SecretStatus

func (mus MasterUserSecretAttributes) SecretStatus() terra.StringValue

type MasterUserSecretState

type MasterUserSecretState struct {
	KmsKeyId     string `json:"kms_key_id"`
	SecretArn    string `json:"secret_arn"`
	SecretStatus string `json:"secret_status"`
}

type RestoreToPointInTime

type RestoreToPointInTime struct {
	// RestoreToTime: string, optional
	RestoreToTime terra.StringValue `hcl:"restore_to_time,attr"`
	// RestoreType: string, optional
	RestoreType terra.StringValue `hcl:"restore_type,attr"`
	// SourceClusterIdentifier: string, required
	SourceClusterIdentifier terra.StringValue `hcl:"source_cluster_identifier,attr" validate:"required"`
	// UseLatestRestorableTime: bool, optional
	UseLatestRestorableTime terra.BoolValue `hcl:"use_latest_restorable_time,attr"`
}

type RestoreToPointInTimeAttributes

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

func (RestoreToPointInTimeAttributes) InternalRef

func (rtpit RestoreToPointInTimeAttributes) InternalRef() (terra.Reference, error)

func (RestoreToPointInTimeAttributes) InternalTokens

func (rtpit RestoreToPointInTimeAttributes) InternalTokens() (hclwrite.Tokens, error)

func (RestoreToPointInTimeAttributes) InternalWithRef

func (RestoreToPointInTimeAttributes) RestoreToTime

func (rtpit RestoreToPointInTimeAttributes) RestoreToTime() terra.StringValue

func (RestoreToPointInTimeAttributes) RestoreType

func (rtpit RestoreToPointInTimeAttributes) RestoreType() terra.StringValue

func (RestoreToPointInTimeAttributes) SourceClusterIdentifier

func (rtpit RestoreToPointInTimeAttributes) SourceClusterIdentifier() terra.StringValue

func (RestoreToPointInTimeAttributes) UseLatestRestorableTime

func (rtpit RestoreToPointInTimeAttributes) UseLatestRestorableTime() terra.BoolValue

type RestoreToPointInTimeState

type RestoreToPointInTimeState struct {
	RestoreToTime           string `json:"restore_to_time"`
	RestoreType             string `json:"restore_type"`
	SourceClusterIdentifier string `json:"source_cluster_identifier"`
	UseLatestRestorableTime bool   `json:"use_latest_restorable_time"`
}

type S3Import

type S3Import struct {
	// BucketName: string, required
	BucketName terra.StringValue `hcl:"bucket_name,attr" validate:"required"`
	// BucketPrefix: string, optional
	BucketPrefix terra.StringValue `hcl:"bucket_prefix,attr"`
	// IngestionRole: string, required
	IngestionRole terra.StringValue `hcl:"ingestion_role,attr" validate:"required"`
	// SourceEngine: string, required
	SourceEngine terra.StringValue `hcl:"source_engine,attr" validate:"required"`
	// SourceEngineVersion: string, required
	SourceEngineVersion terra.StringValue `hcl:"source_engine_version,attr" validate:"required"`
}

type S3ImportAttributes

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

func (S3ImportAttributes) BucketName

func (si S3ImportAttributes) BucketName() terra.StringValue

func (S3ImportAttributes) BucketPrefix

func (si S3ImportAttributes) BucketPrefix() terra.StringValue

func (S3ImportAttributes) IngestionRole

func (si S3ImportAttributes) IngestionRole() terra.StringValue

func (S3ImportAttributes) InternalRef

func (si S3ImportAttributes) InternalRef() (terra.Reference, error)

func (S3ImportAttributes) InternalTokens

func (si S3ImportAttributes) InternalTokens() (hclwrite.Tokens, error)

func (S3ImportAttributes) InternalWithRef

func (si S3ImportAttributes) InternalWithRef(ref terra.Reference) S3ImportAttributes

func (S3ImportAttributes) SourceEngine

func (si S3ImportAttributes) SourceEngine() terra.StringValue

func (S3ImportAttributes) SourceEngineVersion

func (si S3ImportAttributes) SourceEngineVersion() terra.StringValue

type S3ImportState

type S3ImportState struct {
	BucketName          string `json:"bucket_name"`
	BucketPrefix        string `json:"bucket_prefix"`
	IngestionRole       string `json:"ingestion_role"`
	SourceEngine        string `json:"source_engine"`
	SourceEngineVersion string `json:"source_engine_version"`
}

type ScalingConfiguration

type ScalingConfiguration struct {
	// AutoPause: bool, optional
	AutoPause terra.BoolValue `hcl:"auto_pause,attr"`
	// MaxCapacity: number, optional
	MaxCapacity terra.NumberValue `hcl:"max_capacity,attr"`
	// MinCapacity: number, optional
	MinCapacity terra.NumberValue `hcl:"min_capacity,attr"`
	// SecondsUntilAutoPause: number, optional
	SecondsUntilAutoPause terra.NumberValue `hcl:"seconds_until_auto_pause,attr"`
	// TimeoutAction: string, optional
	TimeoutAction terra.StringValue `hcl:"timeout_action,attr"`
}

type ScalingConfigurationAttributes

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

func (ScalingConfigurationAttributes) AutoPause

func (ScalingConfigurationAttributes) InternalRef

func (ScalingConfigurationAttributes) InternalTokens

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

func (ScalingConfigurationAttributes) InternalWithRef

func (ScalingConfigurationAttributes) MaxCapacity

func (ScalingConfigurationAttributes) MinCapacity

func (ScalingConfigurationAttributes) SecondsUntilAutoPause

func (sc ScalingConfigurationAttributes) SecondsUntilAutoPause() terra.NumberValue

func (ScalingConfigurationAttributes) TimeoutAction

type ScalingConfigurationState

type ScalingConfigurationState struct {
	AutoPause             bool    `json:"auto_pause"`
	MaxCapacity           float64 `json:"max_capacity"`
	MinCapacity           float64 `json:"min_capacity"`
	SecondsUntilAutoPause float64 `json:"seconds_until_auto_pause"`
	TimeoutAction         string  `json:"timeout_action"`
}

type Serverlessv2ScalingConfiguration

type Serverlessv2ScalingConfiguration struct {
	// MaxCapacity: number, required
	MaxCapacity terra.NumberValue `hcl:"max_capacity,attr" validate:"required"`
	// MinCapacity: number, required
	MinCapacity terra.NumberValue `hcl:"min_capacity,attr" validate:"required"`
}

type Serverlessv2ScalingConfigurationAttributes

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

func (Serverlessv2ScalingConfigurationAttributes) InternalRef

func (Serverlessv2ScalingConfigurationAttributes) InternalTokens

func (Serverlessv2ScalingConfigurationAttributes) InternalWithRef

func (Serverlessv2ScalingConfigurationAttributes) MaxCapacity

func (Serverlessv2ScalingConfigurationAttributes) MinCapacity

type Serverlessv2ScalingConfigurationState

type Serverlessv2ScalingConfigurationState struct {
	MaxCapacity float64 `json:"max_capacity"`
	MinCapacity float64 `json:"min_capacity"`
}

type Timeouts

type Timeouts struct {
	// Create: string, optional
	Create terra.StringValue `hcl:"create,attr"`
	// Delete: string, optional
	Delete terra.StringValue `hcl:"delete,attr"`
	// Update: string, optional
	Update terra.StringValue `hcl:"update,attr"`
}

type TimeoutsAttributes

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

func (TimeoutsAttributes) Create

func (TimeoutsAttributes) Delete

func (TimeoutsAttributes) InternalRef

func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)

func (TimeoutsAttributes) InternalTokens

func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (TimeoutsAttributes) InternalWithRef

func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes

func (TimeoutsAttributes) Update

type TimeoutsState

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
	Update string `json:"update"`
}

Jump to

Keyboard shortcuts

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