Documentation ¶
Index ¶
- type Args
- type NodesAttributes
- func (n NodesAttributes) Address() terra.StringValue
- func (n NodesAttributes) AvailabilityZone() terra.StringValue
- func (n NodesAttributes) Id() terra.StringValue
- func (n NodesAttributes) InternalRef() (terra.Reference, error)
- func (n NodesAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (n NodesAttributes) InternalWithRef(ref terra.Reference) NodesAttributes
- func (n NodesAttributes) Port() terra.NumberValue
- type NodesState
- type Resource
- func (adc *Resource) Attributes() awsDaxClusterAttributes
- func (adc *Resource) Configuration() interface{}
- func (adc *Resource) DependOn() terra.Reference
- func (adc *Resource) Dependencies() terra.Dependencies
- func (adc *Resource) ImportState(state io.Reader) error
- func (adc *Resource) LifecycleManagement() *terra.Lifecycle
- func (adc *Resource) LocalName() string
- func (adc *Resource) State() (*awsDaxClusterState, bool)
- func (adc *Resource) StateMust() *awsDaxClusterState
- func (adc *Resource) Type() string
- type ServerSideEncryption
- type ServerSideEncryptionAttributes
- func (sse ServerSideEncryptionAttributes) Enabled() terra.BoolValue
- func (sse ServerSideEncryptionAttributes) InternalRef() (terra.Reference, error)
- func (sse ServerSideEncryptionAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (sse ServerSideEncryptionAttributes) InternalWithRef(ref terra.Reference) ServerSideEncryptionAttributes
- type ServerSideEncryptionState
- type Timeouts
- type TimeoutsAttributes
- func (t TimeoutsAttributes) Create() terra.StringValue
- func (t TimeoutsAttributes) Delete() terra.StringValue
- func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)
- func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes
- func (t TimeoutsAttributes) Update() terra.StringValue
- type TimeoutsState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // AvailabilityZones: set of string, optional AvailabilityZones terra.SetValue[terra.StringValue] `hcl:"availability_zones,attr"` // ClusterEndpointEncryptionType: string, optional ClusterEndpointEncryptionType terra.StringValue `hcl:"cluster_endpoint_encryption_type,attr"` // ClusterName: string, required ClusterName terra.StringValue `hcl:"cluster_name,attr" validate:"required"` // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // IamRoleArn: string, required IamRoleArn terra.StringValue `hcl:"iam_role_arn,attr" validate:"required"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // MaintenanceWindow: string, optional MaintenanceWindow terra.StringValue `hcl:"maintenance_window,attr"` // NodeType: string, required NodeType terra.StringValue `hcl:"node_type,attr" validate:"required"` // NotificationTopicArn: string, optional NotificationTopicArn terra.StringValue `hcl:"notification_topic_arn,attr"` // ParameterGroupName: string, optional ParameterGroupName terra.StringValue `hcl:"parameter_group_name,attr"` // ReplicationFactor: number, required ReplicationFactor terra.NumberValue `hcl:"replication_factor,attr" validate:"required"` // SecurityGroupIds: set of string, optional SecurityGroupIds terra.SetValue[terra.StringValue] `hcl:"security_group_ids,attr"` // SubnetGroupName: string, optional SubnetGroupName terra.StringValue `hcl:"subnet_group_name,attr"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` // TagsAll: map of string, optional TagsAll terra.MapValue[terra.StringValue] `hcl:"tags_all,attr"` // ServerSideEncryption: optional ServerSideEncryption *ServerSideEncryption `hcl:"server_side_encryption,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for aws_dax_cluster.
type NodesAttributes ¶
type NodesAttributes struct {
// contains filtered or unexported fields
}
func (NodesAttributes) Address ¶
func (n NodesAttributes) Address() terra.StringValue
func (NodesAttributes) AvailabilityZone ¶
func (n NodesAttributes) AvailabilityZone() terra.StringValue
func (NodesAttributes) Id ¶
func (n NodesAttributes) Id() terra.StringValue
func (NodesAttributes) InternalRef ¶
func (n NodesAttributes) InternalRef() (terra.Reference, error)
func (NodesAttributes) InternalTokens ¶
func (n NodesAttributes) InternalTokens() (hclwrite.Tokens, error)
func (NodesAttributes) InternalWithRef ¶
func (n NodesAttributes) InternalWithRef(ref terra.Reference) NodesAttributes
func (NodesAttributes) Port ¶
func (n NodesAttributes) Port() terra.NumberValue
type NodesState ¶
type Resource ¶
type Resource struct { Name string Args Args DependsOn terra.Dependencies Lifecycle *terra.Lifecycle // contains filtered or unexported fields }
Resource represents the Terraform resource aws_dax_cluster.
func (*Resource) Attributes ¶
func (adc *Resource) Attributes() awsDaxClusterAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (adc *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (adc *Resource) Dependencies() terra.Dependencies
Dependencies returns the list of resources Resource depends_on.
func (*Resource) ImportState ¶
ImportState imports the given attribute values into Resource's state.
func (*Resource) LifecycleManagement ¶
LifecycleManagement returns the lifecycle block for Resource.
type ServerSideEncryption ¶
type ServerSideEncryptionAttributes ¶
type ServerSideEncryptionAttributes struct {
// contains filtered or unexported fields
}
func (ServerSideEncryptionAttributes) Enabled ¶
func (sse ServerSideEncryptionAttributes) Enabled() terra.BoolValue
func (ServerSideEncryptionAttributes) InternalRef ¶
func (sse ServerSideEncryptionAttributes) InternalRef() (terra.Reference, error)
func (ServerSideEncryptionAttributes) InternalTokens ¶
func (sse ServerSideEncryptionAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ServerSideEncryptionAttributes) InternalWithRef ¶
func (sse ServerSideEncryptionAttributes) InternalWithRef(ref terra.Reference) ServerSideEncryptionAttributes
type ServerSideEncryptionState ¶
type ServerSideEncryptionState struct {
Enabled bool `json:"enabled"`
}
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 (t TimeoutsAttributes) Create() terra.StringValue
func (TimeoutsAttributes) Delete ¶
func (t TimeoutsAttributes) Delete() terra.StringValue
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 ¶
func (t TimeoutsAttributes) Update() terra.StringValue
type TimeoutsState ¶
Click to show internal directories.
Click to hide internal directories.