package types
import "github.com/aws/aws-sdk-go-v2/service/connect/types"
Index ¶
- type Channel
- type ChatMessage
- type Comparison
- type ContactFlowSummary
- type ContactFlowType
- type ContactNotFoundException
- func (e *ContactNotFoundException) Error() string
- func (e *ContactNotFoundException) ErrorCode() string
- func (e *ContactNotFoundException) ErrorFault() smithy.ErrorFault
- func (e *ContactNotFoundException) ErrorMessage() string
- type Credentials
- type CurrentMetric
- type CurrentMetricData
- type CurrentMetricName
- type CurrentMetricResult
- type DestinationNotAllowedException
- func (e *DestinationNotAllowedException) Error() string
- func (e *DestinationNotAllowedException) ErrorCode() string
- func (e *DestinationNotAllowedException) ErrorFault() smithy.ErrorFault
- func (e *DestinationNotAllowedException) ErrorMessage() string
- type Dimensions
- type DuplicateResourceException
- func (e *DuplicateResourceException) Error() string
- func (e *DuplicateResourceException) ErrorCode() string
- func (e *DuplicateResourceException) ErrorFault() smithy.ErrorFault
- func (e *DuplicateResourceException) ErrorMessage() string
- type Filters
- type Grouping
- type HierarchyGroup
- type HierarchyGroupSummary
- type HierarchyLevel
- type HierarchyPath
- type HierarchyStructure
- type HistoricalMetric
- type HistoricalMetricData
- type HistoricalMetricName
- type HistoricalMetricResult
- type HoursOfOperationSummary
- type InternalServiceException
- func (e *InternalServiceException) Error() string
- func (e *InternalServiceException) ErrorCode() string
- func (e *InternalServiceException) ErrorFault() smithy.ErrorFault
- func (e *InternalServiceException) ErrorMessage() string
- type InvalidParameterException
- func (e *InvalidParameterException) Error() string
- func (e *InvalidParameterException) ErrorCode() string
- func (e *InvalidParameterException) ErrorFault() smithy.ErrorFault
- func (e *InvalidParameterException) ErrorMessage() string
- type InvalidRequestException
- func (e *InvalidRequestException) Error() string
- func (e *InvalidRequestException) ErrorCode() string
- func (e *InvalidRequestException) ErrorFault() smithy.ErrorFault
- func (e *InvalidRequestException) ErrorMessage() string
- type LimitExceededException
- func (e *LimitExceededException) Error() string
- func (e *LimitExceededException) ErrorCode() string
- func (e *LimitExceededException) ErrorFault() smithy.ErrorFault
- func (e *LimitExceededException) ErrorMessage() string
- type OutboundContactNotPermittedException
- func (e *OutboundContactNotPermittedException) Error() string
- func (e *OutboundContactNotPermittedException) ErrorCode() string
- func (e *OutboundContactNotPermittedException) ErrorFault() smithy.ErrorFault
- func (e *OutboundContactNotPermittedException) ErrorMessage() string
- type ParticipantDetails
- type PhoneNumberCountryCode
- type PhoneNumberSummary
- type PhoneNumberType
- type PhoneType
- type QueueReference
- type QueueSummary
- type QueueType
- type ResourceNotFoundException
- func (e *ResourceNotFoundException) Error() string
- func (e *ResourceNotFoundException) ErrorCode() string
- func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
- func (e *ResourceNotFoundException) ErrorMessage() string
- type RoutingProfileSummary
- type SecurityProfileSummary
- type Statistic
- type Threshold
- type ThrottlingException
- func (e *ThrottlingException) Error() string
- func (e *ThrottlingException) ErrorCode() string
- func (e *ThrottlingException) ErrorFault() smithy.ErrorFault
- func (e *ThrottlingException) ErrorMessage() string
- type Unit
- type User
- type UserIdentityInfo
- type UserNotFoundException
- func (e *UserNotFoundException) Error() string
- func (e *UserNotFoundException) ErrorCode() string
- func (e *UserNotFoundException) ErrorFault() smithy.ErrorFault
- func (e *UserNotFoundException) ErrorMessage() string
- type UserPhoneConfig
- type UserSummary
- type VoiceRecordingConfiguration
- type VoiceRecordingTrack
Types ¶
type Channel ¶
type Channel string
Enum values for Channel
type ChatMessage ¶
type ChatMessage struct { // The content of the chat message. // // This member is required. Content *string // The type of the content. Supported types are text/plain. // // This member is required. ContentType *string }
A chat message.
type Comparison ¶
type Comparison string
const ( ComparisonLt Comparison = "LT" )
Enum values for Comparison
type ContactFlowSummary ¶
type ContactFlowSummary struct { // The name of the contact flow. Name *string // The type of contact flow. ContactFlowType ContactFlowType // The identifier of the contact flow. Id *string // The Amazon Resource Name (ARN) of the contact flow. Arn *string }
Contains summary information about a contact flow.
type ContactFlowType ¶
type ContactFlowType string
const ( ContactFlowTypeContact_flow ContactFlowType = "CONTACT_FLOW" ContactFlowTypeCustomer_queue ContactFlowType = "CUSTOMER_QUEUE" ContactFlowTypeCustomer_hold ContactFlowType = "CUSTOMER_HOLD" ContactFlowTypeCustomer_whisper ContactFlowType = "CUSTOMER_WHISPER" ContactFlowTypeAgent_hold ContactFlowType = "AGENT_HOLD" ContactFlowTypeAgent_whisper ContactFlowType = "AGENT_WHISPER" ContactFlowTypeOutbound_whisper ContactFlowType = "OUTBOUND_WHISPER" ContactFlowTypeAgent_transfer ContactFlowType = "AGENT_TRANSFER" ContactFlowTypeQueue_transfer ContactFlowType = "QUEUE_TRANSFER" )
Enum values for ContactFlowType
type ContactNotFoundException ¶
type ContactNotFoundException struct { Message *string }
The contact with the specified ID is not active or does not exist.
func (*ContactNotFoundException) Error ¶
func (e *ContactNotFoundException) Error() string
func (*ContactNotFoundException) ErrorCode ¶
func (e *ContactNotFoundException) ErrorCode() string
func (*ContactNotFoundException) ErrorFault ¶
func (e *ContactNotFoundException) ErrorFault() smithy.ErrorFault
func (*ContactNotFoundException) ErrorMessage ¶
func (e *ContactNotFoundException) ErrorMessage() string
type Credentials ¶
type Credentials struct { // Renews the expiration timer for a generated token. RefreshTokenExpiration *time.Time // A token generated with an expiration time for the session a user is logged in to // Amazon Connect. AccessTokenExpiration *time.Time // An access token generated for a federated user to access Amazon Connect. AccessToken *string // Renews a token generated for a user to access the Amazon Connect instance. RefreshToken *string }
Contains credentials to use for federation.
type CurrentMetric ¶
type CurrentMetric struct { // The unit for the metric. Unit Unit // The name of the metric. Name CurrentMetricName }
Contains information about a real-time metric. For a description of each metric, see Real-time Metrics Definitions (https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html) in the Amazon Connect Administrator Guide.
type CurrentMetricData ¶
type CurrentMetricData struct { // The value of the metric. Value *float64 // Information about the metric. Metric *CurrentMetric }
Contains the data for a real-time metric.
type CurrentMetricName ¶
type CurrentMetricName string
const ( CurrentMetricNameAgents_online CurrentMetricName = "AGENTS_ONLINE" CurrentMetricNameAgents_available CurrentMetricName = "AGENTS_AVAILABLE" CurrentMetricNameAgents_on_call CurrentMetricName = "AGENTS_ON_CALL" CurrentMetricNameAgents_non_productive CurrentMetricName = "AGENTS_NON_PRODUCTIVE" CurrentMetricNameAgents_after_contact_work CurrentMetricName = "AGENTS_AFTER_CONTACT_WORK" CurrentMetricNameAgents_error CurrentMetricName = "AGENTS_ERROR" CurrentMetricNameAgents_staffed CurrentMetricName = "AGENTS_STAFFED" CurrentMetricNameContacts_in_queue CurrentMetricName = "CONTACTS_IN_QUEUE" CurrentMetricNameOldest_contact_age CurrentMetricName = "OLDEST_CONTACT_AGE" CurrentMetricNameContacts_scheduled CurrentMetricName = "CONTACTS_SCHEDULED" CurrentMetricNameAgents_on_contact CurrentMetricName = "AGENTS_ON_CONTACT" CurrentMetricNameSlots_active CurrentMetricName = "SLOTS_ACTIVE" CurrentMetricNameSlots_available CurrentMetricName = "SLOTS_AVAILABLE" )
Enum values for CurrentMetricName
type CurrentMetricResult ¶
type CurrentMetricResult struct { // The dimensions for the metrics. Dimensions *Dimensions // The set of metrics. Collections []*CurrentMetricData }
Contains information about a set of real-time metrics.
type DestinationNotAllowedException ¶
type DestinationNotAllowedException struct { Message *string }
Outbound calls to the destination number are not allowed.
func (*DestinationNotAllowedException) Error ¶
func (e *DestinationNotAllowedException) Error() string
func (*DestinationNotAllowedException) ErrorCode ¶
func (e *DestinationNotAllowedException) ErrorCode() string
func (*DestinationNotAllowedException) ErrorFault ¶
func (e *DestinationNotAllowedException) ErrorFault() smithy.ErrorFault
func (*DestinationNotAllowedException) ErrorMessage ¶
func (e *DestinationNotAllowedException) ErrorMessage() string
type Dimensions ¶
type Dimensions struct { // The channel used for grouping and filters. Channel Channel // Information about the queue for which metrics are returned. Queue *QueueReference }
Contains information about the dimensions for a set of metrics.
type DuplicateResourceException ¶
type DuplicateResourceException struct { Message *string }
A resource with the specified name already exists.
func (*DuplicateResourceException) Error ¶
func (e *DuplicateResourceException) Error() string
func (*DuplicateResourceException) ErrorCode ¶
func (e *DuplicateResourceException) ErrorCode() string
func (*DuplicateResourceException) ErrorFault ¶
func (e *DuplicateResourceException) ErrorFault() smithy.ErrorFault
func (*DuplicateResourceException) ErrorMessage ¶
func (e *DuplicateResourceException) ErrorMessage() string
type Filters ¶
type Filters struct { // The channel to use to filter the metrics. Channels []Channel // The queues to use to filter the metrics. You can specify up to 100 queues per // request. Queues []*string }
Contains the filter to apply when retrieving metrics.
type Grouping ¶
type Grouping string
Enum values for Grouping
type HierarchyGroup ¶
type HierarchyGroup struct { // Information about the levels in the hierarchy group. HierarchyPath *HierarchyPath // The Amazon Resource Name (ARN) of the hierarchy group. Arn *string // The identifier of the level in the hierarchy group. LevelId *string // The name of the hierarchy group. Name *string // The identifier of the hierarchy group. Id *string }
Contains information about a hierarchy group.
type HierarchyGroupSummary ¶
type HierarchyGroupSummary struct { // The name of the hierarchy group. Name *string // The identifier of the hierarchy group. Id *string // The Amazon Resource Name (ARN) of the hierarchy group. Arn *string }
Contains summary information about a hierarchy group.
type HierarchyLevel ¶
type HierarchyLevel struct { // The name of the hierarchy level. Name *string // The Amazon Resource Name (ARN) of the hierarchy level. Arn *string // The identifier of the hierarchy level. Id *string }
Contains information about a hierarchy level.
type HierarchyPath ¶
type HierarchyPath struct { // Information about level two. LevelTwo *HierarchyGroupSummary // Information about level three. LevelThree *HierarchyGroupSummary // Information about level four. LevelFour *HierarchyGroupSummary // Information about level one. LevelOne *HierarchyGroupSummary // Information about level five. LevelFive *HierarchyGroupSummary }
Contains information about the levels of a hierarchy group.
type HierarchyStructure ¶
type HierarchyStructure struct { // Information about level five. LevelFive *HierarchyLevel // Information about level three. LevelThree *HierarchyLevel // Information about level two. LevelTwo *HierarchyLevel // Information about level four. LevelFour *HierarchyLevel // Information about level one. LevelOne *HierarchyLevel }
Contains information about a hierarchy structure.
type HistoricalMetric ¶
type HistoricalMetric struct { // The statistic for the metric. Statistic Statistic // The threshold for the metric, used with service level metrics. Threshold *Threshold // The name of the metric. Name HistoricalMetricName // The unit for the metric. Unit Unit }
Contains information about a historical metric. For a description of each metric, see Historical Metrics Definitions (https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html) in the Amazon Connect Administrator Guide.
type HistoricalMetricData ¶
type HistoricalMetricData struct { // The value of the metric. Value *float64 // Information about the metric. Metric *HistoricalMetric }
Contains the data for a historical metric.
type HistoricalMetricName ¶
type HistoricalMetricName string
const ( HistoricalMetricNameContacts_queued HistoricalMetricName = "CONTACTS_QUEUED" HistoricalMetricNameContacts_handled HistoricalMetricName = "CONTACTS_HANDLED" HistoricalMetricNameContacts_abandoned HistoricalMetricName = "CONTACTS_ABANDONED" HistoricalMetricNameContacts_consulted HistoricalMetricName = "CONTACTS_CONSULTED" HistoricalMetricNameContacts_agent_hung_up_first HistoricalMetricName = "CONTACTS_AGENT_HUNG_UP_FIRST" HistoricalMetricNameContacts_handled_incoming HistoricalMetricName = "CONTACTS_HANDLED_INCOMING" HistoricalMetricNameContacts_handled_outbound HistoricalMetricName = "CONTACTS_HANDLED_OUTBOUND" HistoricalMetricNameContacts_hold_abandons HistoricalMetricName = "CONTACTS_HOLD_ABANDONS" HistoricalMetricNameContacts_transferred_in HistoricalMetricName = "CONTACTS_TRANSFERRED_IN" HistoricalMetricNameContacts_transferred_out HistoricalMetricName = "CONTACTS_TRANSFERRED_OUT" HistoricalMetricNameContacts_transferred_in_from_queue HistoricalMetricName = "CONTACTS_TRANSFERRED_IN_FROM_QUEUE" HistoricalMetricNameContacts_transferred_out_from_queue HistoricalMetricName = "CONTACTS_TRANSFERRED_OUT_FROM_QUEUE" HistoricalMetricNameContacts_missed HistoricalMetricName = "CONTACTS_MISSED" HistoricalMetricNameCallback_contacts_handled HistoricalMetricName = "CALLBACK_CONTACTS_HANDLED" HistoricalMetricNameApi_contacts_handled HistoricalMetricName = "API_CONTACTS_HANDLED" HistoricalMetricNameOccupancy HistoricalMetricName = "OCCUPANCY" HistoricalMetricNameHandle_time HistoricalMetricName = "HANDLE_TIME" HistoricalMetricNameAfter_contact_work_time HistoricalMetricName = "AFTER_CONTACT_WORK_TIME" HistoricalMetricNameQueued_time HistoricalMetricName = "QUEUED_TIME" HistoricalMetricNameAbandon_time HistoricalMetricName = "ABANDON_TIME" HistoricalMetricNameQueue_answer_time HistoricalMetricName = "QUEUE_ANSWER_TIME" HistoricalMetricNameHold_time HistoricalMetricName = "HOLD_TIME" HistoricalMetricNameInteraction_time HistoricalMetricName = "INTERACTION_TIME" HistoricalMetricNameInteraction_and_hold_time HistoricalMetricName = "INTERACTION_AND_HOLD_TIME" HistoricalMetricNameService_level HistoricalMetricName = "SERVICE_LEVEL" )
Enum values for HistoricalMetricName
type HistoricalMetricResult ¶
type HistoricalMetricResult struct { // The set of metrics. Collections []*HistoricalMetricData // The dimension for the metrics. Dimensions *Dimensions }
Contains information about the historical metrics retrieved.
type HoursOfOperationSummary ¶
type HoursOfOperationSummary struct { // The Amazon Resource Name (ARN) of the hours of operation. Arn *string // The identifier of the hours of operation. Id *string // The name of the hours of operation. Name *string }
Contains summary information about hours of operation for a contact center.
type InternalServiceException ¶
type InternalServiceException struct { Message *string }
Request processing failed due to an error or failure with the service.
func (*InternalServiceException) Error ¶
func (e *InternalServiceException) Error() string
func (*InternalServiceException) ErrorCode ¶
func (e *InternalServiceException) ErrorCode() string
func (*InternalServiceException) ErrorFault ¶
func (e *InternalServiceException) ErrorFault() smithy.ErrorFault
func (*InternalServiceException) ErrorMessage ¶
func (e *InternalServiceException) ErrorMessage() string
type InvalidParameterException ¶
type InvalidParameterException struct { Message *string }
One or more of the specified parameters are not valid.
func (*InvalidParameterException) Error ¶
func (e *InvalidParameterException) Error() string
func (*InvalidParameterException) ErrorCode ¶
func (e *InvalidParameterException) ErrorCode() string
func (*InvalidParameterException) ErrorFault ¶
func (e *InvalidParameterException) ErrorFault() smithy.ErrorFault
func (*InvalidParameterException) ErrorMessage ¶
func (e *InvalidParameterException) ErrorMessage() string
type InvalidRequestException ¶
type InvalidRequestException struct { Message *string }
The request is not valid.
func (*InvalidRequestException) Error ¶
func (e *InvalidRequestException) Error() string
func (*InvalidRequestException) ErrorCode ¶
func (e *InvalidRequestException) ErrorCode() string
func (*InvalidRequestException) ErrorFault ¶
func (e *InvalidRequestException) ErrorFault() smithy.ErrorFault
func (*InvalidRequestException) ErrorMessage ¶
func (e *InvalidRequestException) ErrorMessage() string
type LimitExceededException ¶
type LimitExceededException struct { Message *string }
The allowed limit for the resource has been exceeded.
func (*LimitExceededException) Error ¶
func (e *LimitExceededException) Error() string
func (*LimitExceededException) ErrorCode ¶
func (e *LimitExceededException) ErrorCode() string
func (*LimitExceededException) ErrorFault ¶
func (e *LimitExceededException) ErrorFault() smithy.ErrorFault
func (*LimitExceededException) ErrorMessage ¶
func (e *LimitExceededException) ErrorMessage() string
type OutboundContactNotPermittedException ¶
type OutboundContactNotPermittedException struct { Message *string }
The contact is not permitted.
func (*OutboundContactNotPermittedException) Error ¶
func (e *OutboundContactNotPermittedException) Error() string
func (*OutboundContactNotPermittedException) ErrorCode ¶
func (e *OutboundContactNotPermittedException) ErrorCode() string
func (*OutboundContactNotPermittedException) ErrorFault ¶
func (e *OutboundContactNotPermittedException) ErrorFault() smithy.ErrorFault
func (*OutboundContactNotPermittedException) ErrorMessage ¶
func (e *OutboundContactNotPermittedException) ErrorMessage() string
type ParticipantDetails ¶
type ParticipantDetails struct { // Display name of the participant. // // This member is required. DisplayName *string }
The customer's details.
type PhoneNumberCountryCode ¶
type PhoneNumberCountryCode string
const ( PhoneNumberCountryCodeAf PhoneNumberCountryCode = "AF" PhoneNumberCountryCodeAl PhoneNumberCountryCode = "AL" PhoneNumberCountryCodeDz PhoneNumberCountryCode = "DZ" PhoneNumberCountryCodeAs PhoneNumberCountryCode = "AS" PhoneNumberCountryCodeAd PhoneNumberCountryCode = "AD" PhoneNumberCountryCodeAo PhoneNumberCountryCode = "AO" PhoneNumberCountryCodeAi PhoneNumberCountryCode = "AI" PhoneNumberCountryCodeAq PhoneNumberCountryCode = "AQ" PhoneNumberCountryCodeAg PhoneNumberCountryCode = "AG" PhoneNumberCountryCodeAr PhoneNumberCountryCode = "AR" PhoneNumberCountryCodeAm PhoneNumberCountryCode = "AM" PhoneNumberCountryCodeAw PhoneNumberCountryCode = "AW" PhoneNumberCountryCodeAu PhoneNumberCountryCode = "AU" PhoneNumberCountryCodeAt PhoneNumberCountryCode = "AT" PhoneNumberCountryCodeAz PhoneNumberCountryCode = "AZ" PhoneNumberCountryCodeBs PhoneNumberCountryCode = "BS" PhoneNumberCountryCodeBh PhoneNumberCountryCode = "BH" PhoneNumberCountryCodeBd PhoneNumberCountryCode = "BD" PhoneNumberCountryCodeBb PhoneNumberCountryCode = "BB" PhoneNumberCountryCodeBy PhoneNumberCountryCode = "BY" PhoneNumberCountryCodeBe PhoneNumberCountryCode = "BE" PhoneNumberCountryCodeBz PhoneNumberCountryCode = "BZ" PhoneNumberCountryCodeBj PhoneNumberCountryCode = "BJ" PhoneNumberCountryCodeBm PhoneNumberCountryCode = "BM" PhoneNumberCountryCodeBt PhoneNumberCountryCode = "BT" PhoneNumberCountryCodeBo PhoneNumberCountryCode = "BO" PhoneNumberCountryCodeBa PhoneNumberCountryCode = "BA" PhoneNumberCountryCodeBw PhoneNumberCountryCode = "BW" PhoneNumberCountryCodeBr PhoneNumberCountryCode = "BR" PhoneNumberCountryCodeIo PhoneNumberCountryCode = "IO" PhoneNumberCountryCodeVg PhoneNumberCountryCode = "VG" PhoneNumberCountryCodeBn PhoneNumberCountryCode = "BN" PhoneNumberCountryCodeBg PhoneNumberCountryCode = "BG" PhoneNumberCountryCodeBf PhoneNumberCountryCode = "BF" PhoneNumberCountryCodeBi PhoneNumberCountryCode = "BI" PhoneNumberCountryCodeKh PhoneNumberCountryCode = "KH" PhoneNumberCountryCodeCm PhoneNumberCountryCode = "CM" PhoneNumberCountryCodeCa PhoneNumberCountryCode = "CA" PhoneNumberCountryCodeCv PhoneNumberCountryCode = "CV" PhoneNumberCountryCodeKy PhoneNumberCountryCode = "KY" PhoneNumberCountryCodeCf PhoneNumberCountryCode = "CF" PhoneNumberCountryCodeTd PhoneNumberCountryCode = "TD" PhoneNumberCountryCodeCl PhoneNumberCountryCode = "CL" PhoneNumberCountryCodeCn PhoneNumberCountryCode = "CN" PhoneNumberCountryCodeCx PhoneNumberCountryCode = "CX" PhoneNumberCountryCodeCc PhoneNumberCountryCode = "CC" PhoneNumberCountryCodeCo PhoneNumberCountryCode = "CO" PhoneNumberCountryCodeKm PhoneNumberCountryCode = "KM" PhoneNumberCountryCodeCk PhoneNumberCountryCode = "CK" PhoneNumberCountryCodeCr PhoneNumberCountryCode = "CR" PhoneNumberCountryCodeHr PhoneNumberCountryCode = "HR" PhoneNumberCountryCodeCu PhoneNumberCountryCode = "CU" PhoneNumberCountryCodeCw PhoneNumberCountryCode = "CW" PhoneNumberCountryCodeCy PhoneNumberCountryCode = "CY" PhoneNumberCountryCodeCz PhoneNumberCountryCode = "CZ" PhoneNumberCountryCodeCd PhoneNumberCountryCode = "CD" PhoneNumberCountryCodeDk PhoneNumberCountryCode = "DK" PhoneNumberCountryCodeDj PhoneNumberCountryCode = "DJ" PhoneNumberCountryCodeDm PhoneNumberCountryCode = "DM" PhoneNumberCountryCodeDo PhoneNumberCountryCode = "DO" PhoneNumberCountryCodeTl PhoneNumberCountryCode = "TL" PhoneNumberCountryCodeEc PhoneNumberCountryCode = "EC" PhoneNumberCountryCodeEg PhoneNumberCountryCode = "EG" PhoneNumberCountryCodeSv PhoneNumberCountryCode = "SV" PhoneNumberCountryCodeGq PhoneNumberCountryCode = "GQ" PhoneNumberCountryCodeEr PhoneNumberCountryCode = "ER" PhoneNumberCountryCodeEe PhoneNumberCountryCode = "EE" PhoneNumberCountryCodeEt PhoneNumberCountryCode = "ET" PhoneNumberCountryCodeFk PhoneNumberCountryCode = "FK" PhoneNumberCountryCodeFo PhoneNumberCountryCode = "FO" PhoneNumberCountryCodeFj PhoneNumberCountryCode = "FJ" PhoneNumberCountryCodeFi PhoneNumberCountryCode = "FI" PhoneNumberCountryCodeFr PhoneNumberCountryCode = "FR" PhoneNumberCountryCodePf PhoneNumberCountryCode = "PF" PhoneNumberCountryCodeGa PhoneNumberCountryCode = "GA" PhoneNumberCountryCodeGm PhoneNumberCountryCode = "GM" PhoneNumberCountryCodeGe PhoneNumberCountryCode = "GE" PhoneNumberCountryCodeDe PhoneNumberCountryCode = "DE" PhoneNumberCountryCodeGh PhoneNumberCountryCode = "GH" PhoneNumberCountryCodeGi PhoneNumberCountryCode = "GI" PhoneNumberCountryCodeGr PhoneNumberCountryCode = "GR" PhoneNumberCountryCodeGl PhoneNumberCountryCode = "GL" PhoneNumberCountryCodeGd PhoneNumberCountryCode = "GD" PhoneNumberCountryCodeGu PhoneNumberCountryCode = "GU" PhoneNumberCountryCodeGt PhoneNumberCountryCode = "GT" PhoneNumberCountryCodeGg PhoneNumberCountryCode = "GG" PhoneNumberCountryCodeGn PhoneNumberCountryCode = "GN" PhoneNumberCountryCodeGw PhoneNumberCountryCode = "GW" PhoneNumberCountryCodeGy PhoneNumberCountryCode = "GY" PhoneNumberCountryCodeHt PhoneNumberCountryCode = "HT" PhoneNumberCountryCodeHn PhoneNumberCountryCode = "HN" PhoneNumberCountryCodeHk PhoneNumberCountryCode = "HK" PhoneNumberCountryCodeHu PhoneNumberCountryCode = "HU" PhoneNumberCountryCodeIs PhoneNumberCountryCode = "IS" PhoneNumberCountryCodeIn PhoneNumberCountryCode = "IN" PhoneNumberCountryCodeId PhoneNumberCountryCode = "ID" PhoneNumberCountryCodeIr PhoneNumberCountryCode = "IR" PhoneNumberCountryCodeIq PhoneNumberCountryCode = "IQ" PhoneNumberCountryCodeIe PhoneNumberCountryCode = "IE" PhoneNumberCountryCodeIm PhoneNumberCountryCode = "IM" PhoneNumberCountryCodeIl PhoneNumberCountryCode = "IL" PhoneNumberCountryCodeIt PhoneNumberCountryCode = "IT" PhoneNumberCountryCodeCi PhoneNumberCountryCode = "CI" PhoneNumberCountryCodeJm PhoneNumberCountryCode = "JM" PhoneNumberCountryCodeJp PhoneNumberCountryCode = "JP" PhoneNumberCountryCodeJe PhoneNumberCountryCode = "JE" PhoneNumberCountryCodeJo PhoneNumberCountryCode = "JO" PhoneNumberCountryCodeKz PhoneNumberCountryCode = "KZ" PhoneNumberCountryCodeKe PhoneNumberCountryCode = "KE" PhoneNumberCountryCodeKi PhoneNumberCountryCode = "KI" PhoneNumberCountryCodeKw PhoneNumberCountryCode = "KW" PhoneNumberCountryCodeKg PhoneNumberCountryCode = "KG" PhoneNumberCountryCodeLa PhoneNumberCountryCode = "LA" PhoneNumberCountryCodeLv PhoneNumberCountryCode = "LV" PhoneNumberCountryCodeLb PhoneNumberCountryCode = "LB" PhoneNumberCountryCodeLs PhoneNumberCountryCode = "LS" PhoneNumberCountryCodeLr PhoneNumberCountryCode = "LR" PhoneNumberCountryCodeLy PhoneNumberCountryCode = "LY" PhoneNumberCountryCodeLi PhoneNumberCountryCode = "LI" PhoneNumberCountryCodeLt PhoneNumberCountryCode = "LT" PhoneNumberCountryCodeLu PhoneNumberCountryCode = "LU" PhoneNumberCountryCodeMo PhoneNumberCountryCode = "MO" PhoneNumberCountryCodeMk PhoneNumberCountryCode = "MK" PhoneNumberCountryCodeMg PhoneNumberCountryCode = "MG" PhoneNumberCountryCodeMw PhoneNumberCountryCode = "MW" PhoneNumberCountryCodeMy PhoneNumberCountryCode = "MY" PhoneNumberCountryCodeMv PhoneNumberCountryCode = "MV" PhoneNumberCountryCodeMl PhoneNumberCountryCode = "ML" PhoneNumberCountryCodeMt PhoneNumberCountryCode = "MT" PhoneNumberCountryCodeMh PhoneNumberCountryCode = "MH" PhoneNumberCountryCodeMr PhoneNumberCountryCode = "MR" PhoneNumberCountryCodeMu PhoneNumberCountryCode = "MU" PhoneNumberCountryCodeYt PhoneNumberCountryCode = "YT" PhoneNumberCountryCodeMx PhoneNumberCountryCode = "MX" PhoneNumberCountryCodeFm PhoneNumberCountryCode = "FM" PhoneNumberCountryCodeMd PhoneNumberCountryCode = "MD" PhoneNumberCountryCodeMc PhoneNumberCountryCode = "MC" PhoneNumberCountryCodeMn PhoneNumberCountryCode = "MN" PhoneNumberCountryCodeMe PhoneNumberCountryCode = "ME" PhoneNumberCountryCodeMs PhoneNumberCountryCode = "MS" PhoneNumberCountryCodeMa PhoneNumberCountryCode = "MA" PhoneNumberCountryCodeMz PhoneNumberCountryCode = "MZ" PhoneNumberCountryCodeMm PhoneNumberCountryCode = "MM" PhoneNumberCountryCodeNa PhoneNumberCountryCode = "NA" PhoneNumberCountryCodeNr PhoneNumberCountryCode = "NR" PhoneNumberCountryCodeNp PhoneNumberCountryCode = "NP" PhoneNumberCountryCodeNl PhoneNumberCountryCode = "NL" PhoneNumberCountryCodeAn PhoneNumberCountryCode = "AN" PhoneNumberCountryCodeNc PhoneNumberCountryCode = "NC" PhoneNumberCountryCodeNz PhoneNumberCountryCode = "NZ" PhoneNumberCountryCodeNi PhoneNumberCountryCode = "NI" PhoneNumberCountryCodeNe PhoneNumberCountryCode = "NE" PhoneNumberCountryCodeNg PhoneNumberCountryCode = "NG" PhoneNumberCountryCodeNu PhoneNumberCountryCode = "NU" PhoneNumberCountryCodeKp PhoneNumberCountryCode = "KP" PhoneNumberCountryCodeMp PhoneNumberCountryCode = "MP" PhoneNumberCountryCodeNo PhoneNumberCountryCode = "NO" PhoneNumberCountryCodeOm PhoneNumberCountryCode = "OM" PhoneNumberCountryCodePk PhoneNumberCountryCode = "PK" PhoneNumberCountryCodePw PhoneNumberCountryCode = "PW" PhoneNumberCountryCodePa PhoneNumberCountryCode = "PA" PhoneNumberCountryCodePg PhoneNumberCountryCode = "PG" PhoneNumberCountryCodePy PhoneNumberCountryCode = "PY" PhoneNumberCountryCodePe PhoneNumberCountryCode = "PE" PhoneNumberCountryCodePh PhoneNumberCountryCode = "PH" PhoneNumberCountryCodePn PhoneNumberCountryCode = "PN" PhoneNumberCountryCodePl PhoneNumberCountryCode = "PL" PhoneNumberCountryCodePt PhoneNumberCountryCode = "PT" PhoneNumberCountryCodePr PhoneNumberCountryCode = "PR" PhoneNumberCountryCodeQa PhoneNumberCountryCode = "QA" PhoneNumberCountryCodeCg PhoneNumberCountryCode = "CG" PhoneNumberCountryCodeRe PhoneNumberCountryCode = "RE" PhoneNumberCountryCodeRo PhoneNumberCountryCode = "RO" PhoneNumberCountryCodeRu PhoneNumberCountryCode = "RU" PhoneNumberCountryCodeRw PhoneNumberCountryCode = "RW" PhoneNumberCountryCodeBl PhoneNumberCountryCode = "BL" PhoneNumberCountryCodeSh PhoneNumberCountryCode = "SH" PhoneNumberCountryCodeKn PhoneNumberCountryCode = "KN" PhoneNumberCountryCodeLc PhoneNumberCountryCode = "LC" PhoneNumberCountryCodeMf PhoneNumberCountryCode = "MF" PhoneNumberCountryCodePm PhoneNumberCountryCode = "PM" PhoneNumberCountryCodeVc PhoneNumberCountryCode = "VC" PhoneNumberCountryCodeWs PhoneNumberCountryCode = "WS" PhoneNumberCountryCodeSm PhoneNumberCountryCode = "SM" PhoneNumberCountryCodeSt PhoneNumberCountryCode = "ST" PhoneNumberCountryCodeSa PhoneNumberCountryCode = "SA" PhoneNumberCountryCodeSn PhoneNumberCountryCode = "SN" PhoneNumberCountryCodeRs PhoneNumberCountryCode = "RS" PhoneNumberCountryCodeSc PhoneNumberCountryCode = "SC" PhoneNumberCountryCodeSl PhoneNumberCountryCode = "SL" PhoneNumberCountryCodeSg PhoneNumberCountryCode = "SG" PhoneNumberCountryCodeSx PhoneNumberCountryCode = "SX" PhoneNumberCountryCodeSk PhoneNumberCountryCode = "SK" PhoneNumberCountryCodeSi PhoneNumberCountryCode = "SI" PhoneNumberCountryCodeSb PhoneNumberCountryCode = "SB" PhoneNumberCountryCodeSo PhoneNumberCountryCode = "SO" PhoneNumberCountryCodeZa PhoneNumberCountryCode = "ZA" PhoneNumberCountryCodeKr PhoneNumberCountryCode = "KR" PhoneNumberCountryCodeEs PhoneNumberCountryCode = "ES" PhoneNumberCountryCodeLk PhoneNumberCountryCode = "LK" PhoneNumberCountryCodeSd PhoneNumberCountryCode = "SD" PhoneNumberCountryCodeSr PhoneNumberCountryCode = "SR" PhoneNumberCountryCodeSj PhoneNumberCountryCode = "SJ" PhoneNumberCountryCodeSz PhoneNumberCountryCode = "SZ" PhoneNumberCountryCodeSe PhoneNumberCountryCode = "SE" PhoneNumberCountryCodeCh PhoneNumberCountryCode = "CH" PhoneNumberCountryCodeSy PhoneNumberCountryCode = "SY" PhoneNumberCountryCodeTw PhoneNumberCountryCode = "TW" PhoneNumberCountryCodeTj PhoneNumberCountryCode = "TJ" PhoneNumberCountryCodeTz PhoneNumberCountryCode = "TZ" PhoneNumberCountryCodeTh PhoneNumberCountryCode = "TH" PhoneNumberCountryCodeTg PhoneNumberCountryCode = "TG" PhoneNumberCountryCodeTk PhoneNumberCountryCode = "TK" PhoneNumberCountryCodeTo PhoneNumberCountryCode = "TO" PhoneNumberCountryCodeTt PhoneNumberCountryCode = "TT" PhoneNumberCountryCodeTn PhoneNumberCountryCode = "TN" PhoneNumberCountryCodeTr PhoneNumberCountryCode = "TR" PhoneNumberCountryCodeTm PhoneNumberCountryCode = "TM" PhoneNumberCountryCodeTc PhoneNumberCountryCode = "TC" PhoneNumberCountryCodeTv PhoneNumberCountryCode = "TV" PhoneNumberCountryCodeVi PhoneNumberCountryCode = "VI" PhoneNumberCountryCodeUg PhoneNumberCountryCode = "UG" PhoneNumberCountryCodeUa PhoneNumberCountryCode = "UA" PhoneNumberCountryCodeAe PhoneNumberCountryCode = "AE" PhoneNumberCountryCodeGb PhoneNumberCountryCode = "GB" PhoneNumberCountryCodeUs PhoneNumberCountryCode = "US" PhoneNumberCountryCodeUy PhoneNumberCountryCode = "UY" PhoneNumberCountryCodeUz PhoneNumberCountryCode = "UZ" PhoneNumberCountryCodeVu PhoneNumberCountryCode = "VU" PhoneNumberCountryCodeVa PhoneNumberCountryCode = "VA" PhoneNumberCountryCodeVe PhoneNumberCountryCode = "VE" PhoneNumberCountryCodeVn PhoneNumberCountryCode = "VN" PhoneNumberCountryCodeWf PhoneNumberCountryCode = "WF" PhoneNumberCountryCodeEh PhoneNumberCountryCode = "EH" PhoneNumberCountryCodeYe PhoneNumberCountryCode = "YE" PhoneNumberCountryCodeZm PhoneNumberCountryCode = "ZM" PhoneNumberCountryCodeZw PhoneNumberCountryCode = "ZW" )
Enum values for PhoneNumberCountryCode
type PhoneNumberSummary ¶
type PhoneNumberSummary struct { // The phone number. PhoneNumber *string // The Amazon Resource Name (ARN) of the phone number. Arn *string // The type of phone number. PhoneNumberType PhoneNumberType // The identifier of the phone number. Id *string // The ISO country code. PhoneNumberCountryCode PhoneNumberCountryCode }
Contains summary information about a phone number for a contact center.
type PhoneNumberType ¶
type PhoneNumberType string
const ( PhoneNumberTypeToll_free PhoneNumberType = "TOLL_FREE" PhoneNumberTypeDid PhoneNumberType = "DID" )
Enum values for PhoneNumberType
type PhoneType ¶
type PhoneType string
Enum values for PhoneType
type QueueReference ¶
type QueueReference struct { // The Amazon Resource Name (ARN) of the queue. Arn *string // The identifier of the queue. Id *string }
Contains information about a queue resource for which metrics are returned.
type QueueSummary ¶
type QueueSummary struct { // The name of the queue. Name *string // The type of queue. QueueType QueueType // The Amazon Resource Name (ARN) of the queue. Arn *string // The identifier of the queue. Id *string }
Contains summary information about a queue.
type QueueType ¶
type QueueType string
Enum values for QueueType
type ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string }
The specified resource was not found.
func (*ResourceNotFoundException) Error ¶
func (e *ResourceNotFoundException) Error() string
func (*ResourceNotFoundException) ErrorCode ¶
func (e *ResourceNotFoundException) ErrorCode() string
func (*ResourceNotFoundException) ErrorFault ¶
func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
func (*ResourceNotFoundException) ErrorMessage ¶
func (e *ResourceNotFoundException) ErrorMessage() string
type RoutingProfileSummary ¶
type RoutingProfileSummary struct { // The name of the routing profile. Name *string // The identifier of the routing profile. Id *string // The Amazon Resource Name (ARN) of the routing profile. Arn *string }
Contains summary information about a routing profile.
type SecurityProfileSummary ¶
type SecurityProfileSummary struct { // The identifier of the security profile. Id *string // The name of the security profile. Name *string // The Amazon Resource Name (ARN) of the security profile. Arn *string }
Contains information about a security profile.
type Statistic ¶
type Statistic string
const ( StatisticSum Statistic = "SUM" StatisticMax Statistic = "MAX" StatisticAvg Statistic = "AVG" )
Enum values for Statistic
type Threshold ¶
type Threshold struct { // The type of comparison. Only "less than" (LT) comparisons are supported. Comparison Comparison // The threshold value to compare. ThresholdValue *float64 }
Contains information about the threshold for service level metrics.
type ThrottlingException ¶
type ThrottlingException struct { Message *string }
The throttling limit has been exceeded.
func (*ThrottlingException) Error ¶
func (e *ThrottlingException) Error() string
func (*ThrottlingException) ErrorCode ¶
func (e *ThrottlingException) ErrorCode() string
func (*ThrottlingException) ErrorFault ¶
func (e *ThrottlingException) ErrorFault() smithy.ErrorFault
func (*ThrottlingException) ErrorMessage ¶
func (e *ThrottlingException) ErrorMessage() string
type Unit ¶
type Unit string
Enum values for Unit
type User ¶
type User struct { // The identifier of the user account in the directory used for identity // management. DirectoryUserId *string // Information about the user identity. IdentityInfo *UserIdentityInfo // The identifiers of the security profiles for the user. SecurityProfileIds []*string // The identifier of the hierarchy group for the user. HierarchyGroupId *string // Information about the phone configuration for the user. PhoneConfig *UserPhoneConfig // The tags. Tags map[string]*string // The user name assigned to the user account. Username *string // The identifier of the routing profile for the user. RoutingProfileId *string // The Amazon Resource Name (ARN) of the user account. Arn *string // The identifier of the user account. Id *string }
Contains information about a user account for a Amazon Connect instance.
type UserIdentityInfo ¶
type UserIdentityInfo struct { // The first name. This is required if you are using Amazon Connect or SAML for // identity management. FirstName *string // The last name. This is required if you are using Amazon Connect or SAML for // identity management. LastName *string // The email address. If you are using SAML for identity management and include // this parameter, an error is returned. Email *string }
Contains information about the identity of a user.
type UserNotFoundException ¶
type UserNotFoundException struct { Message *string }
No user with the specified credentials was found in the Amazon Connect instance.
func (*UserNotFoundException) Error ¶
func (e *UserNotFoundException) Error() string
func (*UserNotFoundException) ErrorCode ¶
func (e *UserNotFoundException) ErrorCode() string
func (*UserNotFoundException) ErrorFault ¶
func (e *UserNotFoundException) ErrorFault() smithy.ErrorFault
func (*UserNotFoundException) ErrorMessage ¶
func (e *UserNotFoundException) ErrorMessage() string
type UserPhoneConfig ¶
type UserPhoneConfig struct { // The Auto accept setting. AutoAccept *bool // The phone type. // // This member is required. PhoneType PhoneType // The After Call Work (ACW) timeout setting, in seconds. AfterContactWorkTimeLimit *int32 // The phone number for the user's desk phone. DeskPhoneNumber *string }
Contains information about the phone configuration settings for a user.
type UserSummary ¶
type UserSummary struct { // The Amazon Connect user name of the user account. Username *string // The Amazon Resource Name (ARN) of the user account. Arn *string // The identifier of the user account. Id *string }
Contains summary information about a user.
type VoiceRecordingConfiguration ¶
type VoiceRecordingConfiguration struct { // Identifies which track is being recorded. VoiceRecordingTrack VoiceRecordingTrack }
Contains information about the recording configuration settings.
type VoiceRecordingTrack ¶
type VoiceRecordingTrack string
const ( VoiceRecordingTrackFrom_agent VoiceRecordingTrack = "FROM_AGENT" VoiceRecordingTrackTo_agent VoiceRecordingTrack = "TO_AGENT" VoiceRecordingTrackAll VoiceRecordingTrack = "ALL" )
Enum values for VoiceRecordingTrack
Source Files ¶
- Version
- v0.26.0
- Published
- Oct 1, 2020
- Platform
- js/wasm
- Imports
- 3 packages
- Last checked
- 8 hours ago –
Tools for package owners.