aws_backup_framework

package
v0.0.0-...-4deecce Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 16, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

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"`
	// 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"`
	// Control: min=1
	Control []Control `hcl:"control,block" validate:"min=1"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for aws_backup_framework.

type Control

type Control struct {
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// ControlInputParameter: min=0
	InputParameter []ControlInputParameter `hcl:"input_parameter,block" validate:"min=0"`
	// ControlScope: optional
	Scope *ControlScope `hcl:"scope,block"`
}

type ControlAttributes

type ControlAttributes struct {
	// contains filtered or unexported fields
}

func (ControlAttributes) InputParameter

func (ControlAttributes) InternalRef

func (c ControlAttributes) InternalRef() (terra.Reference, error)

func (ControlAttributes) InternalTokens

func (c ControlAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ControlAttributes) InternalWithRef

func (c ControlAttributes) InternalWithRef(ref terra.Reference) ControlAttributes

func (ControlAttributes) Name

func (ControlAttributes) Scope

type ControlInputParameter

type ControlInputParameter struct {
	// Name: string, optional
	Name terra.StringValue `hcl:"name,attr"`
	// Value: string, optional
	Value terra.StringValue `hcl:"value,attr"`
}

type ControlInputParameterAttributes

type ControlInputParameterAttributes struct {
	// contains filtered or unexported fields
}

func (ControlInputParameterAttributes) InternalRef

func (ControlInputParameterAttributes) InternalTokens

func (ip ControlInputParameterAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ControlInputParameterAttributes) InternalWithRef

func (ControlInputParameterAttributes) Name

func (ControlInputParameterAttributes) Value

type ControlInputParameterState

type ControlInputParameterState struct {
	Name  string `json:"name"`
	Value string `json:"value"`
}

type ControlScope

type ControlScope struct {
	// ComplianceResourceIds: set of string, optional
	ComplianceResourceIds terra.SetValue[terra.StringValue] `hcl:"compliance_resource_ids,attr"`
	// ComplianceResourceTypes: set of string, optional
	ComplianceResourceTypes terra.SetValue[terra.StringValue] `hcl:"compliance_resource_types,attr"`
	// Tags: map of string, optional
	Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"`
}

type ControlScopeAttributes

type ControlScopeAttributes struct {
	// contains filtered or unexported fields
}

func (ControlScopeAttributes) ComplianceResourceIds

func (s ControlScopeAttributes) ComplianceResourceIds() terra.SetValue[terra.StringValue]

func (ControlScopeAttributes) ComplianceResourceTypes

func (s ControlScopeAttributes) ComplianceResourceTypes() terra.SetValue[terra.StringValue]

func (ControlScopeAttributes) InternalRef

func (s ControlScopeAttributes) InternalRef() (terra.Reference, error)

func (ControlScopeAttributes) InternalTokens

func (s ControlScopeAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ControlScopeAttributes) InternalWithRef

func (ControlScopeAttributes) Tags

type ControlScopeState

type ControlScopeState struct {
	ComplianceResourceIds   []string          `json:"compliance_resource_ids"`
	ComplianceResourceTypes []string          `json:"compliance_resource_types"`
	Tags                    map[string]string `json:"tags"`
}

type ControlState

type ControlState struct {
	Name           string                       `json:"name"`
	InputParameter []ControlInputParameterState `json:"input_parameter"`
	Scope          []ControlScopeState          `json:"scope"`
}

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"`
	// Tags: map of string, optional
	Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"`
}

DataArgs contains the configurations for aws_backup_framework.

type DataControlAttributes

type DataControlAttributes struct {
	// contains filtered or unexported fields
}

func (DataControlAttributes) InputParameter

func (DataControlAttributes) InternalRef

func (c DataControlAttributes) InternalRef() (terra.Reference, error)

func (DataControlAttributes) InternalTokens

func (c DataControlAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataControlAttributes) InternalWithRef

func (DataControlAttributes) Name

func (DataControlAttributes) Scope

type DataControlInputParameterAttributes

type DataControlInputParameterAttributes struct {
	// contains filtered or unexported fields
}

func (DataControlInputParameterAttributes) InternalRef

func (DataControlInputParameterAttributes) InternalTokens

func (DataControlInputParameterAttributes) InternalWithRef

func (DataControlInputParameterAttributes) Name

func (DataControlInputParameterAttributes) Value

type DataControlInputParameterState

type DataControlInputParameterState struct {
	Name  string `json:"name"`
	Value string `json:"value"`
}

type DataControlScopeAttributes

type DataControlScopeAttributes struct {
	// contains filtered or unexported fields
}

func (DataControlScopeAttributes) ComplianceResourceIds

func (s DataControlScopeAttributes) ComplianceResourceIds() terra.SetValue[terra.StringValue]

func (DataControlScopeAttributes) ComplianceResourceTypes

func (s DataControlScopeAttributes) ComplianceResourceTypes() terra.SetValue[terra.StringValue]

func (DataControlScopeAttributes) InternalRef

func (s DataControlScopeAttributes) InternalRef() (terra.Reference, error)

func (DataControlScopeAttributes) InternalTokens

func (s DataControlScopeAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataControlScopeAttributes) InternalWithRef

func (DataControlScopeAttributes) Tags

type DataControlScopeState

type DataControlScopeState struct {
	ComplianceResourceIds   []string          `json:"compliance_resource_ids"`
	ComplianceResourceTypes []string          `json:"compliance_resource_types"`
	Tags                    map[string]string `json:"tags"`
}

type DataControlState

type DataControlState struct {
	Name           string                           `json:"name"`
	InputParameter []DataControlInputParameterState `json:"input_parameter"`
	Scope          []DataControlScopeState          `json:"scope"`
}

type DataSource

type DataSource struct {
	Name string
	Args DataArgs
}

DataSource represents the Terraform data resource aws_backup_framework.

func Data

func Data(name string, args DataArgs) *DataSource

Data creates a new instance of DataSource.

func (*DataSource) Attributes

func (abf *DataSource) Attributes() dataAwsBackupFrameworkAttributes

Attributes returns the attributes for DataSource.

func (*DataSource) Configuration

func (abf *DataSource) Configuration() interface{}

Configuration returns the configuration (args) for DataSource.

func (*DataSource) DataSource

func (abf *DataSource) DataSource() string

DataSource returns the Terraform object type for DataSource.

func (*DataSource) LocalName

func (abf *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_backup_framework.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (abf *Resource) Attributes() awsBackupFrameworkAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

func (abf *Resource) Configuration() interface{}

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

func (abf *Resource) DependOn() terra.Reference

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

func (abf *Resource) Dependencies() terra.Dependencies

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

func (abf *Resource) ImportState(state io.Reader) error

ImportState imports the given attribute values into Resource's state.

func (*Resource) LifecycleManagement

func (abf *Resource) LifecycleManagement() *terra.Lifecycle

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (abf *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (abf *Resource) State() (*awsBackupFrameworkState, bool)

State returns the state and a bool indicating if Resource has state.

func (*Resource) StateMust

func (abf *Resource) StateMust() *awsBackupFrameworkState

StateMust returns the state for Resource. Panics if the state is nil.

func (*Resource) Type

func (abf *Resource) Type() string

Type returns the Terraform object type for Resource.

type Timeouts

type Timeouts struct {
	// Create: string, optional
	Create terra.StringValue `hcl:"create,attr"`
	// Delete: string, optional
	Delete terra.StringValue `hcl:"delete,attr"`
	// Update: string, optional
	Update terra.StringValue `hcl:"update,attr"`
}

type TimeoutsAttributes

type TimeoutsAttributes struct {
	// contains filtered or unexported fields
}

func (TimeoutsAttributes) Create

func (TimeoutsAttributes) Delete

func (TimeoutsAttributes) InternalRef

func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)

func (TimeoutsAttributes) InternalTokens

func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (TimeoutsAttributes) InternalWithRef

func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes

func (TimeoutsAttributes) Update

type TimeoutsState

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
	Update string `json:"update"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL