Documentation ¶
Index ¶
- type Args
- type EvaluationRulesAttributes
- func (er EvaluationRulesAttributes) InternalRef() (terra.Reference, error)
- func (er EvaluationRulesAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (er EvaluationRulesAttributes) InternalWithRef(ref terra.Reference) EvaluationRulesAttributes
- func (er EvaluationRulesAttributes) Name() terra.StringValue
- func (er EvaluationRulesAttributes) Type() terra.StringValue
- type EvaluationRulesState
- type Resource
- func (aef *Resource) Attributes() awsEvidentlyFeatureAttributes
- func (aef *Resource) Configuration() interface{}
- func (aef *Resource) DependOn() terra.Reference
- func (aef *Resource) Dependencies() terra.Dependencies
- func (aef *Resource) ImportState(state io.Reader) error
- func (aef *Resource) LifecycleManagement() *terra.Lifecycle
- func (aef *Resource) LocalName() string
- func (aef *Resource) State() (*awsEvidentlyFeatureState, bool)
- func (aef *Resource) StateMust() *awsEvidentlyFeatureState
- func (aef *Resource) Type() string
- 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
- type Variations
- type VariationsAttributes
- func (v VariationsAttributes) InternalRef() (terra.Reference, error)
- func (v VariationsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (v VariationsAttributes) InternalWithRef(ref terra.Reference) VariationsAttributes
- func (v VariationsAttributes) Name() terra.StringValue
- func (v VariationsAttributes) Value() terra.ListValue[VariationsValueAttributes]
- type VariationsState
- type VariationsValue
- type VariationsValueAttributes
- func (v VariationsValueAttributes) BoolValue() terra.StringValue
- func (v VariationsValueAttributes) DoubleValue() terra.StringValue
- func (v VariationsValueAttributes) InternalRef() (terra.Reference, error)
- func (v VariationsValueAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (v VariationsValueAttributes) InternalWithRef(ref terra.Reference) VariationsValueAttributes
- func (v VariationsValueAttributes) LongValue() terra.StringValue
- func (v VariationsValueAttributes) StringValue() terra.StringValue
- type VariationsValueState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // DefaultVariation: string, optional DefaultVariation terra.StringValue `hcl:"default_variation,attr"` // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // EntityOverrides: map of string, optional EntityOverrides terra.MapValue[terra.StringValue] `hcl:"entity_overrides,attr"` // EvaluationStrategy: string, optional EvaluationStrategy terra.StringValue `hcl:"evaluation_strategy,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Project: string, required Project terra.StringValue `hcl:"project,attr" validate:"required"` // 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"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` // Variations: min=1,max=5 Variations []Variations `hcl:"variations,block" validate:"min=1,max=5"` }
Args contains the configurations for aws_evidently_feature.
type EvaluationRulesAttributes ¶
type EvaluationRulesAttributes struct {
// contains filtered or unexported fields
}
func (EvaluationRulesAttributes) InternalRef ¶
func (er EvaluationRulesAttributes) InternalRef() (terra.Reference, error)
func (EvaluationRulesAttributes) InternalTokens ¶
func (er EvaluationRulesAttributes) InternalTokens() (hclwrite.Tokens, error)
func (EvaluationRulesAttributes) InternalWithRef ¶
func (er EvaluationRulesAttributes) InternalWithRef(ref terra.Reference) EvaluationRulesAttributes
func (EvaluationRulesAttributes) Name ¶
func (er EvaluationRulesAttributes) Name() terra.StringValue
func (EvaluationRulesAttributes) Type ¶
func (er EvaluationRulesAttributes) Type() terra.StringValue
type EvaluationRulesState ¶
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_evidently_feature.
func (*Resource) Attributes ¶
func (aef *Resource) Attributes() awsEvidentlyFeatureAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (aef *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (aef *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 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 ¶
type Variations ¶
type Variations struct { // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // VariationsValue: required Value *VariationsValue `hcl:"value,block" validate:"required"` }
type VariationsAttributes ¶
type VariationsAttributes struct {
// contains filtered or unexported fields
}
func (VariationsAttributes) InternalRef ¶
func (v VariationsAttributes) InternalRef() (terra.Reference, error)
func (VariationsAttributes) InternalTokens ¶
func (v VariationsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (VariationsAttributes) InternalWithRef ¶
func (v VariationsAttributes) InternalWithRef(ref terra.Reference) VariationsAttributes
func (VariationsAttributes) Name ¶
func (v VariationsAttributes) Name() terra.StringValue
func (VariationsAttributes) Value ¶
func (v VariationsAttributes) Value() terra.ListValue[VariationsValueAttributes]
type VariationsState ¶
type VariationsState struct { Name string `json:"name"` Value []VariationsValueState `json:"value"` }
type VariationsValue ¶
type VariationsValue struct { // BoolValue: string, optional BoolValue terra.StringValue `hcl:"bool_value,attr"` // DoubleValue: string, optional DoubleValue terra.StringValue `hcl:"double_value,attr"` // LongValue: string, optional LongValue terra.StringValue `hcl:"long_value,attr"` // StringValue: string, optional StringValue terra.StringValue `hcl:"string_value,attr"` }
type VariationsValueAttributes ¶
type VariationsValueAttributes struct {
// contains filtered or unexported fields
}
func (VariationsValueAttributes) BoolValue ¶
func (v VariationsValueAttributes) BoolValue() terra.StringValue
func (VariationsValueAttributes) DoubleValue ¶
func (v VariationsValueAttributes) DoubleValue() terra.StringValue
func (VariationsValueAttributes) InternalRef ¶
func (v VariationsValueAttributes) InternalRef() (terra.Reference, error)
func (VariationsValueAttributes) InternalTokens ¶
func (v VariationsValueAttributes) InternalTokens() (hclwrite.Tokens, error)
func (VariationsValueAttributes) InternalWithRef ¶
func (v VariationsValueAttributes) InternalWithRef(ref terra.Reference) VariationsValueAttributes
func (VariationsValueAttributes) LongValue ¶
func (v VariationsValueAttributes) LongValue() terra.StringValue
func (VariationsValueAttributes) StringValue ¶
func (v VariationsValueAttributes) StringValue() terra.StringValue
Click to show internal directories.
Click to hide internal directories.