Documentation ¶
Index ¶
- type Args
- type DataArgs
- type DataRegularExpressionAttributes
- func (re DataRegularExpressionAttributes) InternalRef() (terra.Reference, error)
- func (re DataRegularExpressionAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (re DataRegularExpressionAttributes) InternalWithRef(ref terra.Reference) DataRegularExpressionAttributes
- func (re DataRegularExpressionAttributes) RegexString() terra.StringValue
- type DataRegularExpressionState
- type DataSource
- type RegularExpression
- type RegularExpressionAttributes
- func (re RegularExpressionAttributes) InternalRef() (terra.Reference, error)
- func (re RegularExpressionAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (re RegularExpressionAttributes) InternalWithRef(ref terra.Reference) RegularExpressionAttributes
- func (re RegularExpressionAttributes) RegexString() terra.StringValue
- type RegularExpressionState
- type Resource
- func (awrps *Resource) Attributes() awsWafv2RegexPatternSetAttributes
- func (awrps *Resource) Configuration() interface{}
- func (awrps *Resource) DependOn() terra.Reference
- func (awrps *Resource) Dependencies() terra.Dependencies
- func (awrps *Resource) ImportState(state io.Reader) error
- func (awrps *Resource) LifecycleManagement() *terra.Lifecycle
- func (awrps *Resource) LocalName() string
- func (awrps *Resource) State() (*awsWafv2RegexPatternSetState, bool)
- func (awrps *Resource) StateMust() *awsWafv2RegexPatternSetState
- func (awrps *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"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Scope: string, required Scope terra.StringValue `hcl:"scope,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"` // RegularExpression: min=0,max=10 RegularExpression []RegularExpression `hcl:"regular_expression,block" validate:"min=0,max=10"` }
Args contains the configurations for aws_wafv2_regex_pattern_set.
type DataArgs ¶
type DataArgs struct { // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Scope: string, required Scope terra.StringValue `hcl:"scope,attr" validate:"required"` }
DataArgs contains the configurations for aws_wafv2_regex_pattern_set.
type DataRegularExpressionAttributes ¶
type DataRegularExpressionAttributes struct {
// contains filtered or unexported fields
}
func (DataRegularExpressionAttributes) InternalRef ¶
func (re DataRegularExpressionAttributes) InternalRef() (terra.Reference, error)
func (DataRegularExpressionAttributes) InternalTokens ¶
func (re DataRegularExpressionAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataRegularExpressionAttributes) InternalWithRef ¶
func (re DataRegularExpressionAttributes) InternalWithRef(ref terra.Reference) DataRegularExpressionAttributes
func (DataRegularExpressionAttributes) RegexString ¶
func (re DataRegularExpressionAttributes) RegexString() terra.StringValue
type DataRegularExpressionState ¶
type DataRegularExpressionState struct {
RegexString string `json:"regex_string"`
}
type DataSource ¶
DataSource represents the Terraform data resource aws_wafv2_regex_pattern_set.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (awrps *DataSource) Attributes() dataAwsWafv2RegexPatternSetAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (awrps *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (awrps *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (awrps *DataSource) LocalName() string
LocalName returns the local name for DataSource.
type RegularExpression ¶
type RegularExpression struct { // RegexString: string, required RegexString terra.StringValue `hcl:"regex_string,attr" validate:"required"` }
type RegularExpressionAttributes ¶
type RegularExpressionAttributes struct {
// contains filtered or unexported fields
}
func (RegularExpressionAttributes) InternalRef ¶
func (re RegularExpressionAttributes) InternalRef() (terra.Reference, error)
func (RegularExpressionAttributes) InternalTokens ¶
func (re RegularExpressionAttributes) InternalTokens() (hclwrite.Tokens, error)
func (RegularExpressionAttributes) InternalWithRef ¶
func (re RegularExpressionAttributes) InternalWithRef(ref terra.Reference) RegularExpressionAttributes
func (RegularExpressionAttributes) RegexString ¶
func (re RegularExpressionAttributes) RegexString() terra.StringValue
type RegularExpressionState ¶
type RegularExpressionState struct {
RegexString string `json:"regex_string"`
}
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_wafv2_regex_pattern_set.
func (*Resource) Attributes ¶
func (awrps *Resource) Attributes() awsWafv2RegexPatternSetAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (awrps *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (awrps *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.