Class: Aws::PartnerCentralSelling::Types::AssigneeContact

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb

Overview

Represents the contact details of the individual assigned to manage the opportunity within the partner organization. This helps to ensure that there is a point of contact for the opportunity's progress.

Constant Summary collapse

SENSITIVE =
[:business_title, :email, :first_name, :last_name]

Instance Attribute Summary collapse

Instance Attribute Details

#business_titleString

Specifies the business title of the assignee managing the opportunity. This helps clarify the individual's role and responsibilities within the organization. Use the value PartnerAccountManager to update details of the opportunity owner.

Returns:

  • (String)


320
321
322
323
324
325
326
327
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 320

class AssigneeContact < Struct.new(
  :business_title,
  :email,
  :first_name,
  :last_name)
  SENSITIVE = [:business_title, :email, :first_name, :last_name]
  include Aws::Structure
end

#emailString

Provides the email address of the assignee. This email is used for communications and notifications related to the opportunity.

Returns:

  • (String)


320
321
322
323
324
325
326
327
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 320

class AssigneeContact < Struct.new(
  :business_title,
  :email,
  :first_name,
  :last_name)
  SENSITIVE = [:business_title, :email, :first_name, :last_name]
  include Aws::Structure
end

#first_nameString

Specifies the first name of the assignee managing the opportunity. The system automatically retrieves this value from the user profile by referencing the associated email address.

Returns:

  • (String)


320
321
322
323
324
325
326
327
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 320

class AssigneeContact < Struct.new(
  :business_title,
  :email,
  :first_name,
  :last_name)
  SENSITIVE = [:business_title, :email, :first_name, :last_name]
  include Aws::Structure
end

#last_nameString

Specifies the last name of the assignee managing the opportunity. The system automatically retrieves this value from the user profile by referencing the associated email address.

Returns:

  • (String)


320
321
322
323
324
325
326
327
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 320

class AssigneeContact < Struct.new(
  :business_title,
  :email,
  :first_name,
  :last_name)
  SENSITIVE = [:business_title, :email, :first_name, :last_name]
  include Aws::Structure
end