Documentation ¶
Index ¶
- type Args
- type DataArgs
- type DataIdentityInfoAttributes
- func (ii DataIdentityInfoAttributes) Email() terra.StringValue
- func (ii DataIdentityInfoAttributes) FirstName() terra.StringValue
- func (ii DataIdentityInfoAttributes) InternalRef() (terra.Reference, error)
- func (ii DataIdentityInfoAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ii DataIdentityInfoAttributes) InternalWithRef(ref terra.Reference) DataIdentityInfoAttributes
- func (ii DataIdentityInfoAttributes) LastName() terra.StringValue
- type DataIdentityInfoState
- type DataPhoneConfigAttributes
- func (pc DataPhoneConfigAttributes) AfterContactWorkTimeLimit() terra.NumberValue
- func (pc DataPhoneConfigAttributes) AutoAccept() terra.BoolValue
- func (pc DataPhoneConfigAttributes) DeskPhoneNumber() terra.StringValue
- func (pc DataPhoneConfigAttributes) InternalRef() (terra.Reference, error)
- func (pc DataPhoneConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (pc DataPhoneConfigAttributes) InternalWithRef(ref terra.Reference) DataPhoneConfigAttributes
- func (pc DataPhoneConfigAttributes) PhoneType() terra.StringValue
- type DataPhoneConfigState
- type DataSource
- type IdentityInfo
- type IdentityInfoAttributes
- func (ii IdentityInfoAttributes) Email() terra.StringValue
- func (ii IdentityInfoAttributes) FirstName() terra.StringValue
- func (ii IdentityInfoAttributes) InternalRef() (terra.Reference, error)
- func (ii IdentityInfoAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ii IdentityInfoAttributes) InternalWithRef(ref terra.Reference) IdentityInfoAttributes
- func (ii IdentityInfoAttributes) LastName() terra.StringValue
- type IdentityInfoState
- type PhoneConfig
- type PhoneConfigAttributes
- func (pc PhoneConfigAttributes) AfterContactWorkTimeLimit() terra.NumberValue
- func (pc PhoneConfigAttributes) AutoAccept() terra.BoolValue
- func (pc PhoneConfigAttributes) DeskPhoneNumber() terra.StringValue
- func (pc PhoneConfigAttributes) InternalRef() (terra.Reference, error)
- func (pc PhoneConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (pc PhoneConfigAttributes) InternalWithRef(ref terra.Reference) PhoneConfigAttributes
- func (pc PhoneConfigAttributes) PhoneType() terra.StringValue
- type PhoneConfigState
- type Resource
- func (acu *Resource) Attributes() awsConnectUserAttributes
- func (acu *Resource) Configuration() interface{}
- func (acu *Resource) DependOn() terra.Reference
- func (acu *Resource) Dependencies() terra.Dependencies
- func (acu *Resource) ImportState(state io.Reader) error
- func (acu *Resource) LifecycleManagement() *terra.Lifecycle
- func (acu *Resource) LocalName() string
- func (acu *Resource) State() (*awsConnectUserState, bool)
- func (acu *Resource) StateMust() *awsConnectUserState
- func (acu *Resource) Type() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // DirectoryUserId: string, optional DirectoryUserId terra.StringValue `hcl:"directory_user_id,attr"` // 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, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Password: string, optional Password terra.StringValue `hcl:"password,attr"` // RoutingProfileId: string, required RoutingProfileId terra.StringValue `hcl:"routing_profile_id,attr" validate:"required"` // SecurityProfileIds: set of string, required SecurityProfileIds terra.SetValue[terra.StringValue] `hcl:"security_profile_ids,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"` // IdentityInfo: optional IdentityInfo *IdentityInfo `hcl:"identity_info,block"` // PhoneConfig: required PhoneConfig *PhoneConfig `hcl:"phone_config,block" validate:"required"` }
Args contains the configurations for aws_connect_user.
type DataArgs ¶
type DataArgs struct { // 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"` // UserId: string, optional UserId terra.StringValue `hcl:"user_id,attr"` }
DataArgs contains the configurations for aws_connect_user.
type DataIdentityInfoAttributes ¶
type DataIdentityInfoAttributes struct {
// contains filtered or unexported fields
}
func (DataIdentityInfoAttributes) Email ¶
func (ii DataIdentityInfoAttributes) Email() terra.StringValue
func (DataIdentityInfoAttributes) FirstName ¶
func (ii DataIdentityInfoAttributes) FirstName() terra.StringValue
func (DataIdentityInfoAttributes) InternalRef ¶
func (ii DataIdentityInfoAttributes) InternalRef() (terra.Reference, error)
func (DataIdentityInfoAttributes) InternalTokens ¶
func (ii DataIdentityInfoAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataIdentityInfoAttributes) InternalWithRef ¶
func (ii DataIdentityInfoAttributes) InternalWithRef(ref terra.Reference) DataIdentityInfoAttributes
func (DataIdentityInfoAttributes) LastName ¶
func (ii DataIdentityInfoAttributes) LastName() terra.StringValue
type DataIdentityInfoState ¶
type DataPhoneConfigAttributes ¶
type DataPhoneConfigAttributes struct {
// contains filtered or unexported fields
}
func (DataPhoneConfigAttributes) AfterContactWorkTimeLimit ¶
func (pc DataPhoneConfigAttributes) AfterContactWorkTimeLimit() terra.NumberValue
func (DataPhoneConfigAttributes) AutoAccept ¶
func (pc DataPhoneConfigAttributes) AutoAccept() terra.BoolValue
func (DataPhoneConfigAttributes) DeskPhoneNumber ¶
func (pc DataPhoneConfigAttributes) DeskPhoneNumber() terra.StringValue
func (DataPhoneConfigAttributes) InternalRef ¶
func (pc DataPhoneConfigAttributes) InternalRef() (terra.Reference, error)
func (DataPhoneConfigAttributes) InternalTokens ¶
func (pc DataPhoneConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataPhoneConfigAttributes) InternalWithRef ¶
func (pc DataPhoneConfigAttributes) InternalWithRef(ref terra.Reference) DataPhoneConfigAttributes
func (DataPhoneConfigAttributes) PhoneType ¶
func (pc DataPhoneConfigAttributes) PhoneType() terra.StringValue
type DataPhoneConfigState ¶
type DataSource ¶
DataSource represents the Terraform data resource aws_connect_user.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (acu *DataSource) Attributes() dataAwsConnectUserAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (acu *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (acu *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (acu *DataSource) LocalName() string
LocalName returns the local name for DataSource.
type IdentityInfo ¶
type IdentityInfo struct { // Email: string, optional Email terra.StringValue `hcl:"email,attr"` // FirstName: string, optional FirstName terra.StringValue `hcl:"first_name,attr"` // LastName: string, optional LastName terra.StringValue `hcl:"last_name,attr"` }
type IdentityInfoAttributes ¶
type IdentityInfoAttributes struct {
// contains filtered or unexported fields
}
func (IdentityInfoAttributes) Email ¶
func (ii IdentityInfoAttributes) Email() terra.StringValue
func (IdentityInfoAttributes) FirstName ¶
func (ii IdentityInfoAttributes) FirstName() terra.StringValue
func (IdentityInfoAttributes) InternalRef ¶
func (ii IdentityInfoAttributes) InternalRef() (terra.Reference, error)
func (IdentityInfoAttributes) InternalTokens ¶
func (ii IdentityInfoAttributes) InternalTokens() (hclwrite.Tokens, error)
func (IdentityInfoAttributes) InternalWithRef ¶
func (ii IdentityInfoAttributes) InternalWithRef(ref terra.Reference) IdentityInfoAttributes
func (IdentityInfoAttributes) LastName ¶
func (ii IdentityInfoAttributes) LastName() terra.StringValue
type IdentityInfoState ¶
type PhoneConfig ¶
type PhoneConfig struct { // AfterContactWorkTimeLimit: number, optional AfterContactWorkTimeLimit terra.NumberValue `hcl:"after_contact_work_time_limit,attr"` // AutoAccept: bool, optional AutoAccept terra.BoolValue `hcl:"auto_accept,attr"` // DeskPhoneNumber: string, optional DeskPhoneNumber terra.StringValue `hcl:"desk_phone_number,attr"` // PhoneType: string, required PhoneType terra.StringValue `hcl:"phone_type,attr" validate:"required"` }
type PhoneConfigAttributes ¶
type PhoneConfigAttributes struct {
// contains filtered or unexported fields
}
func (PhoneConfigAttributes) AfterContactWorkTimeLimit ¶
func (pc PhoneConfigAttributes) AfterContactWorkTimeLimit() terra.NumberValue
func (PhoneConfigAttributes) AutoAccept ¶
func (pc PhoneConfigAttributes) AutoAccept() terra.BoolValue
func (PhoneConfigAttributes) DeskPhoneNumber ¶
func (pc PhoneConfigAttributes) DeskPhoneNumber() terra.StringValue
func (PhoneConfigAttributes) InternalRef ¶
func (pc PhoneConfigAttributes) InternalRef() (terra.Reference, error)
func (PhoneConfigAttributes) InternalTokens ¶
func (pc PhoneConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
func (PhoneConfigAttributes) InternalWithRef ¶
func (pc PhoneConfigAttributes) InternalWithRef(ref terra.Reference) PhoneConfigAttributes
func (PhoneConfigAttributes) PhoneType ¶
func (pc PhoneConfigAttributes) PhoneType() terra.StringValue
type PhoneConfigState ¶
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.
func (*Resource) Attributes ¶
func (acu *Resource) Attributes() awsConnectUserAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (acu *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (acu *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.