// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package connect import ( "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/private/protocol" "github.com/aws/aws-sdk-go/private/protocol/restjson" ) const opCreateUser = "CreateUser" // CreateUserRequest generates a "aws/request.Request" representing the // client's request for the CreateUser operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CreateUser for more information on using the CreateUser // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the CreateUserRequest method. // req, resp := client.CreateUserRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUser func (c *Connect) CreateUserRequest(input *CreateUserInput) (req *request.Request, output *CreateUserOutput) { op := &request.Operation{ Name: opCreateUser, HTTPMethod: "PUT", HTTPPath: "/users/{InstanceId}", } if input == nil { input = &CreateUserInput{} } output = &CreateUserOutput{} req = c.newRequest(op, input, output) return } // CreateUser API operation for Amazon Connect Service. // // Creates a new user account in your Amazon Connect instance. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation CreateUser for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeLimitExceededException "LimitExceededException" // The limit exceeded the maximum allowed active calls in a queue. // // * ErrCodeDuplicateResourceException "DuplicateResourceException" // A resource with that name already exisits. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUser func (c *Connect) CreateUser(input *CreateUserInput) (*CreateUserOutput, error) { req, out := c.CreateUserRequest(input) return out, req.Send() } // CreateUserWithContext is the same as CreateUser with the addition of // the ability to pass a context and additional request options. // // See CreateUser for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) CreateUserWithContext(ctx aws.Context, input *CreateUserInput, opts ...request.Option) (*CreateUserOutput, error) { req, out := c.CreateUserRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteUser = "DeleteUser" // DeleteUserRequest generates a "aws/request.Request" representing the // client's request for the DeleteUser operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteUser for more information on using the DeleteUser // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the DeleteUserRequest method. // req, resp := client.DeleteUserRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteUser func (c *Connect) DeleteUserRequest(input *DeleteUserInput) (req *request.Request, output *DeleteUserOutput) { op := &request.Operation{ Name: opDeleteUser, HTTPMethod: "DELETE", HTTPPath: "/users/{InstanceId}/{UserId}", } if input == nil { input = &DeleteUserInput{} } output = &DeleteUserOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) return } // DeleteUser API operation for Amazon Connect Service. // // Deletes a user account from Amazon Connect. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation DeleteUser for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteUser func (c *Connect) DeleteUser(input *DeleteUserInput) (*DeleteUserOutput, error) { req, out := c.DeleteUserRequest(input) return out, req.Send() } // DeleteUserWithContext is the same as DeleteUser with the addition of // the ability to pass a context and additional request options. // // See DeleteUser for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) DeleteUserWithContext(ctx aws.Context, input *DeleteUserInput, opts ...request.Option) (*DeleteUserOutput, error) { req, out := c.DeleteUserRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDescribeUser = "DescribeUser" // DescribeUserRequest generates a "aws/request.Request" representing the // client's request for the DescribeUser operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeUser for more information on using the DescribeUser // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the DescribeUserRequest method. // req, resp := client.DescribeUserRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUser func (c *Connect) DescribeUserRequest(input *DescribeUserInput) (req *request.Request, output *DescribeUserOutput) { op := &request.Operation{ Name: opDescribeUser, HTTPMethod: "GET", HTTPPath: "/users/{InstanceId}/{UserId}", } if input == nil { input = &DescribeUserInput{} } output = &DescribeUserOutput{} req = c.newRequest(op, input, output) return } // DescribeUser API operation for Amazon Connect Service. // // Returns a User object that contains information about the user account specified // by the UserId. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation DescribeUser for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUser func (c *Connect) DescribeUser(input *DescribeUserInput) (*DescribeUserOutput, error) { req, out := c.DescribeUserRequest(input) return out, req.Send() } // DescribeUserWithContext is the same as DescribeUser with the addition of // the ability to pass a context and additional request options. // // See DescribeUser for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) DescribeUserWithContext(ctx aws.Context, input *DescribeUserInput, opts ...request.Option) (*DescribeUserOutput, error) { req, out := c.DescribeUserRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDescribeUserHierarchyGroup = "DescribeUserHierarchyGroup" // DescribeUserHierarchyGroupRequest generates a "aws/request.Request" representing the // client's request for the DescribeUserHierarchyGroup operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeUserHierarchyGroup for more information on using the DescribeUserHierarchyGroup // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the DescribeUserHierarchyGroupRequest method. // req, resp := client.DescribeUserHierarchyGroupRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserHierarchyGroup func (c *Connect) DescribeUserHierarchyGroupRequest(input *DescribeUserHierarchyGroupInput) (req *request.Request, output *DescribeUserHierarchyGroupOutput) { op := &request.Operation{ Name: opDescribeUserHierarchyGroup, HTTPMethod: "GET", HTTPPath: "/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}", } if input == nil { input = &DescribeUserHierarchyGroupInput{} } output = &DescribeUserHierarchyGroupOutput{} req = c.newRequest(op, input, output) return } // DescribeUserHierarchyGroup API operation for Amazon Connect Service. // // Returns a HierarchyGroup object that includes information about a hierarchy // group in your instance. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation DescribeUserHierarchyGroup for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserHierarchyGroup func (c *Connect) DescribeUserHierarchyGroup(input *DescribeUserHierarchyGroupInput) (*DescribeUserHierarchyGroupOutput, error) { req, out := c.DescribeUserHierarchyGroupRequest(input) return out, req.Send() } // DescribeUserHierarchyGroupWithContext is the same as DescribeUserHierarchyGroup with the addition of // the ability to pass a context and additional request options. // // See DescribeUserHierarchyGroup for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) DescribeUserHierarchyGroupWithContext(ctx aws.Context, input *DescribeUserHierarchyGroupInput, opts ...request.Option) (*DescribeUserHierarchyGroupOutput, error) { req, out := c.DescribeUserHierarchyGroupRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDescribeUserHierarchyStructure = "DescribeUserHierarchyStructure" // DescribeUserHierarchyStructureRequest generates a "aws/request.Request" representing the // client's request for the DescribeUserHierarchyStructure operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeUserHierarchyStructure for more information on using the DescribeUserHierarchyStructure // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the DescribeUserHierarchyStructureRequest method. // req, resp := client.DescribeUserHierarchyStructureRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserHierarchyStructure func (c *Connect) DescribeUserHierarchyStructureRequest(input *DescribeUserHierarchyStructureInput) (req *request.Request, output *DescribeUserHierarchyStructureOutput) { op := &request.Operation{ Name: opDescribeUserHierarchyStructure, HTTPMethod: "GET", HTTPPath: "/user-hierarchy-structure/{InstanceId}", } if input == nil { input = &DescribeUserHierarchyStructureInput{} } output = &DescribeUserHierarchyStructureOutput{} req = c.newRequest(op, input, output) return } // DescribeUserHierarchyStructure API operation for Amazon Connect Service. // // Returns a HiearchyGroupStructure object, which contains data about the levels // in the agent hierarchy. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation DescribeUserHierarchyStructure for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserHierarchyStructure func (c *Connect) DescribeUserHierarchyStructure(input *DescribeUserHierarchyStructureInput) (*DescribeUserHierarchyStructureOutput, error) { req, out := c.DescribeUserHierarchyStructureRequest(input) return out, req.Send() } // DescribeUserHierarchyStructureWithContext is the same as DescribeUserHierarchyStructure with the addition of // the ability to pass a context and additional request options. // // See DescribeUserHierarchyStructure for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) DescribeUserHierarchyStructureWithContext(ctx aws.Context, input *DescribeUserHierarchyStructureInput, opts ...request.Option) (*DescribeUserHierarchyStructureOutput, error) { req, out := c.DescribeUserHierarchyStructureRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetFederationToken = "GetFederationToken" // GetFederationTokenRequest generates a "aws/request.Request" representing the // client's request for the GetFederationToken operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetFederationToken for more information on using the GetFederationToken // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the GetFederationTokenRequest method. // req, resp := client.GetFederationTokenRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFederationToken func (c *Connect) GetFederationTokenRequest(input *GetFederationTokenInput) (req *request.Request, output *GetFederationTokenOutput) { op := &request.Operation{ Name: opGetFederationToken, HTTPMethod: "GET", HTTPPath: "/user/federate/{InstanceId}", } if input == nil { input = &GetFederationTokenInput{} } output = &GetFederationTokenOutput{} req = c.newRequest(op, input, output) return } // GetFederationToken API operation for Amazon Connect Service. // // Retrieves a token for federation. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation GetFederationToken for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeUserNotFoundException "UserNotFoundException" // No user with the specified credentials was found in the Amazon Connect instance. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // * ErrCodeDuplicateResourceException "DuplicateResourceException" // A resource with that name already exisits. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFederationToken func (c *Connect) GetFederationToken(input *GetFederationTokenInput) (*GetFederationTokenOutput, error) { req, out := c.GetFederationTokenRequest(input) return out, req.Send() } // GetFederationTokenWithContext is the same as GetFederationToken with the addition of // the ability to pass a context and additional request options. // // See GetFederationToken for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) GetFederationTokenWithContext(ctx aws.Context, input *GetFederationTokenInput, opts ...request.Option) (*GetFederationTokenOutput, error) { req, out := c.GetFederationTokenRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opListRoutingProfiles = "ListRoutingProfiles" // ListRoutingProfilesRequest generates a "aws/request.Request" representing the // client's request for the ListRoutingProfiles operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListRoutingProfiles for more information on using the ListRoutingProfiles // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the ListRoutingProfilesRequest method. // req, resp := client.ListRoutingProfilesRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfiles func (c *Connect) ListRoutingProfilesRequest(input *ListRoutingProfilesInput) (req *request.Request, output *ListRoutingProfilesOutput) { op := &request.Operation{ Name: opListRoutingProfiles, HTTPMethod: "GET", HTTPPath: "/routing-profiles-summary/{InstanceId}", } if input == nil { input = &ListRoutingProfilesInput{} } output = &ListRoutingProfilesOutput{} req = c.newRequest(op, input, output) return } // ListRoutingProfiles API operation for Amazon Connect Service. // // Returns an array of RoutingProfileSummary objects that includes information // about the routing profiles in your instance. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation ListRoutingProfiles for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfiles func (c *Connect) ListRoutingProfiles(input *ListRoutingProfilesInput) (*ListRoutingProfilesOutput, error) { req, out := c.ListRoutingProfilesRequest(input) return out, req.Send() } // ListRoutingProfilesWithContext is the same as ListRoutingProfiles with the addition of // the ability to pass a context and additional request options. // // See ListRoutingProfiles for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) ListRoutingProfilesWithContext(ctx aws.Context, input *ListRoutingProfilesInput, opts ...request.Option) (*ListRoutingProfilesOutput, error) { req, out := c.ListRoutingProfilesRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opListSecurityProfiles = "ListSecurityProfiles" // ListSecurityProfilesRequest generates a "aws/request.Request" representing the // client's request for the ListSecurityProfiles operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListSecurityProfiles for more information on using the ListSecurityProfiles // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the ListSecurityProfilesRequest method. // req, resp := client.ListSecurityProfilesRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfiles func (c *Connect) ListSecurityProfilesRequest(input *ListSecurityProfilesInput) (req *request.Request, output *ListSecurityProfilesOutput) { op := &request.Operation{ Name: opListSecurityProfiles, HTTPMethod: "GET", HTTPPath: "/security-profiles-summary/{InstanceId}", } if input == nil { input = &ListSecurityProfilesInput{} } output = &ListSecurityProfilesOutput{} req = c.newRequest(op, input, output) return } // ListSecurityProfiles API operation for Amazon Connect Service. // // Returns an array of SecurityProfileSummary objects that contain information // about the security profiles in your instance, including the ARN, Id, and // Name of the security profile. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation ListSecurityProfiles for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfiles func (c *Connect) ListSecurityProfiles(input *ListSecurityProfilesInput) (*ListSecurityProfilesOutput, error) { req, out := c.ListSecurityProfilesRequest(input) return out, req.Send() } // ListSecurityProfilesWithContext is the same as ListSecurityProfiles with the addition of // the ability to pass a context and additional request options. // // See ListSecurityProfiles for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) ListSecurityProfilesWithContext(ctx aws.Context, input *ListSecurityProfilesInput, opts ...request.Option) (*ListSecurityProfilesOutput, error) { req, out := c.ListSecurityProfilesRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opListUserHierarchyGroups = "ListUserHierarchyGroups" // ListUserHierarchyGroupsRequest generates a "aws/request.Request" representing the // client's request for the ListUserHierarchyGroups operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListUserHierarchyGroups for more information on using the ListUserHierarchyGroups // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the ListUserHierarchyGroupsRequest method. // req, resp := client.ListUserHierarchyGroupsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUserHierarchyGroups func (c *Connect) ListUserHierarchyGroupsRequest(input *ListUserHierarchyGroupsInput) (req *request.Request, output *ListUserHierarchyGroupsOutput) { op := &request.Operation{ Name: opListUserHierarchyGroups, HTTPMethod: "GET", HTTPPath: "/user-hierarchy-groups-summary/{InstanceId}", } if input == nil { input = &ListUserHierarchyGroupsInput{} } output = &ListUserHierarchyGroupsOutput{} req = c.newRequest(op, input, output) return } // ListUserHierarchyGroups API operation for Amazon Connect Service. // // Returns a UserHierarchyGroupSummaryList, which is an array of HierarchyGroupSummary // objects that contain information about the hierarchy groups in your instance. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation ListUserHierarchyGroups for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUserHierarchyGroups func (c *Connect) ListUserHierarchyGroups(input *ListUserHierarchyGroupsInput) (*ListUserHierarchyGroupsOutput, error) { req, out := c.ListUserHierarchyGroupsRequest(input) return out, req.Send() } // ListUserHierarchyGroupsWithContext is the same as ListUserHierarchyGroups with the addition of // the ability to pass a context and additional request options. // // See ListUserHierarchyGroups for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) ListUserHierarchyGroupsWithContext(ctx aws.Context, input *ListUserHierarchyGroupsInput, opts ...request.Option) (*ListUserHierarchyGroupsOutput, error) { req, out := c.ListUserHierarchyGroupsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opListUsers = "ListUsers" // ListUsersRequest generates a "aws/request.Request" representing the // client's request for the ListUsers operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListUsers for more information on using the ListUsers // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the ListUsersRequest method. // req, resp := client.ListUsersRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUsers func (c *Connect) ListUsersRequest(input *ListUsersInput) (req *request.Request, output *ListUsersOutput) { op := &request.Operation{ Name: opListUsers, HTTPMethod: "GET", HTTPPath: "/users-summary/{InstanceId}", } if input == nil { input = &ListUsersInput{} } output = &ListUsersOutput{} req = c.newRequest(op, input, output) return } // ListUsers API operation for Amazon Connect Service. // // Returns a UserSummaryList, which is an array of UserSummary objects. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation ListUsers for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUsers func (c *Connect) ListUsers(input *ListUsersInput) (*ListUsersOutput, error) { req, out := c.ListUsersRequest(input) return out, req.Send() } // ListUsersWithContext is the same as ListUsers with the addition of // the ability to pass a context and additional request options. // // See ListUsers for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) ListUsersWithContext(ctx aws.Context, input *ListUsersInput, opts ...request.Option) (*ListUsersOutput, error) { req, out := c.ListUsersRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opStartOutboundVoiceContact = "StartOutboundVoiceContact" // StartOutboundVoiceContactRequest generates a "aws/request.Request" representing the // client's request for the StartOutboundVoiceContact operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See StartOutboundVoiceContact for more information on using the StartOutboundVoiceContact // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the StartOutboundVoiceContactRequest method. // req, resp := client.StartOutboundVoiceContactRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartOutboundVoiceContact func (c *Connect) StartOutboundVoiceContactRequest(input *StartOutboundVoiceContactInput) (req *request.Request, output *StartOutboundVoiceContactOutput) { op := &request.Operation{ Name: opStartOutboundVoiceContact, HTTPMethod: "PUT", HTTPPath: "/contact/outbound-voice", } if input == nil { input = &StartOutboundVoiceContactInput{} } output = &StartOutboundVoiceContactOutput{} req = c.newRequest(op, input, output) return } // StartOutboundVoiceContact API operation for Amazon Connect Service. // // The StartOutboundVoiceContact operation initiates a contact flow to place // an outbound call to a customer. // // There is a throttling limit placed on usage of the API that includes a RateLimit // of 2 per second, and a BurstLimit of 5 per second. // // If you are using an IAM account, it must have permission to the connect:StartOutboundVoiceContact // action. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation StartOutboundVoiceContact for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // * ErrCodeLimitExceededException "LimitExceededException" // The limit exceeded the maximum allowed active calls in a queue. // // * ErrCodeDestinationNotAllowedException "DestinationNotAllowedException" // Outbound calls to the destination number are not allowed. // // * ErrCodeOutboundContactNotPermittedException "OutboundContactNotPermittedException" // The contact is not permitted. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartOutboundVoiceContact func (c *Connect) StartOutboundVoiceContact(input *StartOutboundVoiceContactInput) (*StartOutboundVoiceContactOutput, error) { req, out := c.StartOutboundVoiceContactRequest(input) return out, req.Send() } // StartOutboundVoiceContactWithContext is the same as StartOutboundVoiceContact with the addition of // the ability to pass a context and additional request options. // // See StartOutboundVoiceContact for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) StartOutboundVoiceContactWithContext(ctx aws.Context, input *StartOutboundVoiceContactInput, opts ...request.Option) (*StartOutboundVoiceContactOutput, error) { req, out := c.StartOutboundVoiceContactRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opStopContact = "StopContact" // StopContactRequest generates a "aws/request.Request" representing the // client's request for the StopContact operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See StopContact for more information on using the StopContact // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the StopContactRequest method. // req, resp := client.StopContactRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContact func (c *Connect) StopContactRequest(input *StopContactInput) (req *request.Request, output *StopContactOutput) { op := &request.Operation{ Name: opStopContact, HTTPMethod: "POST", HTTPPath: "/contact/stop", } if input == nil { input = &StopContactInput{} } output = &StopContactOutput{} req = c.newRequest(op, input, output) return } // StopContact API operation for Amazon Connect Service. // // Ends the contact initiated by the StartOutboundVoiceContact operation. // // If you are using an IAM account, it must have permission to the connect:StopContact // action. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation StopContact for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeContactNotFoundException "ContactNotFoundException" // The contact with the specified ID is not active or does not exist. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContact func (c *Connect) StopContact(input *StopContactInput) (*StopContactOutput, error) { req, out := c.StopContactRequest(input) return out, req.Send() } // StopContactWithContext is the same as StopContact with the addition of // the ability to pass a context and additional request options. // // See StopContact for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) StopContactWithContext(ctx aws.Context, input *StopContactInput, opts ...request.Option) (*StopContactOutput, error) { req, out := c.StopContactRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateUserHierarchy = "UpdateUserHierarchy" // UpdateUserHierarchyRequest generates a "aws/request.Request" representing the // client's request for the UpdateUserHierarchy operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateUserHierarchy for more information on using the UpdateUserHierarchy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the UpdateUserHierarchyRequest method. // req, resp := client.UpdateUserHierarchyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserHierarchy func (c *Connect) UpdateUserHierarchyRequest(input *UpdateUserHierarchyInput) (req *request.Request, output *UpdateUserHierarchyOutput) { op := &request.Operation{ Name: opUpdateUserHierarchy, HTTPMethod: "POST", HTTPPath: "/users/{InstanceId}/{UserId}/hierarchy", } if input == nil { input = &UpdateUserHierarchyInput{} } output = &UpdateUserHierarchyOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) return } // UpdateUserHierarchy API operation for Amazon Connect Service. // // Assigns the specified hierarchy group to the user. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation UpdateUserHierarchy for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserHierarchy func (c *Connect) UpdateUserHierarchy(input *UpdateUserHierarchyInput) (*UpdateUserHierarchyOutput, error) { req, out := c.UpdateUserHierarchyRequest(input) return out, req.Send() } // UpdateUserHierarchyWithContext is the same as UpdateUserHierarchy with the addition of // the ability to pass a context and additional request options. // // See UpdateUserHierarchy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) UpdateUserHierarchyWithContext(ctx aws.Context, input *UpdateUserHierarchyInput, opts ...request.Option) (*UpdateUserHierarchyOutput, error) { req, out := c.UpdateUserHierarchyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateUserIdentityInfo = "UpdateUserIdentityInfo" // UpdateUserIdentityInfoRequest generates a "aws/request.Request" representing the // client's request for the UpdateUserIdentityInfo operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateUserIdentityInfo for more information on using the UpdateUserIdentityInfo // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the UpdateUserIdentityInfoRequest method. // req, resp := client.UpdateUserIdentityInfoRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserIdentityInfo func (c *Connect) UpdateUserIdentityInfoRequest(input *UpdateUserIdentityInfoInput) (req *request.Request, output *UpdateUserIdentityInfoOutput) { op := &request.Operation{ Name: opUpdateUserIdentityInfo, HTTPMethod: "POST", HTTPPath: "/users/{InstanceId}/{UserId}/identity-info", } if input == nil { input = &UpdateUserIdentityInfoInput{} } output = &UpdateUserIdentityInfoOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) return } // UpdateUserIdentityInfo API operation for Amazon Connect Service. // // Updates the identity information for the specified user in a UserIdentityInfo // object, including email, first name, and last name. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation UpdateUserIdentityInfo for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserIdentityInfo func (c *Connect) UpdateUserIdentityInfo(input *UpdateUserIdentityInfoInput) (*UpdateUserIdentityInfoOutput, error) { req, out := c.UpdateUserIdentityInfoRequest(input) return out, req.Send() } // UpdateUserIdentityInfoWithContext is the same as UpdateUserIdentityInfo with the addition of // the ability to pass a context and additional request options. // // See UpdateUserIdentityInfo for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) UpdateUserIdentityInfoWithContext(ctx aws.Context, input *UpdateUserIdentityInfoInput, opts ...request.Option) (*UpdateUserIdentityInfoOutput, error) { req, out := c.UpdateUserIdentityInfoRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateUserPhoneConfig = "UpdateUserPhoneConfig" // UpdateUserPhoneConfigRequest generates a "aws/request.Request" representing the // client's request for the UpdateUserPhoneConfig operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateUserPhoneConfig for more information on using the UpdateUserPhoneConfig // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the UpdateUserPhoneConfigRequest method. // req, resp := client.UpdateUserPhoneConfigRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserPhoneConfig func (c *Connect) UpdateUserPhoneConfigRequest(input *UpdateUserPhoneConfigInput) (req *request.Request, output *UpdateUserPhoneConfigOutput) { op := &request.Operation{ Name: opUpdateUserPhoneConfig, HTTPMethod: "POST", HTTPPath: "/users/{InstanceId}/{UserId}/phone-config", } if input == nil { input = &UpdateUserPhoneConfigInput{} } output = &UpdateUserPhoneConfigOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) return } // UpdateUserPhoneConfig API operation for Amazon Connect Service. // // Updates the phone configuration settings in the UserPhoneConfig object for // the specified user. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation UpdateUserPhoneConfig for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserPhoneConfig func (c *Connect) UpdateUserPhoneConfig(input *UpdateUserPhoneConfigInput) (*UpdateUserPhoneConfigOutput, error) { req, out := c.UpdateUserPhoneConfigRequest(input) return out, req.Send() } // UpdateUserPhoneConfigWithContext is the same as UpdateUserPhoneConfig with the addition of // the ability to pass a context and additional request options. // // See UpdateUserPhoneConfig for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) UpdateUserPhoneConfigWithContext(ctx aws.Context, input *UpdateUserPhoneConfigInput, opts ...request.Option) (*UpdateUserPhoneConfigOutput, error) { req, out := c.UpdateUserPhoneConfigRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateUserRoutingProfile = "UpdateUserRoutingProfile" // UpdateUserRoutingProfileRequest generates a "aws/request.Request" representing the // client's request for the UpdateUserRoutingProfile operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateUserRoutingProfile for more information on using the UpdateUserRoutingProfile // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the UpdateUserRoutingProfileRequest method. // req, resp := client.UpdateUserRoutingProfileRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserRoutingProfile func (c *Connect) UpdateUserRoutingProfileRequest(input *UpdateUserRoutingProfileInput) (req *request.Request, output *UpdateUserRoutingProfileOutput) { op := &request.Operation{ Name: opUpdateUserRoutingProfile, HTTPMethod: "POST", HTTPPath: "/users/{InstanceId}/{UserId}/routing-profile", } if input == nil { input = &UpdateUserRoutingProfileInput{} } output = &UpdateUserRoutingProfileOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) return } // UpdateUserRoutingProfile API operation for Amazon Connect Service. // // Assigns the specified routing profile to a user. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation UpdateUserRoutingProfile for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserRoutingProfile func (c *Connect) UpdateUserRoutingProfile(input *UpdateUserRoutingProfileInput) (*UpdateUserRoutingProfileOutput, error) { req, out := c.UpdateUserRoutingProfileRequest(input) return out, req.Send() } // UpdateUserRoutingProfileWithContext is the same as UpdateUserRoutingProfile with the addition of // the ability to pass a context and additional request options. // // See UpdateUserRoutingProfile for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) UpdateUserRoutingProfileWithContext(ctx aws.Context, input *UpdateUserRoutingProfileInput, opts ...request.Option) (*UpdateUserRoutingProfileOutput, error) { req, out := c.UpdateUserRoutingProfileRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUpdateUserSecurityProfiles = "UpdateUserSecurityProfiles" // UpdateUserSecurityProfilesRequest generates a "aws/request.Request" representing the // client's request for the UpdateUserSecurityProfiles operation. The "output" return // value will be populated with the request's response once the request completes // successfuly. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UpdateUserSecurityProfiles for more information on using the UpdateUserSecurityProfiles // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // // Example sending a request using the UpdateUserSecurityProfilesRequest method. // req, resp := client.UpdateUserSecurityProfilesRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserSecurityProfiles func (c *Connect) UpdateUserSecurityProfilesRequest(input *UpdateUserSecurityProfilesInput) (req *request.Request, output *UpdateUserSecurityProfilesOutput) { op := &request.Operation{ Name: opUpdateUserSecurityProfiles, HTTPMethod: "POST", HTTPPath: "/users/{InstanceId}/{UserId}/security-profiles", } if input == nil { input = &UpdateUserSecurityProfilesInput{} } output = &UpdateUserSecurityProfilesOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) return } // UpdateUserSecurityProfiles API operation for Amazon Connect Service. // // Update the security profiles assigned to the user. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon Connect Service's // API operation UpdateUserSecurityProfiles for usage and error information. // // Returned Error Codes: // * ErrCodeInvalidRequestException "InvalidRequestException" // The request is not valid. // // * ErrCodeInvalidParameterException "InvalidParameterException" // One or more of the parameters provided to the operation are not valid. // // * ErrCodeResourceNotFoundException "ResourceNotFoundException" // The specified resource was not found. // // * ErrCodeThrottlingException "ThrottlingException" // The throttling limit has been exceeded. // // * ErrCodeInternalServiceException "InternalServiceException" // Request processing failed due to an error or failure with the service. // // See also, https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserSecurityProfiles func (c *Connect) UpdateUserSecurityProfiles(input *UpdateUserSecurityProfilesInput) (*UpdateUserSecurityProfilesOutput, error) { req, out := c.UpdateUserSecurityProfilesRequest(input) return out, req.Send() } // UpdateUserSecurityProfilesWithContext is the same as UpdateUserSecurityProfiles with the addition of // the ability to pass a context and additional request options. // // See UpdateUserSecurityProfiles for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *Connect) UpdateUserSecurityProfilesWithContext(ctx aws.Context, input *UpdateUserSecurityProfilesInput, opts ...request.Option) (*UpdateUserSecurityProfilesOutput, error) { req, out := c.UpdateUserSecurityProfilesRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } type CreateUserInput struct { _ struct{} `type:"structure"` // The unique identifier for the user account in the directory service directory // used for identity management. If Amazon Connect is unable to access the existing // directory, you can use the DirectoryUserId to authenticate users. If you // include the parameter, it is assumed that Amazon Connect cannot access the // directory. If the parameter is not included, the UserIdentityInfo is used // to authenticate users from your existing directory. // // This parameter is required if you are using an existing directory for identity // management in Amazon Connect when Amazon Connect cannot access your directory // to authenticate users. If you are using SAML for identity management and // include this parameter, an InvalidRequestException is returned. DirectoryUserId *string `type:"string"` // The unique identifier for the hierarchy group to assign to the user created. HierarchyGroupId *string `type:"string"` // Information about the user, including email address, first name, and last // name. IdentityInfo *UserIdentityInfo `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The password for the user account to create. This is required if you are // using Amazon Connect for identity management. If you are using SAML for identity // management and include this parameter, an InvalidRequestException is returned. Password *string `type:"string"` // Specifies the phone settings for the user, including AfterContactWorkTimeLimit, // AutoAccept, DeskPhoneNumber, and PhoneType. // // PhoneConfig is a required field PhoneConfig *UserPhoneConfig `type:"structure" required:"true"` // The unique identifier for the routing profile to assign to the user created. // // RoutingProfileId is a required field RoutingProfileId *string `type:"string" required:"true"` // The unique identifier of the security profile to assign to the user created. // // SecurityProfileIds is a required field SecurityProfileIds []*string `min:"1" type:"list" required:"true"` // The user name in Amazon Connect for the user to create. // // Username is a required field Username *string `min:"1" type:"string" required:"true"` } // String returns the string representation func (s CreateUserInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s CreateUserInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateUserInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateUserInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.PhoneConfig == nil { invalidParams.Add(request.NewErrParamRequired("PhoneConfig")) } if s.RoutingProfileId == nil { invalidParams.Add(request.NewErrParamRequired("RoutingProfileId")) } if s.SecurityProfileIds == nil { invalidParams.Add(request.NewErrParamRequired("SecurityProfileIds")) } if s.SecurityProfileIds != nil && len(s.SecurityProfileIds) < 1 { invalidParams.Add(request.NewErrParamMinLen("SecurityProfileIds", 1)) } if s.Username == nil { invalidParams.Add(request.NewErrParamRequired("Username")) } if s.Username != nil && len(*s.Username) < 1 { invalidParams.Add(request.NewErrParamMinLen("Username", 1)) } if s.IdentityInfo != nil { if err := s.IdentityInfo.Validate(); err != nil { invalidParams.AddNested("IdentityInfo", err.(request.ErrInvalidParams)) } } if s.PhoneConfig != nil { if err := s.PhoneConfig.Validate(); err != nil { invalidParams.AddNested("PhoneConfig", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetDirectoryUserId sets the DirectoryUserId field's value. func (s *CreateUserInput) SetDirectoryUserId(v string) *CreateUserInput { s.DirectoryUserId = &v return s } // SetHierarchyGroupId sets the HierarchyGroupId field's value. func (s *CreateUserInput) SetHierarchyGroupId(v string) *CreateUserInput { s.HierarchyGroupId = &v return s } // SetIdentityInfo sets the IdentityInfo field's value. func (s *CreateUserInput) SetIdentityInfo(v *UserIdentityInfo) *CreateUserInput { s.IdentityInfo = v return s } // SetInstanceId sets the InstanceId field's value. func (s *CreateUserInput) SetInstanceId(v string) *CreateUserInput { s.InstanceId = &v return s } // SetPassword sets the Password field's value. func (s *CreateUserInput) SetPassword(v string) *CreateUserInput { s.Password = &v return s } // SetPhoneConfig sets the PhoneConfig field's value. func (s *CreateUserInput) SetPhoneConfig(v *UserPhoneConfig) *CreateUserInput { s.PhoneConfig = v return s } // SetRoutingProfileId sets the RoutingProfileId field's value. func (s *CreateUserInput) SetRoutingProfileId(v string) *CreateUserInput { s.RoutingProfileId = &v return s } // SetSecurityProfileIds sets the SecurityProfileIds field's value. func (s *CreateUserInput) SetSecurityProfileIds(v []*string) *CreateUserInput { s.SecurityProfileIds = v return s } // SetUsername sets the Username field's value. func (s *CreateUserInput) SetUsername(v string) *CreateUserInput { s.Username = &v return s } type CreateUserOutput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the user account created. UserArn *string `type:"string"` // The unique identifier for the user account in Amazon Connect UserId *string `type:"string"` } // String returns the string representation func (s CreateUserOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s CreateUserOutput) GoString() string { return s.String() } // SetUserArn sets the UserArn field's value. func (s *CreateUserOutput) SetUserArn(v string) *CreateUserOutput { s.UserArn = &v return s } // SetUserId sets the UserId field's value. func (s *CreateUserOutput) SetUserId(v string) *CreateUserOutput { s.UserId = &v return s } // The credentials to use for federation. type Credentials struct { _ struct{} `type:"structure"` // An access token generated for a federated user to access Amazon Connect AccessToken *string `type:"string"` // A token generated with an expiration time for the session a user is logged // in to Amazon Connect AccessTokenExpiration *time.Time `type:"timestamp"` // Renews a token generated for a user to access the Amazon Connect instance. RefreshToken *string `type:"string"` // Renews the expiration timer for a generated token. RefreshTokenExpiration *time.Time `type:"timestamp"` } // String returns the string representation func (s Credentials) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s Credentials) GoString() string { return s.String() } // SetAccessToken sets the AccessToken field's value. func (s *Credentials) SetAccessToken(v string) *Credentials { s.AccessToken = &v return s } // SetAccessTokenExpiration sets the AccessTokenExpiration field's value. func (s *Credentials) SetAccessTokenExpiration(v time.Time) *Credentials { s.AccessTokenExpiration = &v return s } // SetRefreshToken sets the RefreshToken field's value. func (s *Credentials) SetRefreshToken(v string) *Credentials { s.RefreshToken = &v return s } // SetRefreshTokenExpiration sets the RefreshTokenExpiration field's value. func (s *Credentials) SetRefreshTokenExpiration(v time.Time) *Credentials { s.RefreshTokenExpiration = &v return s } type DeleteUserInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The unique identifier of the user to delete. // // UserId is a required field UserId *string `location:"uri" locationName:"UserId" type:"string" required:"true"` } // String returns the string representation func (s DeleteUserInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DeleteUserInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteUserInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteUserInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.UserId == nil { invalidParams.Add(request.NewErrParamRequired("UserId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *DeleteUserInput) SetInstanceId(v string) *DeleteUserInput { s.InstanceId = &v return s } // SetUserId sets the UserId field's value. func (s *DeleteUserInput) SetUserId(v string) *DeleteUserInput { s.UserId = &v return s } type DeleteUserOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s DeleteUserOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DeleteUserOutput) GoString() string { return s.String() } type DescribeUserHierarchyGroupInput struct { _ struct{} `type:"structure"` // The identifier for the hierarchy group to return. // // HierarchyGroupId is a required field HierarchyGroupId *string `location:"uri" locationName:"HierarchyGroupId" type:"string" required:"true"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` } // String returns the string representation func (s DescribeUserHierarchyGroupInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeUserHierarchyGroupInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeUserHierarchyGroupInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeUserHierarchyGroupInput"} if s.HierarchyGroupId == nil { invalidParams.Add(request.NewErrParamRequired("HierarchyGroupId")) } if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetHierarchyGroupId sets the HierarchyGroupId field's value. func (s *DescribeUserHierarchyGroupInput) SetHierarchyGroupId(v string) *DescribeUserHierarchyGroupInput { s.HierarchyGroupId = &v return s } // SetInstanceId sets the InstanceId field's value. func (s *DescribeUserHierarchyGroupInput) SetInstanceId(v string) *DescribeUserHierarchyGroupInput { s.InstanceId = &v return s } type DescribeUserHierarchyGroupOutput struct { _ struct{} `type:"structure"` // Returns a HierarchyGroup object. HierarchyGroup *HierarchyGroup `type:"structure"` } // String returns the string representation func (s DescribeUserHierarchyGroupOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeUserHierarchyGroupOutput) GoString() string { return s.String() } // SetHierarchyGroup sets the HierarchyGroup field's value. func (s *DescribeUserHierarchyGroupOutput) SetHierarchyGroup(v *HierarchyGroup) *DescribeUserHierarchyGroupOutput { s.HierarchyGroup = v return s } type DescribeUserHierarchyStructureInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` } // String returns the string representation func (s DescribeUserHierarchyStructureInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeUserHierarchyStructureInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeUserHierarchyStructureInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeUserHierarchyStructureInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *DescribeUserHierarchyStructureInput) SetInstanceId(v string) *DescribeUserHierarchyStructureInput { s.InstanceId = &v return s } type DescribeUserHierarchyStructureOutput struct { _ struct{} `type:"structure"` // A HierarchyStructure object. HierarchyStructure *HierarchyStructure `type:"structure"` } // String returns the string representation func (s DescribeUserHierarchyStructureOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeUserHierarchyStructureOutput) GoString() string { return s.String() } // SetHierarchyStructure sets the HierarchyStructure field's value. func (s *DescribeUserHierarchyStructureOutput) SetHierarchyStructure(v *HierarchyStructure) *DescribeUserHierarchyStructureOutput { s.HierarchyStructure = v return s } type DescribeUserInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // Unique identifier for the user account to return. // // UserId is a required field UserId *string `location:"uri" locationName:"UserId" type:"string" required:"true"` } // String returns the string representation func (s DescribeUserInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeUserInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeUserInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeUserInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.UserId == nil { invalidParams.Add(request.NewErrParamRequired("UserId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *DescribeUserInput) SetInstanceId(v string) *DescribeUserInput { s.InstanceId = &v return s } // SetUserId sets the UserId field's value. func (s *DescribeUserInput) SetUserId(v string) *DescribeUserInput { s.UserId = &v return s } type DescribeUserOutput struct { _ struct{} `type:"structure"` // A User object that contains information about the user account and configuration // settings. User *User `type:"structure"` } // String returns the string representation func (s DescribeUserOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s DescribeUserOutput) GoString() string { return s.String() } // SetUser sets the User field's value. func (s *DescribeUserOutput) SetUser(v *User) *DescribeUserOutput { s.User = v return s } type GetFederationTokenInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` } // String returns the string representation func (s GetFederationTokenInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s GetFederationTokenInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetFederationTokenInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetFederationTokenInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *GetFederationTokenInput) SetInstanceId(v string) *GetFederationTokenInput { s.InstanceId = &v return s } type GetFederationTokenOutput struct { _ struct{} `type:"structure"` // The credentials to use for federation. Credentials *Credentials `type:"structure"` } // String returns the string representation func (s GetFederationTokenOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s GetFederationTokenOutput) GoString() string { return s.String() } // SetCredentials sets the Credentials field's value. func (s *GetFederationTokenOutput) SetCredentials(v *Credentials) *GetFederationTokenOutput { s.Credentials = v return s } // A HierarchyGroup object that contains information about a hierarchy group // in your Amazon Connect instance. type HierarchyGroup struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) for the hierarchy group. Arn *string `type:"string"` // A HierarchyPath object that contains information about the levels in the // hierarchy group. HierarchyPath *HierarchyPath `type:"structure"` // The identifier for the hierarchy group. Id *string `type:"string"` // The identifier for the level in the hierarchy group. LevelId *string `type:"string"` // The name of the hierarchy group in your instance. Name *string `type:"string"` } // String returns the string representation func (s HierarchyGroup) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s HierarchyGroup) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *HierarchyGroup) SetArn(v string) *HierarchyGroup { s.Arn = &v return s } // SetHierarchyPath sets the HierarchyPath field's value. func (s *HierarchyGroup) SetHierarchyPath(v *HierarchyPath) *HierarchyGroup { s.HierarchyPath = v return s } // SetId sets the Id field's value. func (s *HierarchyGroup) SetId(v string) *HierarchyGroup { s.Id = &v return s } // SetLevelId sets the LevelId field's value. func (s *HierarchyGroup) SetLevelId(v string) *HierarchyGroup { s.LevelId = &v return s } // SetName sets the Name field's value. func (s *HierarchyGroup) SetName(v string) *HierarchyGroup { s.Name = &v return s } // A HierarchyGroupSummary object that contains information about the hierarchy // group, including ARN, Id, and Name. type HierarchyGroupSummary struct { _ struct{} `type:"structure"` // The ARN for the hierarchy group. Arn *string `type:"string"` // The identifier of the hierarchy group. Id *string `type:"string"` // The name of the hierarchy group. Name *string `type:"string"` } // String returns the string representation func (s HierarchyGroupSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s HierarchyGroupSummary) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *HierarchyGroupSummary) SetArn(v string) *HierarchyGroupSummary { s.Arn = &v return s } // SetId sets the Id field's value. func (s *HierarchyGroupSummary) SetId(v string) *HierarchyGroupSummary { s.Id = &v return s } // SetName sets the Name field's value. func (s *HierarchyGroupSummary) SetName(v string) *HierarchyGroupSummary { s.Name = &v return s } // A HierarchyLevel object that contains information about the levels in a hierarchy // group, including ARN, Id, and Name. type HierarchyLevel struct { _ struct{} `type:"structure"` // The ARN for the hierarchy group level. Arn *string `type:"string"` // The identifier for the hierarchy group level. Id *string `type:"string"` // The name of the hierarchy group level. Name *string `type:"string"` } // String returns the string representation func (s HierarchyLevel) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s HierarchyLevel) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *HierarchyLevel) SetArn(v string) *HierarchyLevel { s.Arn = &v return s } // SetId sets the Id field's value. func (s *HierarchyLevel) SetId(v string) *HierarchyLevel { s.Id = &v return s } // SetName sets the Name field's value. func (s *HierarchyLevel) SetName(v string) *HierarchyLevel { s.Name = &v return s } // A HierarchyPath object that contains information about the levels of the // hierarchy group. type HierarchyPath struct { _ struct{} `type:"structure"` // A HierarchyGroupSummary object that contains information about the level // of the hierarchy group, including ARN, Id, and Name. LevelFive *HierarchyGroupSummary `type:"structure"` // A HierarchyGroupSummary object that contains information about the level // of the hierarchy group, including ARN, Id, and Name. LevelFour *HierarchyGroupSummary `type:"structure"` // A HierarchyGroupSummary object that contains information about the level // of the hierarchy group, including ARN, Id, and Name. LevelOne *HierarchyGroupSummary `type:"structure"` // A HierarchyGroupSummary object that contains information about the level // of the hierarchy group, including ARN, Id, and Name. LevelThree *HierarchyGroupSummary `type:"structure"` // A HierarchyGroupSummary object that contains information about the level // of the hierarchy group, including ARN, Id, and Name. LevelTwo *HierarchyGroupSummary `type:"structure"` } // String returns the string representation func (s HierarchyPath) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s HierarchyPath) GoString() string { return s.String() } // SetLevelFive sets the LevelFive field's value. func (s *HierarchyPath) SetLevelFive(v *HierarchyGroupSummary) *HierarchyPath { s.LevelFive = v return s } // SetLevelFour sets the LevelFour field's value. func (s *HierarchyPath) SetLevelFour(v *HierarchyGroupSummary) *HierarchyPath { s.LevelFour = v return s } // SetLevelOne sets the LevelOne field's value. func (s *HierarchyPath) SetLevelOne(v *HierarchyGroupSummary) *HierarchyPath { s.LevelOne = v return s } // SetLevelThree sets the LevelThree field's value. func (s *HierarchyPath) SetLevelThree(v *HierarchyGroupSummary) *HierarchyPath { s.LevelThree = v return s } // SetLevelTwo sets the LevelTwo field's value. func (s *HierarchyPath) SetLevelTwo(v *HierarchyGroupSummary) *HierarchyPath { s.LevelTwo = v return s } // A HierarchyStructure object that contains information about the hierarchy // group structure. type HierarchyStructure struct { _ struct{} `type:"structure"` // A HierarchyLevel object that contains information about the hierarchy group // level. LevelFive *HierarchyLevel `type:"structure"` // A HierarchyLevel object that contains information about the hierarchy group // level. LevelFour *HierarchyLevel `type:"structure"` // A HierarchyLevel object that contains information about the hierarchy group // level. LevelOne *HierarchyLevel `type:"structure"` // A HierarchyLevel object that contains information about the hierarchy group // level. LevelThree *HierarchyLevel `type:"structure"` // A HierarchyLevel object that contains information about the hierarchy group // level. LevelTwo *HierarchyLevel `type:"structure"` } // String returns the string representation func (s HierarchyStructure) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s HierarchyStructure) GoString() string { return s.String() } // SetLevelFive sets the LevelFive field's value. func (s *HierarchyStructure) SetLevelFive(v *HierarchyLevel) *HierarchyStructure { s.LevelFive = v return s } // SetLevelFour sets the LevelFour field's value. func (s *HierarchyStructure) SetLevelFour(v *HierarchyLevel) *HierarchyStructure { s.LevelFour = v return s } // SetLevelOne sets the LevelOne field's value. func (s *HierarchyStructure) SetLevelOne(v *HierarchyLevel) *HierarchyStructure { s.LevelOne = v return s } // SetLevelThree sets the LevelThree field's value. func (s *HierarchyStructure) SetLevelThree(v *HierarchyLevel) *HierarchyStructure { s.LevelThree = v return s } // SetLevelTwo sets the LevelTwo field's value. func (s *HierarchyStructure) SetLevelTwo(v *HierarchyLevel) *HierarchyStructure { s.LevelTwo = v return s } type ListRoutingProfilesInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The maximum number of routing profiles to return in the response. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The token for the next set of results. Use the value returned in the previous // response in the next request to retrieve the next set of results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation func (s ListRoutingProfilesInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ListRoutingProfilesInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListRoutingProfilesInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListRoutingProfilesInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *ListRoutingProfilesInput) SetInstanceId(v string) *ListRoutingProfilesInput { s.InstanceId = &v return s } // SetMaxResults sets the MaxResults field's value. func (s *ListRoutingProfilesInput) SetMaxResults(v int64) *ListRoutingProfilesInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListRoutingProfilesInput) SetNextToken(v string) *ListRoutingProfilesInput { s.NextToken = &v return s } type ListRoutingProfilesOutput struct { _ struct{} `type:"structure"` // A string returned in the response. Use the value returned in the response // as the value of the NextToken in a subsequent request to retrieve the next // set of results. NextToken *string `type:"string"` // An array of RoutingProfileSummary objects that include the ARN, Id, and Name // of the routing profile. RoutingProfileSummaryList []*RoutingProfileSummary `type:"list"` } // String returns the string representation func (s ListRoutingProfilesOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ListRoutingProfilesOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *ListRoutingProfilesOutput) SetNextToken(v string) *ListRoutingProfilesOutput { s.NextToken = &v return s } // SetRoutingProfileSummaryList sets the RoutingProfileSummaryList field's value. func (s *ListRoutingProfilesOutput) SetRoutingProfileSummaryList(v []*RoutingProfileSummary) *ListRoutingProfilesOutput { s.RoutingProfileSummaryList = v return s } type ListSecurityProfilesInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The maximum number of security profiles to return. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The token for the next set of results. Use the value returned in the previous // response in the next request to retrieve the next set of results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation func (s ListSecurityProfilesInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ListSecurityProfilesInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListSecurityProfilesInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListSecurityProfilesInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *ListSecurityProfilesInput) SetInstanceId(v string) *ListSecurityProfilesInput { s.InstanceId = &v return s } // SetMaxResults sets the MaxResults field's value. func (s *ListSecurityProfilesInput) SetMaxResults(v int64) *ListSecurityProfilesInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListSecurityProfilesInput) SetNextToken(v string) *ListSecurityProfilesInput { s.NextToken = &v return s } type ListSecurityProfilesOutput struct { _ struct{} `type:"structure"` // A string returned in the response. Use the value returned in the response // as the value of the NextToken in a subsequent request to retrieve the next // set of results. NextToken *string `type:"string"` // An array of SecurityProfileSummary objects. SecurityProfileSummaryList []*SecurityProfileSummary `type:"list"` } // String returns the string representation func (s ListSecurityProfilesOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ListSecurityProfilesOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *ListSecurityProfilesOutput) SetNextToken(v string) *ListSecurityProfilesOutput { s.NextToken = &v return s } // SetSecurityProfileSummaryList sets the SecurityProfileSummaryList field's value. func (s *ListSecurityProfilesOutput) SetSecurityProfileSummaryList(v []*SecurityProfileSummary) *ListSecurityProfilesOutput { s.SecurityProfileSummaryList = v return s } type ListUserHierarchyGroupsInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The maximum number of hierarchy groups to return. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The token for the next set of results. Use the value returned in the previous // response in the next request to retrieve the next set of results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation func (s ListUserHierarchyGroupsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ListUserHierarchyGroupsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListUserHierarchyGroupsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListUserHierarchyGroupsInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *ListUserHierarchyGroupsInput) SetInstanceId(v string) *ListUserHierarchyGroupsInput { s.InstanceId = &v return s } // SetMaxResults sets the MaxResults field's value. func (s *ListUserHierarchyGroupsInput) SetMaxResults(v int64) *ListUserHierarchyGroupsInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListUserHierarchyGroupsInput) SetNextToken(v string) *ListUserHierarchyGroupsInput { s.NextToken = &v return s } type ListUserHierarchyGroupsOutput struct { _ struct{} `type:"structure"` // A string returned in the response. Use the value returned in the response // as the value of the NextToken in a subsequent request to retrieve the next // set of results. NextToken *string `type:"string"` // An array of HierarchyGroupSummary objects. UserHierarchyGroupSummaryList []*HierarchyGroupSummary `type:"list"` } // String returns the string representation func (s ListUserHierarchyGroupsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ListUserHierarchyGroupsOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *ListUserHierarchyGroupsOutput) SetNextToken(v string) *ListUserHierarchyGroupsOutput { s.NextToken = &v return s } // SetUserHierarchyGroupSummaryList sets the UserHierarchyGroupSummaryList field's value. func (s *ListUserHierarchyGroupsOutput) SetUserHierarchyGroupSummaryList(v []*HierarchyGroupSummary) *ListUserHierarchyGroupsOutput { s.UserHierarchyGroupSummaryList = v return s } type ListUsersInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The maximum number of results to return in the response. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // The token for the next set of results. Use the value returned in the previous // response in the next request to retrieve the next set of results. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation func (s ListUsersInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ListUsersInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListUsersInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListUsersInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *ListUsersInput) SetInstanceId(v string) *ListUsersInput { s.InstanceId = &v return s } // SetMaxResults sets the MaxResults field's value. func (s *ListUsersInput) SetMaxResults(v int64) *ListUsersInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *ListUsersInput) SetNextToken(v string) *ListUsersInput { s.NextToken = &v return s } type ListUsersOutput struct { _ struct{} `type:"structure"` // A string returned in the response. Use the value returned in the response // as the value of the NextToken in a subsequent request to retrieve the next // set of results. NextToken *string `type:"string"` // An array of UserSummary objects that contain information about the users // in your instance. UserSummaryList []*UserSummary `type:"list"` } // String returns the string representation func (s ListUsersOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s ListUsersOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *ListUsersOutput) SetNextToken(v string) *ListUsersOutput { s.NextToken = &v return s } // SetUserSummaryList sets the UserSummaryList field's value. func (s *ListUsersOutput) SetUserSummaryList(v []*UserSummary) *ListUsersOutput { s.UserSummaryList = v return s } // A RoutingProfileSummary object that contains information about a routing // profile, including ARN, Id, and Name. type RoutingProfileSummary struct { _ struct{} `type:"structure"` // The ARN of the routing profile. Arn *string `type:"string"` // The identifier of the routing profile. Id *string `type:"string"` // The name of the routing profile. Name *string `min:"1" type:"string"` } // String returns the string representation func (s RoutingProfileSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s RoutingProfileSummary) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *RoutingProfileSummary) SetArn(v string) *RoutingProfileSummary { s.Arn = &v return s } // SetId sets the Id field's value. func (s *RoutingProfileSummary) SetId(v string) *RoutingProfileSummary { s.Id = &v return s } // SetName sets the Name field's value. func (s *RoutingProfileSummary) SetName(v string) *RoutingProfileSummary { s.Name = &v return s } // A SecurityProfileSummary object that contains information about a security // profile, including ARN, Id, Name. type SecurityProfileSummary struct { _ struct{} `type:"structure"` // The ARN of the security profile. Arn *string `type:"string"` // The identifier of the security profile. Id *string `type:"string"` // The name of the security profile. Name *string `type:"string"` } // String returns the string representation func (s SecurityProfileSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s SecurityProfileSummary) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *SecurityProfileSummary) SetArn(v string) *SecurityProfileSummary { s.Arn = &v return s } // SetId sets the Id field's value. func (s *SecurityProfileSummary) SetId(v string) *SecurityProfileSummary { s.Id = &v return s } // SetName sets the Name field's value. func (s *SecurityProfileSummary) SetName(v string) *SecurityProfileSummary { s.Name = &v return s } type StartOutboundVoiceContactInput struct { _ struct{} `type:"structure"` // Specify a custom key-value pair using an attribute map. The attributes are // standard Amazon Connect attributes, and can be accessed in contact flows // just like any other contact attributes. // // There can be up to 32,768 UTF-8 bytes across all key-value pairs. Attribute // keys can include only alphanumeric, dash, and underscore characters. // // For example, if you want play a greeting when the customer answers the call, // you can pass the customer name in attributes similar to the following: Attributes map[string]*string `type:"map"` // A unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. The token is valid for 7 days after creation. If a contact // is already started, the contact ID is returned. If the contact is disconnected, // a new contact is started. ClientToken *string `type:"string" idempotencyToken:"true"` // The identifier for the contact flow to connect the outbound call to. // // To find the ContactFlowId, open the contact flow you want to use in the Amazon // Connect contact flow editor. The ID for the contact flow is displayed in // the address bar as part of the URL. For example, the contact flow ID is the // set of characters at the end of the URL, after 'contact-flow/' such as 78ea8fd5-2659-4f2b-b528-699760ccfc1b. // // ContactFlowId is a required field ContactFlowId *string `type:"string" required:"true"` // The phone number of the customer in E.164 format. // // DestinationPhoneNumber is a required field DestinationPhoneNumber *string `type:"string" required:"true"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `min:"1" type:"string" required:"true"` // The queue to add the call to. If you specify a queue, the phone displayed // for caller ID is the phone number specified in the queue. If you do not specify // a queue, the queue used will be the queue defined in the contact flow. // // To find the QueueId, open the queue you want to use in the Amazon Connect // Queue editor. The ID for the queue is displayed in the address bar as part // of the URL. For example, the queue ID is the set of characters at the end // of the URL, after 'queue/' such as queue/aeg40574-2d01-51c3-73d6-bf8624d2168c. QueueId *string `type:"string"` // The phone number, in E.164 format, associated with your Amazon Connect instance // to use for the outbound call. SourcePhoneNumber *string `type:"string"` } // String returns the string representation func (s StartOutboundVoiceContactInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s StartOutboundVoiceContactInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *StartOutboundVoiceContactInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "StartOutboundVoiceContactInput"} if s.ContactFlowId == nil { invalidParams.Add(request.NewErrParamRequired("ContactFlowId")) } if s.DestinationPhoneNumber == nil { invalidParams.Add(request.NewErrParamRequired("DestinationPhoneNumber")) } if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAttributes sets the Attributes field's value. func (s *StartOutboundVoiceContactInput) SetAttributes(v map[string]*string) *StartOutboundVoiceContactInput { s.Attributes = v return s } // SetClientToken sets the ClientToken field's value. func (s *StartOutboundVoiceContactInput) SetClientToken(v string) *StartOutboundVoiceContactInput { s.ClientToken = &v return s } // SetContactFlowId sets the ContactFlowId field's value. func (s *StartOutboundVoiceContactInput) SetContactFlowId(v string) *StartOutboundVoiceContactInput { s.ContactFlowId = &v return s } // SetDestinationPhoneNumber sets the DestinationPhoneNumber field's value. func (s *StartOutboundVoiceContactInput) SetDestinationPhoneNumber(v string) *StartOutboundVoiceContactInput { s.DestinationPhoneNumber = &v return s } // SetInstanceId sets the InstanceId field's value. func (s *StartOutboundVoiceContactInput) SetInstanceId(v string) *StartOutboundVoiceContactInput { s.InstanceId = &v return s } // SetQueueId sets the QueueId field's value. func (s *StartOutboundVoiceContactInput) SetQueueId(v string) *StartOutboundVoiceContactInput { s.QueueId = &v return s } // SetSourcePhoneNumber sets the SourcePhoneNumber field's value. func (s *StartOutboundVoiceContactInput) SetSourcePhoneNumber(v string) *StartOutboundVoiceContactInput { s.SourcePhoneNumber = &v return s } type StartOutboundVoiceContactOutput struct { _ struct{} `type:"structure"` // The unique identifier of this contact within your Amazon Connect instance. ContactId *string `min:"1" type:"string"` } // String returns the string representation func (s StartOutboundVoiceContactOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s StartOutboundVoiceContactOutput) GoString() string { return s.String() } // SetContactId sets the ContactId field's value. func (s *StartOutboundVoiceContactOutput) SetContactId(v string) *StartOutboundVoiceContactOutput { s.ContactId = &v return s } type StopContactInput struct { _ struct{} `type:"structure"` // The unique identifier of the contact to end. // // ContactId is a required field ContactId *string `min:"1" type:"string" required:"true"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `min:"1" type:"string" required:"true"` } // String returns the string representation func (s StopContactInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s StopContactInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *StopContactInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "StopContactInput"} if s.ContactId == nil { invalidParams.Add(request.NewErrParamRequired("ContactId")) } if s.ContactId != nil && len(*s.ContactId) < 1 { invalidParams.Add(request.NewErrParamMinLen("ContactId", 1)) } if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetContactId sets the ContactId field's value. func (s *StopContactInput) SetContactId(v string) *StopContactInput { s.ContactId = &v return s } // SetInstanceId sets the InstanceId field's value. func (s *StopContactInput) SetInstanceId(v string) *StopContactInput { s.InstanceId = &v return s } type StopContactOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s StopContactOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s StopContactOutput) GoString() string { return s.String() } type UpdateUserHierarchyInput struct { _ struct{} `type:"structure"` // The identifier for the hierarchy group to assign to the user. HierarchyGroupId *string `type:"string"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The identifier of the user account to assign the hierarchy group to. // // UserId is a required field UserId *string `location:"uri" locationName:"UserId" type:"string" required:"true"` } // String returns the string representation func (s UpdateUserHierarchyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserHierarchyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateUserHierarchyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateUserHierarchyInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.UserId == nil { invalidParams.Add(request.NewErrParamRequired("UserId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetHierarchyGroupId sets the HierarchyGroupId field's value. func (s *UpdateUserHierarchyInput) SetHierarchyGroupId(v string) *UpdateUserHierarchyInput { s.HierarchyGroupId = &v return s } // SetInstanceId sets the InstanceId field's value. func (s *UpdateUserHierarchyInput) SetInstanceId(v string) *UpdateUserHierarchyInput { s.InstanceId = &v return s } // SetUserId sets the UserId field's value. func (s *UpdateUserHierarchyInput) SetUserId(v string) *UpdateUserHierarchyInput { s.UserId = &v return s } type UpdateUserHierarchyOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s UpdateUserHierarchyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserHierarchyOutput) GoString() string { return s.String() } type UpdateUserIdentityInfoInput struct { _ struct{} `type:"structure"` // A UserIdentityInfo object. // // IdentityInfo is a required field IdentityInfo *UserIdentityInfo `type:"structure" required:"true"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The identifier for the user account to update identity information for. // // UserId is a required field UserId *string `location:"uri" locationName:"UserId" type:"string" required:"true"` } // String returns the string representation func (s UpdateUserIdentityInfoInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserIdentityInfoInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateUserIdentityInfoInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateUserIdentityInfoInput"} if s.IdentityInfo == nil { invalidParams.Add(request.NewErrParamRequired("IdentityInfo")) } if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.UserId == nil { invalidParams.Add(request.NewErrParamRequired("UserId")) } if s.IdentityInfo != nil { if err := s.IdentityInfo.Validate(); err != nil { invalidParams.AddNested("IdentityInfo", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetIdentityInfo sets the IdentityInfo field's value. func (s *UpdateUserIdentityInfoInput) SetIdentityInfo(v *UserIdentityInfo) *UpdateUserIdentityInfoInput { s.IdentityInfo = v return s } // SetInstanceId sets the InstanceId field's value. func (s *UpdateUserIdentityInfoInput) SetInstanceId(v string) *UpdateUserIdentityInfoInput { s.InstanceId = &v return s } // SetUserId sets the UserId field's value. func (s *UpdateUserIdentityInfoInput) SetUserId(v string) *UpdateUserIdentityInfoInput { s.UserId = &v return s } type UpdateUserIdentityInfoOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s UpdateUserIdentityInfoOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserIdentityInfoOutput) GoString() string { return s.String() } type UpdateUserPhoneConfigInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // A UserPhoneConfig object that contains settings for AfterContactWorkTimeLimit, // AutoAccept, DeskPhoneNumber, and PhoneType to assign to the user. // // PhoneConfig is a required field PhoneConfig *UserPhoneConfig `type:"structure" required:"true"` // The identifier for the user account to change phone settings for. // // UserId is a required field UserId *string `location:"uri" locationName:"UserId" type:"string" required:"true"` } // String returns the string representation func (s UpdateUserPhoneConfigInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserPhoneConfigInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateUserPhoneConfigInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateUserPhoneConfigInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.PhoneConfig == nil { invalidParams.Add(request.NewErrParamRequired("PhoneConfig")) } if s.UserId == nil { invalidParams.Add(request.NewErrParamRequired("UserId")) } if s.PhoneConfig != nil { if err := s.PhoneConfig.Validate(); err != nil { invalidParams.AddNested("PhoneConfig", err.(request.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *UpdateUserPhoneConfigInput) SetInstanceId(v string) *UpdateUserPhoneConfigInput { s.InstanceId = &v return s } // SetPhoneConfig sets the PhoneConfig field's value. func (s *UpdateUserPhoneConfigInput) SetPhoneConfig(v *UserPhoneConfig) *UpdateUserPhoneConfigInput { s.PhoneConfig = v return s } // SetUserId sets the UserId field's value. func (s *UpdateUserPhoneConfigInput) SetUserId(v string) *UpdateUserPhoneConfigInput { s.UserId = &v return s } type UpdateUserPhoneConfigOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s UpdateUserPhoneConfigOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserPhoneConfigOutput) GoString() string { return s.String() } type UpdateUserRoutingProfileInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The identifier of the routing profile to assign to the user. // // RoutingProfileId is a required field RoutingProfileId *string `type:"string" required:"true"` // The identifier for the user account to assign the routing profile to. // // UserId is a required field UserId *string `location:"uri" locationName:"UserId" type:"string" required:"true"` } // String returns the string representation func (s UpdateUserRoutingProfileInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserRoutingProfileInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateUserRoutingProfileInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateUserRoutingProfileInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.RoutingProfileId == nil { invalidParams.Add(request.NewErrParamRequired("RoutingProfileId")) } if s.UserId == nil { invalidParams.Add(request.NewErrParamRequired("UserId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *UpdateUserRoutingProfileInput) SetInstanceId(v string) *UpdateUserRoutingProfileInput { s.InstanceId = &v return s } // SetRoutingProfileId sets the RoutingProfileId field's value. func (s *UpdateUserRoutingProfileInput) SetRoutingProfileId(v string) *UpdateUserRoutingProfileInput { s.RoutingProfileId = &v return s } // SetUserId sets the UserId field's value. func (s *UpdateUserRoutingProfileInput) SetUserId(v string) *UpdateUserRoutingProfileInput { s.UserId = &v return s } type UpdateUserRoutingProfileOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s UpdateUserRoutingProfileOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserRoutingProfileOutput) GoString() string { return s.String() } type UpdateUserSecurityProfilesInput struct { _ struct{} `type:"structure"` // The identifier for your Amazon Connect instance. To find the ID of your instance, // open the AWS console and select Amazon Connect. Select the alias of the instance // in the Instance alias column. The instance ID is displayed in the Overview // section of your instance settings. For example, the instance ID is the set // of characters at the end of the instance ARN, after instance/, such as 10a4c4eb-f57e-4d4c-b602-bf39176ced07. // // InstanceId is a required field InstanceId *string `location:"uri" locationName:"InstanceId" min:"1" type:"string" required:"true"` // The identifiers for the security profiles to assign to the user. // // SecurityProfileIds is a required field SecurityProfileIds []*string `min:"1" type:"list" required:"true"` // The identifier of the user account to assign the security profiles. // // UserId is a required field UserId *string `location:"uri" locationName:"UserId" type:"string" required:"true"` } // String returns the string representation func (s UpdateUserSecurityProfilesInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserSecurityProfilesInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UpdateUserSecurityProfilesInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UpdateUserSecurityProfilesInput"} if s.InstanceId == nil { invalidParams.Add(request.NewErrParamRequired("InstanceId")) } if s.InstanceId != nil && len(*s.InstanceId) < 1 { invalidParams.Add(request.NewErrParamMinLen("InstanceId", 1)) } if s.SecurityProfileIds == nil { invalidParams.Add(request.NewErrParamRequired("SecurityProfileIds")) } if s.SecurityProfileIds != nil && len(s.SecurityProfileIds) < 1 { invalidParams.Add(request.NewErrParamMinLen("SecurityProfileIds", 1)) } if s.UserId == nil { invalidParams.Add(request.NewErrParamRequired("UserId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetInstanceId sets the InstanceId field's value. func (s *UpdateUserSecurityProfilesInput) SetInstanceId(v string) *UpdateUserSecurityProfilesInput { s.InstanceId = &v return s } // SetSecurityProfileIds sets the SecurityProfileIds field's value. func (s *UpdateUserSecurityProfilesInput) SetSecurityProfileIds(v []*string) *UpdateUserSecurityProfilesInput { s.SecurityProfileIds = v return s } // SetUserId sets the UserId field's value. func (s *UpdateUserSecurityProfilesInput) SetUserId(v string) *UpdateUserSecurityProfilesInput { s.UserId = &v return s } type UpdateUserSecurityProfilesOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s UpdateUserSecurityProfilesOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UpdateUserSecurityProfilesOutput) GoString() string { return s.String() } // A User object that contains information about a user account in your Amazon // Connect instance, including configuration settings. type User struct { _ struct{} `type:"structure"` // The ARN of the user account. Arn *string `type:"string"` // The directory Id for the user account in the existing directory used for // identity management. DirectoryUserId *string `type:"string"` // The identifier for the hierarchy group assigned to the user. HierarchyGroupId *string `type:"string"` // The identifier of the user account. Id *string `type:"string"` // A UserIdentityInfo object. IdentityInfo *UserIdentityInfo `type:"structure"` // A UserPhoneConfig object. PhoneConfig *UserPhoneConfig `type:"structure"` // The identifier of the routing profile assigned to the user. RoutingProfileId *string `type:"string"` // The identifier(s) for the security profile assigned to the user. SecurityProfileIds []*string `min:"1" type:"list"` // The user name assigned to the user account. Username *string `min:"1" type:"string"` } // String returns the string representation func (s User) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s User) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *User) SetArn(v string) *User { s.Arn = &v return s } // SetDirectoryUserId sets the DirectoryUserId field's value. func (s *User) SetDirectoryUserId(v string) *User { s.DirectoryUserId = &v return s } // SetHierarchyGroupId sets the HierarchyGroupId field's value. func (s *User) SetHierarchyGroupId(v string) *User { s.HierarchyGroupId = &v return s } // SetId sets the Id field's value. func (s *User) SetId(v string) *User { s.Id = &v return s } // SetIdentityInfo sets the IdentityInfo field's value. func (s *User) SetIdentityInfo(v *UserIdentityInfo) *User { s.IdentityInfo = v return s } // SetPhoneConfig sets the PhoneConfig field's value. func (s *User) SetPhoneConfig(v *UserPhoneConfig) *User { s.PhoneConfig = v return s } // SetRoutingProfileId sets the RoutingProfileId field's value. func (s *User) SetRoutingProfileId(v string) *User { s.RoutingProfileId = &v return s } // SetSecurityProfileIds sets the SecurityProfileIds field's value. func (s *User) SetSecurityProfileIds(v []*string) *User { s.SecurityProfileIds = v return s } // SetUsername sets the Username field's value. func (s *User) SetUsername(v string) *User { s.Username = &v return s } // A UserIdentityInfo object that contains information about the user's identity, // including email address, first name, and last name. type UserIdentityInfo struct { _ struct{} `type:"structure"` // The email address added to the user account. If you are using SAML for identity // management and include this parameter, an InvalidRequestException is returned. Email *string `type:"string"` // The first name used in the user account. This is required if you are using // Amazon Connect or SAML for identity management. FirstName *string `min:"1" type:"string"` // The last name used in the user account. This is required if you are using // Amazon Connect or SAML for identity management. LastName *string `min:"1" type:"string"` } // String returns the string representation func (s UserIdentityInfo) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UserIdentityInfo) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UserIdentityInfo) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UserIdentityInfo"} if s.FirstName != nil && len(*s.FirstName) < 1 { invalidParams.Add(request.NewErrParamMinLen("FirstName", 1)) } if s.LastName != nil && len(*s.LastName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LastName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetEmail sets the Email field's value. func (s *UserIdentityInfo) SetEmail(v string) *UserIdentityInfo { s.Email = &v return s } // SetFirstName sets the FirstName field's value. func (s *UserIdentityInfo) SetFirstName(v string) *UserIdentityInfo { s.FirstName = &v return s } // SetLastName sets the LastName field's value. func (s *UserIdentityInfo) SetLastName(v string) *UserIdentityInfo { s.LastName = &v return s } // A UserPhoneConfig object that contains information about the user phone configuration // settings. type UserPhoneConfig struct { _ struct{} `type:"structure"` // The After Call Work (ACW) timeout setting, in seconds, for the user. AfterContactWorkTimeLimit *int64 `type:"integer"` // The Auto accept setting for the user, Yes or No. AutoAccept *bool `type:"boolean"` // The phone number for the user's desk phone. DeskPhoneNumber *string `type:"string"` // The phone type selected for the user, either Soft phone or Desk phone. // // PhoneType is a required field PhoneType *string `type:"string" required:"true" enum:"PhoneType"` } // String returns the string representation func (s UserPhoneConfig) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UserPhoneConfig) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UserPhoneConfig) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UserPhoneConfig"} if s.PhoneType == nil { invalidParams.Add(request.NewErrParamRequired("PhoneType")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAfterContactWorkTimeLimit sets the AfterContactWorkTimeLimit field's value. func (s *UserPhoneConfig) SetAfterContactWorkTimeLimit(v int64) *UserPhoneConfig { s.AfterContactWorkTimeLimit = &v return s } // SetAutoAccept sets the AutoAccept field's value. func (s *UserPhoneConfig) SetAutoAccept(v bool) *UserPhoneConfig { s.AutoAccept = &v return s } // SetDeskPhoneNumber sets the DeskPhoneNumber field's value. func (s *UserPhoneConfig) SetDeskPhoneNumber(v string) *UserPhoneConfig { s.DeskPhoneNumber = &v return s } // SetPhoneType sets the PhoneType field's value. func (s *UserPhoneConfig) SetPhoneType(v string) *UserPhoneConfig { s.PhoneType = &v return s } // A UserSummary object that contains Information about a user, including ARN, // Id, and user name. type UserSummary struct { _ struct{} `type:"structure"` // The ARN for the user account. Arn *string `type:"string"` // The identifier for the user account. Id *string `type:"string"` // The Amazon Connect user name for the user account. Username *string `min:"1" type:"string"` } // String returns the string representation func (s UserSummary) String() string { return awsutil.Prettify(s) } // GoString returns the string representation func (s UserSummary) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *UserSummary) SetArn(v string) *UserSummary { s.Arn = &v return s } // SetId sets the Id field's value. func (s *UserSummary) SetId(v string) *UserSummary { s.Id = &v return s } // SetUsername sets the Username field's value. func (s *UserSummary) SetUsername(v string) *UserSummary { s.Username = &v return s } const ( // PhoneTypeSoftPhone is a PhoneType enum value PhoneTypeSoftPhone = "SOFT_PHONE" // PhoneTypeDeskPhone is a PhoneType enum value PhoneTypeDeskPhone = "DESK_PHONE" )