Documentation ¶
Index ¶
- type ActionPoint
- type ActionPointAction
- type ActionPointActionAttributes
- func (a ActionPointActionAttributes) Description() terra.StringValue
- func (a ActionPointActionAttributes) InternalRef() (terra.Reference, error)
- func (a ActionPointActionAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (a ActionPointActionAttributes) InternalWithRef(ref terra.Reference) ActionPointActionAttributes
- func (a ActionPointActionAttributes) Name() terra.StringValue
- func (a ActionPointActionAttributes) RoleArn() terra.StringValue
- func (a ActionPointActionAttributes) Uri() terra.StringValue
- type ActionPointActionState
- type ActionPointAttributes
- func (ap ActionPointAttributes) Action() terra.SetValue[ActionPointActionAttributes]
- func (ap ActionPointAttributes) InternalRef() (terra.Reference, error)
- func (ap ActionPointAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ap ActionPointAttributes) InternalWithRef(ref terra.Reference) ActionPointAttributes
- func (ap ActionPointAttributes) Point() terra.StringValue
- type ActionPointState
- type Args
- type Parameter
- type ParameterAttributes
- func (p ParameterAttributes) Description() terra.StringValue
- func (p ParameterAttributes) InternalRef() (terra.Reference, error)
- func (p ParameterAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (p ParameterAttributes) InternalWithRef(ref terra.Reference) ParameterAttributes
- func (p ParameterAttributes) Name() terra.StringValue
- func (p ParameterAttributes) Required() terra.BoolValue
- type ParameterState
- type Resource
- func (aae *Resource) Attributes() awsAppconfigExtensionAttributes
- func (aae *Resource) Configuration() interface{}
- func (aae *Resource) DependOn() terra.Reference
- func (aae *Resource) Dependencies() terra.Dependencies
- func (aae *Resource) ImportState(state io.Reader) error
- func (aae *Resource) LifecycleManagement() *terra.Lifecycle
- func (aae *Resource) LocalName() string
- func (aae *Resource) State() (*awsAppconfigExtensionState, bool)
- func (aae *Resource) StateMust() *awsAppconfigExtensionState
- func (aae *Resource) Type() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ActionPoint ¶
type ActionPoint struct { // Point: string, required Point terra.StringValue `hcl:"point,attr" validate:"required"` // ActionPointAction: min=1 Action []ActionPointAction `hcl:"action,block" validate:"min=1"` }
type ActionPointAction ¶
type ActionPointAction struct { // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // RoleArn: string, required RoleArn terra.StringValue `hcl:"role_arn,attr" validate:"required"` // Uri: string, required Uri terra.StringValue `hcl:"uri,attr" validate:"required"` }
type ActionPointActionAttributes ¶
type ActionPointActionAttributes struct {
// contains filtered or unexported fields
}
func (ActionPointActionAttributes) Description ¶
func (a ActionPointActionAttributes) Description() terra.StringValue
func (ActionPointActionAttributes) InternalRef ¶
func (a ActionPointActionAttributes) InternalRef() (terra.Reference, error)
func (ActionPointActionAttributes) InternalTokens ¶
func (a ActionPointActionAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ActionPointActionAttributes) InternalWithRef ¶
func (a ActionPointActionAttributes) InternalWithRef(ref terra.Reference) ActionPointActionAttributes
func (ActionPointActionAttributes) Name ¶
func (a ActionPointActionAttributes) Name() terra.StringValue
func (ActionPointActionAttributes) RoleArn ¶
func (a ActionPointActionAttributes) RoleArn() terra.StringValue
func (ActionPointActionAttributes) Uri ¶
func (a ActionPointActionAttributes) Uri() terra.StringValue
type ActionPointActionState ¶
type ActionPointAttributes ¶
type ActionPointAttributes struct {
// contains filtered or unexported fields
}
func (ActionPointAttributes) Action ¶
func (ap ActionPointAttributes) Action() terra.SetValue[ActionPointActionAttributes]
func (ActionPointAttributes) InternalRef ¶
func (ap ActionPointAttributes) InternalRef() (terra.Reference, error)
func (ActionPointAttributes) InternalTokens ¶
func (ap ActionPointAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ActionPointAttributes) InternalWithRef ¶
func (ap ActionPointAttributes) InternalWithRef(ref terra.Reference) ActionPointAttributes
func (ActionPointAttributes) Point ¶
func (ap ActionPointAttributes) Point() terra.StringValue
type ActionPointState ¶
type ActionPointState struct { Point string `json:"point"` Action []ActionPointActionState `json:"action"` }
type Args ¶
type Args struct { // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,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"` // ActionPoint: min=1 ActionPoint []ActionPoint `hcl:"action_point,block" validate:"min=1"` // Parameter: min=0 Parameter []Parameter `hcl:"parameter,block" validate:"min=0"` }
Args contains the configurations for aws_appconfig_extension.
type Parameter ¶
type Parameter struct { // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Required: bool, optional Required terra.BoolValue `hcl:"required,attr"` }
type ParameterAttributes ¶
type ParameterAttributes struct {
// contains filtered or unexported fields
}
func (ParameterAttributes) Description ¶
func (p ParameterAttributes) Description() terra.StringValue
func (ParameterAttributes) InternalRef ¶
func (p ParameterAttributes) InternalRef() (terra.Reference, error)
func (ParameterAttributes) InternalTokens ¶
func (p ParameterAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ParameterAttributes) InternalWithRef ¶
func (p ParameterAttributes) InternalWithRef(ref terra.Reference) ParameterAttributes
func (ParameterAttributes) Name ¶
func (p ParameterAttributes) Name() terra.StringValue
func (ParameterAttributes) Required ¶
func (p ParameterAttributes) Required() terra.BoolValue
type ParameterState ¶
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_appconfig_extension.
func (*Resource) Attributes ¶
func (aae *Resource) Attributes() awsAppconfigExtensionAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (aae *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (aae *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.
Click to show internal directories.
Click to hide internal directories.