Documentation ¶
Index ¶
- type Args
- type Configuration
- type ConfigurationAttributes
- type ConfigurationState
- type DataArgs
- type DataConfigurationAttributes
- func (c DataConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (c DataConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (c DataConfigurationAttributes) InternalWithRef(ref terra.Reference) DataConfigurationAttributes
- func (c DataConfigurationAttributes) Style() terra.StringValue
- type DataConfigurationState
- type DataSource
- type Resource
- func (alm *Resource) Attributes() awsLocationMapAttributes
- func (alm *Resource) Configuration() interface{}
- func (alm *Resource) DependOn() terra.Reference
- func (alm *Resource) Dependencies() terra.Dependencies
- func (alm *Resource) ImportState(state io.Reader) error
- func (alm *Resource) LifecycleManagement() *terra.Lifecycle
- func (alm *Resource) LocalName() string
- func (alm *Resource) State() (*awsLocationMapState, bool)
- func (alm *Resource) StateMust() *awsLocationMapState
- func (alm *Resource) Type() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // MapName: string, required MapName terra.StringValue `hcl:"map_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"` // Configuration: required Configuration *Configuration `hcl:"configuration,block" validate:"required"` }
Args contains the configurations for aws_location_map.
type Configuration ¶
type Configuration struct { // Style: string, required Style terra.StringValue `hcl:"style,attr" validate:"required"` }
type ConfigurationAttributes ¶
type ConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (ConfigurationAttributes) InternalRef ¶
func (c ConfigurationAttributes) InternalRef() (terra.Reference, error)
func (ConfigurationAttributes) InternalTokens ¶
func (c ConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ConfigurationAttributes) InternalWithRef ¶
func (c ConfigurationAttributes) InternalWithRef(ref terra.Reference) ConfigurationAttributes
func (ConfigurationAttributes) Style ¶
func (c ConfigurationAttributes) Style() terra.StringValue
type ConfigurationState ¶
type ConfigurationState struct {
Style string `json:"style"`
}
type DataArgs ¶
type DataArgs struct { // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // MapName: string, required MapName terra.StringValue `hcl:"map_name,attr" validate:"required"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` }
DataArgs contains the configurations for aws_location_map.
type DataConfigurationAttributes ¶
type DataConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (DataConfigurationAttributes) InternalRef ¶
func (c DataConfigurationAttributes) InternalRef() (terra.Reference, error)
func (DataConfigurationAttributes) InternalTokens ¶
func (c DataConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataConfigurationAttributes) InternalWithRef ¶
func (c DataConfigurationAttributes) InternalWithRef(ref terra.Reference) DataConfigurationAttributes
func (DataConfigurationAttributes) Style ¶
func (c DataConfigurationAttributes) Style() terra.StringValue
type DataConfigurationState ¶
type DataConfigurationState struct {
Style string `json:"style"`
}
type DataSource ¶
DataSource represents the Terraform data resource aws_location_map.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (alm *DataSource) Attributes() dataAwsLocationMapAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (alm *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (alm *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (alm *DataSource) LocalName() string
LocalName returns the local name for DataSource.
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_location_map.
func (*Resource) Attributes ¶
func (alm *Resource) Attributes() awsLocationMapAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (alm *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (alm *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.