Documentation ¶
Index ¶
- type EndpointOptions
- type EndpointOptionsAttributes
- func (eo EndpointOptionsAttributes) EnforceHttps() terra.BoolValue
- func (eo EndpointOptionsAttributes) InternalRef() (terra.Reference, error)
- func (eo EndpointOptionsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (eo EndpointOptionsAttributes) InternalWithRef(ref terra.Reference) EndpointOptionsAttributes
- func (eo EndpointOptionsAttributes) TlsSecurityPolicy() terra.StringValue
- type EndpointOptionsState
- type IndexField
- type IndexFieldAttributes
- func (_if IndexFieldAttributes) AnalysisScheme() terra.StringValue
- func (_if IndexFieldAttributes) DefaultValue() terra.StringValue
- func (_if IndexFieldAttributes) Facet() terra.BoolValue
- func (_if IndexFieldAttributes) Highlight() terra.BoolValue
- func (_if IndexFieldAttributes) InternalRef() (terra.Reference, error)
- func (_if IndexFieldAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (_if IndexFieldAttributes) InternalWithRef(ref terra.Reference) IndexFieldAttributes
- func (_if IndexFieldAttributes) Name() terra.StringValue
- func (_if IndexFieldAttributes) Return() terra.BoolValue
- func (_if IndexFieldAttributes) Search() terra.BoolValue
- func (_if IndexFieldAttributes) Sort() terra.BoolValue
- func (_if IndexFieldAttributes) SourceFields() terra.StringValue
- func (_if IndexFieldAttributes) Type() terra.StringValue
- type IndexFieldState
- type ScalingParameters
- type ScalingParametersAttributes
- func (sp ScalingParametersAttributes) DesiredInstanceType() terra.StringValue
- func (sp ScalingParametersAttributes) DesiredPartitionCount() terra.NumberValue
- func (sp ScalingParametersAttributes) DesiredReplicationCount() terra.NumberValue
- func (sp ScalingParametersAttributes) InternalRef() (terra.Reference, error)
- func (sp ScalingParametersAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (sp ScalingParametersAttributes) InternalWithRef(ref terra.Reference) ScalingParametersAttributes
- type ScalingParametersState
- 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 EndpointOptions ¶
type EndpointOptions struct { // EnforceHttps: bool, optional EnforceHttps terra.BoolValue `hcl:"enforce_https,attr"` // TlsSecurityPolicy: string, optional TlsSecurityPolicy terra.StringValue `hcl:"tls_security_policy,attr"` }
type EndpointOptionsAttributes ¶
type EndpointOptionsAttributes struct {
// contains filtered or unexported fields
}
func (EndpointOptionsAttributes) EnforceHttps ¶
func (eo EndpointOptionsAttributes) EnforceHttps() terra.BoolValue
func (EndpointOptionsAttributes) InternalRef ¶
func (eo EndpointOptionsAttributes) InternalRef() (terra.Reference, error)
func (EndpointOptionsAttributes) InternalTokens ¶
func (eo EndpointOptionsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (EndpointOptionsAttributes) InternalWithRef ¶
func (eo EndpointOptionsAttributes) InternalWithRef(ref terra.Reference) EndpointOptionsAttributes
func (EndpointOptionsAttributes) TlsSecurityPolicy ¶
func (eo EndpointOptionsAttributes) TlsSecurityPolicy() terra.StringValue
type EndpointOptionsState ¶
type IndexField ¶
type IndexField struct { // AnalysisScheme: string, optional AnalysisScheme terra.StringValue `hcl:"analysis_scheme,attr"` // DefaultValue: string, optional DefaultValue terra.StringValue `hcl:"default_value,attr"` // Facet: bool, optional Facet terra.BoolValue `hcl:"facet,attr"` // Highlight: bool, optional Highlight terra.BoolValue `hcl:"highlight,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Return: bool, optional Return terra.BoolValue `hcl:"return,attr"` // Search: bool, optional Search terra.BoolValue `hcl:"search,attr"` // Sort: bool, optional Sort terra.BoolValue `hcl:"sort,attr"` // SourceFields: string, optional SourceFields terra.StringValue `hcl:"source_fields,attr"` // Type: string, required Type terra.StringValue `hcl:"type,attr" validate:"required"` }
type IndexFieldAttributes ¶
type IndexFieldAttributes struct {
// contains filtered or unexported fields
}
func (IndexFieldAttributes) AnalysisScheme ¶
func (_if IndexFieldAttributes) AnalysisScheme() terra.StringValue
func (IndexFieldAttributes) DefaultValue ¶
func (_if IndexFieldAttributes) DefaultValue() terra.StringValue
func (IndexFieldAttributes) Facet ¶
func (_if IndexFieldAttributes) Facet() terra.BoolValue
func (IndexFieldAttributes) Highlight ¶
func (_if IndexFieldAttributes) Highlight() terra.BoolValue
func (IndexFieldAttributes) InternalRef ¶
func (_if IndexFieldAttributes) InternalRef() (terra.Reference, error)
func (IndexFieldAttributes) InternalTokens ¶
func (_if IndexFieldAttributes) InternalTokens() (hclwrite.Tokens, error)
func (IndexFieldAttributes) InternalWithRef ¶
func (_if IndexFieldAttributes) InternalWithRef(ref terra.Reference) IndexFieldAttributes
func (IndexFieldAttributes) Name ¶
func (_if IndexFieldAttributes) Name() terra.StringValue
func (IndexFieldAttributes) Return ¶
func (_if IndexFieldAttributes) Return() terra.BoolValue
func (IndexFieldAttributes) Search ¶
func (_if IndexFieldAttributes) Search() terra.BoolValue
func (IndexFieldAttributes) Sort ¶
func (_if IndexFieldAttributes) Sort() terra.BoolValue
func (IndexFieldAttributes) SourceFields ¶
func (_if IndexFieldAttributes) SourceFields() terra.StringValue
func (IndexFieldAttributes) Type ¶
func (_if IndexFieldAttributes) Type() terra.StringValue
type IndexFieldState ¶
type IndexFieldState struct { AnalysisScheme string `json:"analysis_scheme"` DefaultValue string `json:"default_value"` Facet bool `json:"facet"` Highlight bool `json:"highlight"` Name string `json:"name"` Return bool `json:"return"` Search bool `json:"search"` Sort bool `json:"sort"` SourceFields string `json:"source_fields"` Type string `json:"type"` }
type ScalingParameters ¶
type ScalingParameters struct { // DesiredInstanceType: string, optional DesiredInstanceType terra.StringValue `hcl:"desired_instance_type,attr"` // DesiredPartitionCount: number, optional DesiredPartitionCount terra.NumberValue `hcl:"desired_partition_count,attr"` // DesiredReplicationCount: number, optional DesiredReplicationCount terra.NumberValue `hcl:"desired_replication_count,attr"` }
type ScalingParametersAttributes ¶
type ScalingParametersAttributes struct {
// contains filtered or unexported fields
}
func (ScalingParametersAttributes) DesiredInstanceType ¶
func (sp ScalingParametersAttributes) DesiredInstanceType() terra.StringValue
func (ScalingParametersAttributes) DesiredPartitionCount ¶
func (sp ScalingParametersAttributes) DesiredPartitionCount() terra.NumberValue
func (ScalingParametersAttributes) DesiredReplicationCount ¶
func (sp ScalingParametersAttributes) DesiredReplicationCount() terra.NumberValue
func (ScalingParametersAttributes) InternalRef ¶
func (sp ScalingParametersAttributes) InternalRef() (terra.Reference, error)
func (ScalingParametersAttributes) InternalTokens ¶
func (sp ScalingParametersAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ScalingParametersAttributes) InternalWithRef ¶
func (sp ScalingParametersAttributes) InternalWithRef(ref terra.Reference) ScalingParametersAttributes
type ScalingParametersState ¶
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.