Documentation ¶
Index ¶
- type DataArgs
- type DataResourceTagMappingListAttributes
- func (rtml DataResourceTagMappingListAttributes) ComplianceDetails() terra.ListValue[DataResourceTagMappingListComplianceDetailsAttributes]
- func (rtml DataResourceTagMappingListAttributes) InternalRef() (terra.Reference, error)
- func (rtml DataResourceTagMappingListAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (rtml DataResourceTagMappingListAttributes) InternalWithRef(ref terra.Reference) DataResourceTagMappingListAttributes
- func (rtml DataResourceTagMappingListAttributes) ResourceArn() terra.StringValue
- func (rtml DataResourceTagMappingListAttributes) Tags() terra.MapValue[terra.StringValue]
- type DataResourceTagMappingListComplianceDetailsAttributes
- func (cd DataResourceTagMappingListComplianceDetailsAttributes) ComplianceStatus() terra.BoolValue
- func (cd DataResourceTagMappingListComplianceDetailsAttributes) InternalRef() (terra.Reference, error)
- func (cd DataResourceTagMappingListComplianceDetailsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (cd DataResourceTagMappingListComplianceDetailsAttributes) InternalWithRef(ref terra.Reference) DataResourceTagMappingListComplianceDetailsAttributes
- func (cd DataResourceTagMappingListComplianceDetailsAttributes) KeysWithNoncompliantValues() terra.SetValue[terra.StringValue]
- func (cd DataResourceTagMappingListComplianceDetailsAttributes) NonCompliantKeys() terra.SetValue[terra.StringValue]
- type DataResourceTagMappingListComplianceDetailsState
- type DataResourceTagMappingListState
- type DataSource
- type DataTagFilter
- type DataTagFilterAttributes
- func (tf DataTagFilterAttributes) InternalRef() (terra.Reference, error)
- func (tf DataTagFilterAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (tf DataTagFilterAttributes) InternalWithRef(ref terra.Reference) DataTagFilterAttributes
- func (tf DataTagFilterAttributes) Key() terra.StringValue
- func (tf DataTagFilterAttributes) Values() terra.SetValue[terra.StringValue]
- type DataTagFilterState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataArgs ¶
type DataArgs struct { // ExcludeCompliantResources: bool, optional ExcludeCompliantResources terra.BoolValue `hcl:"exclude_compliant_resources,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // IncludeComplianceDetails: bool, optional IncludeComplianceDetails terra.BoolValue `hcl:"include_compliance_details,attr"` // ResourceArnList: set of string, optional ResourceArnList terra.SetValue[terra.StringValue] `hcl:"resource_arn_list,attr"` // ResourceTypeFilters: set of string, optional ResourceTypeFilters terra.SetValue[terra.StringValue] `hcl:"resource_type_filters,attr"` // TagFilter: min=0,max=50 TagFilter []DataTagFilter `hcl:"tag_filter,block" validate:"min=0,max=50"` }
DataArgs contains the configurations for aws_resourcegroupstaggingapi_resources.
type DataResourceTagMappingListAttributes ¶
type DataResourceTagMappingListAttributes struct {
// contains filtered or unexported fields
}
func (DataResourceTagMappingListAttributes) ComplianceDetails ¶
func (rtml DataResourceTagMappingListAttributes) ComplianceDetails() terra.ListValue[DataResourceTagMappingListComplianceDetailsAttributes]
func (DataResourceTagMappingListAttributes) InternalRef ¶
func (rtml DataResourceTagMappingListAttributes) InternalRef() (terra.Reference, error)
func (DataResourceTagMappingListAttributes) InternalTokens ¶
func (rtml DataResourceTagMappingListAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataResourceTagMappingListAttributes) InternalWithRef ¶
func (rtml DataResourceTagMappingListAttributes) InternalWithRef(ref terra.Reference) DataResourceTagMappingListAttributes
func (DataResourceTagMappingListAttributes) ResourceArn ¶
func (rtml DataResourceTagMappingListAttributes) ResourceArn() terra.StringValue
func (DataResourceTagMappingListAttributes) Tags ¶
func (rtml DataResourceTagMappingListAttributes) Tags() terra.MapValue[terra.StringValue]
type DataResourceTagMappingListComplianceDetailsAttributes ¶
type DataResourceTagMappingListComplianceDetailsAttributes struct {
// contains filtered or unexported fields
}
func (DataResourceTagMappingListComplianceDetailsAttributes) ComplianceStatus ¶
func (cd DataResourceTagMappingListComplianceDetailsAttributes) ComplianceStatus() terra.BoolValue
func (DataResourceTagMappingListComplianceDetailsAttributes) InternalRef ¶
func (cd DataResourceTagMappingListComplianceDetailsAttributes) InternalRef() (terra.Reference, error)
func (DataResourceTagMappingListComplianceDetailsAttributes) InternalTokens ¶
func (cd DataResourceTagMappingListComplianceDetailsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataResourceTagMappingListComplianceDetailsAttributes) InternalWithRef ¶
func (cd DataResourceTagMappingListComplianceDetailsAttributes) InternalWithRef(ref terra.Reference) DataResourceTagMappingListComplianceDetailsAttributes
func (DataResourceTagMappingListComplianceDetailsAttributes) KeysWithNoncompliantValues ¶
func (cd DataResourceTagMappingListComplianceDetailsAttributes) KeysWithNoncompliantValues() terra.SetValue[terra.StringValue]
func (DataResourceTagMappingListComplianceDetailsAttributes) NonCompliantKeys ¶
func (cd DataResourceTagMappingListComplianceDetailsAttributes) NonCompliantKeys() terra.SetValue[terra.StringValue]
type DataResourceTagMappingListState ¶
type DataResourceTagMappingListState struct { ResourceArn string `json:"resource_arn"` Tags map[string]string `json:"tags"` ComplianceDetails []DataResourceTagMappingListComplianceDetailsState `json:"compliance_details"` }
type DataSource ¶
DataSource represents the Terraform data resource aws_resourcegroupstaggingapi_resources.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (arr *DataSource) Attributes() dataAwsResourcegroupstaggingapiResourcesAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (arr *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (arr *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (arr *DataSource) LocalName() string
LocalName returns the local name for DataSource.
type DataTagFilter ¶
type DataTagFilter struct { // Key: string, required Key terra.StringValue `hcl:"key,attr" validate:"required"` // Values: set of string, optional Values terra.SetValue[terra.StringValue] `hcl:"values,attr"` }
type DataTagFilterAttributes ¶
type DataTagFilterAttributes struct {
// contains filtered or unexported fields
}
func (DataTagFilterAttributes) InternalRef ¶
func (tf DataTagFilterAttributes) InternalRef() (terra.Reference, error)
func (DataTagFilterAttributes) InternalTokens ¶
func (tf DataTagFilterAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataTagFilterAttributes) InternalWithRef ¶
func (tf DataTagFilterAttributes) InternalWithRef(ref terra.Reference) DataTagFilterAttributes
func (DataTagFilterAttributes) Key ¶
func (tf DataTagFilterAttributes) Key() terra.StringValue
func (DataTagFilterAttributes) Values ¶
func (tf DataTagFilterAttributes) Values() terra.SetValue[terra.StringValue]
type DataTagFilterState ¶
Click to show internal directories.
Click to hide internal directories.