aws_connect_user_hierarchy_group

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 {
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// InstanceId: string, required
	InstanceId terra.StringValue `hcl:"instance_id,attr" validate:"required"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// ParentGroupId: string, optional
	ParentGroupId terra.StringValue `hcl:"parent_group_id,attr"`
	// 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"`
}

Args contains the configurations for aws_connect_user_hierarchy_group.

type DataArgs

type DataArgs struct {
	// HierarchyGroupId: string, optional
	HierarchyGroupId terra.StringValue `hcl:"hierarchy_group_id,attr"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// InstanceId: string, required
	InstanceId terra.StringValue `hcl:"instance_id,attr" validate:"required"`
	// Name: string, optional
	Name terra.StringValue `hcl:"name,attr"`
	// Tags: map of string, optional
	Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"`
}

DataArgs contains the configurations for aws_connect_user_hierarchy_group.

type DataHierarchyPathAttributes

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

func (DataHierarchyPathAttributes) InternalRef

func (hp DataHierarchyPathAttributes) InternalRef() (terra.Reference, error)

func (DataHierarchyPathAttributes) InternalTokens

func (hp DataHierarchyPathAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataHierarchyPathAttributes) InternalWithRef

func (DataHierarchyPathAttributes) LevelFive

func (DataHierarchyPathAttributes) LevelFour

func (DataHierarchyPathAttributes) LevelOne

func (DataHierarchyPathAttributes) LevelThree

func (DataHierarchyPathAttributes) LevelTwo

type DataHierarchyPathLevelFiveAttributes

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

func (DataHierarchyPathLevelFiveAttributes) Arn

func (DataHierarchyPathLevelFiveAttributes) Id

func (DataHierarchyPathLevelFiveAttributes) InternalRef

func (DataHierarchyPathLevelFiveAttributes) InternalTokens

func (DataHierarchyPathLevelFiveAttributes) InternalWithRef

func (DataHierarchyPathLevelFiveAttributes) Name

type DataHierarchyPathLevelFiveState

type DataHierarchyPathLevelFiveState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type DataHierarchyPathLevelFourAttributes

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

func (DataHierarchyPathLevelFourAttributes) Arn

func (DataHierarchyPathLevelFourAttributes) Id

func (DataHierarchyPathLevelFourAttributes) InternalRef

func (DataHierarchyPathLevelFourAttributes) InternalTokens

func (DataHierarchyPathLevelFourAttributes) InternalWithRef

func (DataHierarchyPathLevelFourAttributes) Name

type DataHierarchyPathLevelFourState

type DataHierarchyPathLevelFourState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type DataHierarchyPathLevelOneAttributes

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

func (DataHierarchyPathLevelOneAttributes) Arn

func (DataHierarchyPathLevelOneAttributes) Id

func (DataHierarchyPathLevelOneAttributes) InternalRef

func (DataHierarchyPathLevelOneAttributes) InternalTokens

func (DataHierarchyPathLevelOneAttributes) InternalWithRef

func (DataHierarchyPathLevelOneAttributes) Name

type DataHierarchyPathLevelOneState

type DataHierarchyPathLevelOneState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type DataHierarchyPathLevelThreeAttributes

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

func (DataHierarchyPathLevelThreeAttributes) Arn

func (DataHierarchyPathLevelThreeAttributes) Id

func (DataHierarchyPathLevelThreeAttributes) InternalRef

func (DataHierarchyPathLevelThreeAttributes) InternalTokens

func (DataHierarchyPathLevelThreeAttributes) InternalWithRef

func (DataHierarchyPathLevelThreeAttributes) Name

type DataHierarchyPathLevelThreeState

type DataHierarchyPathLevelThreeState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type DataHierarchyPathLevelTwoAttributes

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

func (DataHierarchyPathLevelTwoAttributes) Arn

func (DataHierarchyPathLevelTwoAttributes) Id

func (DataHierarchyPathLevelTwoAttributes) InternalRef

func (DataHierarchyPathLevelTwoAttributes) InternalTokens

func (DataHierarchyPathLevelTwoAttributes) InternalWithRef

func (DataHierarchyPathLevelTwoAttributes) Name

type DataHierarchyPathLevelTwoState

type DataHierarchyPathLevelTwoState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type DataHierarchyPathState

type DataHierarchyPathState struct {
	LevelFive  []DataHierarchyPathLevelFiveState  `json:"level_five"`
	LevelFour  []DataHierarchyPathLevelFourState  `json:"level_four"`
	LevelOne   []DataHierarchyPathLevelOneState   `json:"level_one"`
	LevelThree []DataHierarchyPathLevelThreeState `json:"level_three"`
	LevelTwo   []DataHierarchyPathLevelTwoState   `json:"level_two"`
}

type DataSource

type DataSource struct {
	Name string
	Args DataArgs
}

DataSource represents the Terraform data resource aws_connect_user_hierarchy_group.

func Data

func Data(name string, args DataArgs) *DataSource

Data creates a new instance of DataSource.

func (*DataSource) Attributes

func (acuhg *DataSource) Attributes() dataAwsConnectUserHierarchyGroupAttributes

Attributes returns the attributes for DataSource.

func (*DataSource) Configuration

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

Configuration returns the configuration (args) for DataSource.

func (*DataSource) DataSource

func (acuhg *DataSource) DataSource() string

DataSource returns the Terraform object type for DataSource.

func (*DataSource) LocalName

func (acuhg *DataSource) LocalName() string

LocalName returns the local name for DataSource.

type HierarchyPathAttributes

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

func (HierarchyPathAttributes) InternalRef

func (hp HierarchyPathAttributes) InternalRef() (terra.Reference, error)

func (HierarchyPathAttributes) InternalTokens

func (hp HierarchyPathAttributes) InternalTokens() (hclwrite.Tokens, error)

func (HierarchyPathAttributes) InternalWithRef

func (HierarchyPathAttributes) LevelFive

func (HierarchyPathAttributes) LevelFour

func (HierarchyPathAttributes) LevelOne

func (HierarchyPathAttributes) LevelThree

func (HierarchyPathAttributes) LevelTwo

type HierarchyPathLevelFiveAttributes

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

func (HierarchyPathLevelFiveAttributes) Arn

func (HierarchyPathLevelFiveAttributes) Id

func (HierarchyPathLevelFiveAttributes) InternalRef

func (HierarchyPathLevelFiveAttributes) InternalTokens

func (lf HierarchyPathLevelFiveAttributes) InternalTokens() (hclwrite.Tokens, error)

func (HierarchyPathLevelFiveAttributes) InternalWithRef

func (HierarchyPathLevelFiveAttributes) Name

type HierarchyPathLevelFiveState

type HierarchyPathLevelFiveState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type HierarchyPathLevelFourAttributes

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

func (HierarchyPathLevelFourAttributes) Arn

func (HierarchyPathLevelFourAttributes) Id

func (HierarchyPathLevelFourAttributes) InternalRef

func (HierarchyPathLevelFourAttributes) InternalTokens

func (lf HierarchyPathLevelFourAttributes) InternalTokens() (hclwrite.Tokens, error)

func (HierarchyPathLevelFourAttributes) InternalWithRef

func (HierarchyPathLevelFourAttributes) Name

type HierarchyPathLevelFourState

type HierarchyPathLevelFourState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type HierarchyPathLevelOneAttributes

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

func (HierarchyPathLevelOneAttributes) Arn

func (HierarchyPathLevelOneAttributes) Id

func (HierarchyPathLevelOneAttributes) InternalRef

func (HierarchyPathLevelOneAttributes) InternalTokens

func (lo HierarchyPathLevelOneAttributes) InternalTokens() (hclwrite.Tokens, error)

func (HierarchyPathLevelOneAttributes) InternalWithRef

func (HierarchyPathLevelOneAttributes) Name

type HierarchyPathLevelOneState

type HierarchyPathLevelOneState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type HierarchyPathLevelThreeAttributes

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

func (HierarchyPathLevelThreeAttributes) Arn

func (HierarchyPathLevelThreeAttributes) Id

func (HierarchyPathLevelThreeAttributes) InternalRef

func (HierarchyPathLevelThreeAttributes) InternalTokens

func (lt HierarchyPathLevelThreeAttributes) InternalTokens() (hclwrite.Tokens, error)

func (HierarchyPathLevelThreeAttributes) InternalWithRef

func (HierarchyPathLevelThreeAttributes) Name

type HierarchyPathLevelThreeState

type HierarchyPathLevelThreeState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type HierarchyPathLevelTwoAttributes

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

func (HierarchyPathLevelTwoAttributes) Arn

func (HierarchyPathLevelTwoAttributes) Id

func (HierarchyPathLevelTwoAttributes) InternalRef

func (HierarchyPathLevelTwoAttributes) InternalTokens

func (lt HierarchyPathLevelTwoAttributes) InternalTokens() (hclwrite.Tokens, error)

func (HierarchyPathLevelTwoAttributes) InternalWithRef

func (HierarchyPathLevelTwoAttributes) Name

type HierarchyPathLevelTwoState

type HierarchyPathLevelTwoState struct {
	Arn  string `json:"arn"`
	Id   string `json:"id"`
	Name string `json:"name"`
}

type HierarchyPathState

type HierarchyPathState struct {
	LevelFive  []HierarchyPathLevelFiveState  `json:"level_five"`
	LevelFour  []HierarchyPathLevelFourState  `json:"level_four"`
	LevelOne   []HierarchyPathLevelOneState   `json:"level_one"`
	LevelThree []HierarchyPathLevelThreeState `json:"level_three"`
	LevelTwo   []HierarchyPathLevelTwoState   `json:"level_two"`
}

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_connect_user_hierarchy_group.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (acuhg *Resource) Attributes() awsConnectUserHierarchyGroupAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

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

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

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

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

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

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

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

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

func (*Resource) LifecycleManagement

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

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (acuhg *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (acuhg *Resource) State() (*awsConnectUserHierarchyGroupState, bool)

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

func (*Resource) StateMust

func (acuhg *Resource) StateMust() *awsConnectUserHierarchyGroupState

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

func (*Resource) Type

func (acuhg *Resource) Type() string

Type returns the Terraform object type for Resource.

Jump to

Keyboard shortcuts

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