Class: Aws::PartnerCentralSelling::Types::ExpectedCustomerSpend
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::ExpectedCustomerSpend
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
Provides an estimate of the revenue that the partner is expected to generate from the opportunity. This information helps partners assess the financial value of the project.
Constant Summary collapse
- SENSITIVE =
[:amount, :currency_code, :estimation_url]
Instance Attribute Summary collapse
-
#amount ⇒ String
Represents the estimated monthly revenue that the partner expects to earn from the opportunity.
-
#currency_code ⇒ String
Indicates the currency in which the revenue estimate is provided.
-
#estimation_url ⇒ String
A URL providing additional information or context about the spend estimation.
-
#frequency ⇒ String
Indicates how frequently the customer is expected to spend the projected amount.
-
#target_company ⇒ String
Specifies the name of the partner company that is expected to generate revenue from the opportunity.
Instance Attribute Details
#amount ⇒ String
Represents the estimated monthly revenue that the partner expects to earn from the opportunity. This helps in forecasting financial returns.
1681 1682 1683 1684 1685 1686 1687 1688 1689 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1681 class ExpectedCustomerSpend < Struct.new( :amount, :currency_code, :frequency, :target_company, :estimation_url) SENSITIVE = [:amount, :currency_code, :estimation_url] include Aws::Structure end |
#currency_code ⇒ String
Indicates the currency in which the revenue estimate is provided. This helps in understanding the financial impact across different markets.
1681 1682 1683 1684 1685 1686 1687 1688 1689 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1681 class ExpectedCustomerSpend < Struct.new( :amount, :currency_code, :frequency, :target_company, :estimation_url) SENSITIVE = [:amount, :currency_code, :estimation_url] include Aws::Structure end |
#estimation_url ⇒ String
A URL providing additional information or context about the spend estimation.
1681 1682 1683 1684 1685 1686 1687 1688 1689 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1681 class ExpectedCustomerSpend < Struct.new( :amount, :currency_code, :frequency, :target_company, :estimation_url) SENSITIVE = [:amount, :currency_code, :estimation_url] include Aws::Structure end |
#frequency ⇒ String
Indicates how frequently the customer is expected to spend the
projected amount. Only the value Monthly
is allowed for the
Frequency
field, representing recurring monthly spend.
1681 1682 1683 1684 1685 1686 1687 1688 1689 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1681 class ExpectedCustomerSpend < Struct.new( :amount, :currency_code, :frequency, :target_company, :estimation_url) SENSITIVE = [:amount, :currency_code, :estimation_url] include Aws::Structure end |
#target_company ⇒ String
Specifies the name of the partner company that is expected to
generate revenue from the opportunity. This field helps track the
partner’s involvement in the opportunity. This field only accepts
the value AWS
. If any other value is provided, the system will
automatically set it to AWS
.
1681 1682 1683 1684 1685 1686 1687 1688 1689 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1681 class ExpectedCustomerSpend < Struct.new( :amount, :currency_code, :frequency, :target_company, :estimation_url) SENSITIVE = [:amount, :currency_code, :estimation_url] include Aws::Structure end |