Documentation ¶
Index ¶
- type Args
- type Resource
- func (awxms *Resource) Attributes() awsWafXssMatchSetAttributes
- func (awxms *Resource) Configuration() interface{}
- func (awxms *Resource) DependOn() terra.Reference
- func (awxms *Resource) Dependencies() terra.Dependencies
- func (awxms *Resource) ImportState(state io.Reader) error
- func (awxms *Resource) LifecycleManagement() *terra.Lifecycle
- func (awxms *Resource) LocalName() string
- func (awxms *Resource) State() (*awsWafXssMatchSetState, bool)
- func (awxms *Resource) StateMust() *awsWafXssMatchSetState
- func (awxms *Resource) Type() string
- type XssMatchTuples
- type XssMatchTuplesAttributes
- func (xmt XssMatchTuplesAttributes) FieldToMatch() terra.ListValue[XssMatchTuplesFieldToMatchAttributes]
- func (xmt XssMatchTuplesAttributes) InternalRef() (terra.Reference, error)
- func (xmt XssMatchTuplesAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (xmt XssMatchTuplesAttributes) InternalWithRef(ref terra.Reference) XssMatchTuplesAttributes
- func (xmt XssMatchTuplesAttributes) TextTransformation() terra.StringValue
- type XssMatchTuplesFieldToMatch
- type XssMatchTuplesFieldToMatchAttributes
- func (ftm XssMatchTuplesFieldToMatchAttributes) Data() terra.StringValue
- func (ftm XssMatchTuplesFieldToMatchAttributes) InternalRef() (terra.Reference, error)
- func (ftm XssMatchTuplesFieldToMatchAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ftm XssMatchTuplesFieldToMatchAttributes) InternalWithRef(ref terra.Reference) XssMatchTuplesFieldToMatchAttributes
- func (ftm XssMatchTuplesFieldToMatchAttributes) Type() terra.StringValue
- type XssMatchTuplesFieldToMatchState
- type XssMatchTuplesState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // XssMatchTuples: min=0 XssMatchTuples []XssMatchTuples `hcl:"xss_match_tuples,block" validate:"min=0"` }
Args contains the configurations for aws_waf_xss_match_set.
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_waf_xss_match_set.
func (*Resource) Attributes ¶
func (awxms *Resource) Attributes() awsWafXssMatchSetAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (awxms *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (awxms *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 XssMatchTuples ¶
type XssMatchTuples struct { // TextTransformation: string, required TextTransformation terra.StringValue `hcl:"text_transformation,attr" validate:"required"` // XssMatchTuplesFieldToMatch: required FieldToMatch *XssMatchTuplesFieldToMatch `hcl:"field_to_match,block" validate:"required"` }
type XssMatchTuplesAttributes ¶
type XssMatchTuplesAttributes struct {
// contains filtered or unexported fields
}
func (XssMatchTuplesAttributes) FieldToMatch ¶
func (xmt XssMatchTuplesAttributes) FieldToMatch() terra.ListValue[XssMatchTuplesFieldToMatchAttributes]
func (XssMatchTuplesAttributes) InternalRef ¶
func (xmt XssMatchTuplesAttributes) InternalRef() (terra.Reference, error)
func (XssMatchTuplesAttributes) InternalTokens ¶
func (xmt XssMatchTuplesAttributes) InternalTokens() (hclwrite.Tokens, error)
func (XssMatchTuplesAttributes) InternalWithRef ¶
func (xmt XssMatchTuplesAttributes) InternalWithRef(ref terra.Reference) XssMatchTuplesAttributes
func (XssMatchTuplesAttributes) TextTransformation ¶
func (xmt XssMatchTuplesAttributes) TextTransformation() terra.StringValue
type XssMatchTuplesFieldToMatch ¶
type XssMatchTuplesFieldToMatch struct { // Data: string, optional Data terra.StringValue `hcl:"data,attr"` // Type: string, required Type terra.StringValue `hcl:"type,attr" validate:"required"` }
type XssMatchTuplesFieldToMatchAttributes ¶
type XssMatchTuplesFieldToMatchAttributes struct {
// contains filtered or unexported fields
}
func (XssMatchTuplesFieldToMatchAttributes) Data ¶
func (ftm XssMatchTuplesFieldToMatchAttributes) Data() terra.StringValue
func (XssMatchTuplesFieldToMatchAttributes) InternalRef ¶
func (ftm XssMatchTuplesFieldToMatchAttributes) InternalRef() (terra.Reference, error)
func (XssMatchTuplesFieldToMatchAttributes) InternalTokens ¶
func (ftm XssMatchTuplesFieldToMatchAttributes) InternalTokens() (hclwrite.Tokens, error)
func (XssMatchTuplesFieldToMatchAttributes) InternalWithRef ¶
func (ftm XssMatchTuplesFieldToMatchAttributes) InternalWithRef(ref terra.Reference) XssMatchTuplesFieldToMatchAttributes
func (XssMatchTuplesFieldToMatchAttributes) Type ¶
func (ftm XssMatchTuplesFieldToMatchAttributes) Type() terra.StringValue
type XssMatchTuplesState ¶
type XssMatchTuplesState struct { TextTransformation string `json:"text_transformation"` FieldToMatch []XssMatchTuplesFieldToMatchState `json:"field_to_match"` }
Click to show internal directories.
Click to hide internal directories.