Class: Aws::PartnerCentralSelling::Types::Account
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::Account
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
Specifies the Customer
's account details associated with the
Opportunity
.
Constant Summary collapse
- SENSITIVE =
[:aws_account_id, :company_name, :duns, :website_url]
Instance Attribute Summary collapse
-
#address ⇒ Types::Address
Specifies the end
Customer
's address details associated with theOpportunity
. -
#aws_account_id ⇒ String
Specifies the
Customer
Amazon Web Services account ID associated with theOpportunity
. -
#company_name ⇒ String
Specifies the end
Customer
's company name associated with theOpportunity
. -
#duns ⇒ String
Indicates the
Customer
DUNS number, if available. -
#industry ⇒ String
Specifies the industry the end
Customer
belongs to that's associated with theOpportunity
. -
#other_industry ⇒ String
Specifies the end
Customer
's industry associated with theOpportunity
, when the selected value in theIndustry
field isOther
. -
#website_url ⇒ String
Specifies the end customer's company website URL associated with the
Opportunity
.
Instance Attribute Details
#address ⇒ Types::Address
Specifies the end Customer
's address details associated with the
Opportunity
.
97 98 99 100 101 102 103 104 105 106 107 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 97 class Account < Struct.new( :address, :aws_account_id, :company_name, :duns, :industry, :other_industry, :website_url) SENSITIVE = [:aws_account_id, :company_name, :duns, :website_url] include Aws::Structure end |
#aws_account_id ⇒ String
Specifies the Customer
Amazon Web Services account ID associated
with the Opportunity
.
97 98 99 100 101 102 103 104 105 106 107 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 97 class Account < Struct.new( :address, :aws_account_id, :company_name, :duns, :industry, :other_industry, :website_url) SENSITIVE = [:aws_account_id, :company_name, :duns, :website_url] include Aws::Structure end |
#company_name ⇒ String
Specifies the end Customer
's company name associated with the
Opportunity
.
97 98 99 100 101 102 103 104 105 106 107 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 97 class Account < Struct.new( :address, :aws_account_id, :company_name, :duns, :industry, :other_industry, :website_url) SENSITIVE = [:aws_account_id, :company_name, :duns, :website_url] include Aws::Structure end |
#duns ⇒ String
Indicates the Customer
DUNS number, if available.
97 98 99 100 101 102 103 104 105 106 107 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 97 class Account < Struct.new( :address, :aws_account_id, :company_name, :duns, :industry, :other_industry, :website_url) SENSITIVE = [:aws_account_id, :company_name, :duns, :website_url] include Aws::Structure end |
#industry ⇒ String
Specifies the industry the end Customer
belongs to that's
associated with the Opportunity
. It refers to the category or
sector where the customer's business operates. This is a required
field.
97 98 99 100 101 102 103 104 105 106 107 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 97 class Account < Struct.new( :address, :aws_account_id, :company_name, :duns, :industry, :other_industry, :website_url) SENSITIVE = [:aws_account_id, :company_name, :duns, :website_url] include Aws::Structure end |
#other_industry ⇒ String
Specifies the end Customer
's industry associated with the
Opportunity
, when the selected value in the Industry
field is
Other
.
97 98 99 100 101 102 103 104 105 106 107 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 97 class Account < Struct.new( :address, :aws_account_id, :company_name, :duns, :industry, :other_industry, :website_url) SENSITIVE = [:aws_account_id, :company_name, :duns, :website_url] include Aws::Structure end |
#website_url ⇒ String
Specifies the end customer's company website URL associated with
the Opportunity
. This value is crucial to map the customer within
the Amazon Web Services CRM system. This field is required in all
cases except when the opportunity is related to national security.
97 98 99 100 101 102 103 104 105 106 107 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 97 class Account < Struct.new( :address, :aws_account_id, :company_name, :duns, :industry, :other_industry, :website_url) SENSITIVE = [:aws_account_id, :company_name, :duns, :website_url] include Aws::Structure end |