Class: Aws::PartnerCentralSelling::Types::ResourceSnapshotPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::ResourceSnapshotPayload
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
ResourceSnapshotPayload is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceSnapshotPayload corresponding to the set member.
Represents the payload of a resource snapshot. This structure is designed to accommodate different types of resource snapshots, currently supporting opportunity summaries.
Direct Known Subclasses
Defined Under Namespace
Classes: AwsOpportunitySummaryFullView, OpportunitySummary, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_opportunity_summary_full_view ⇒ Types::AwsOpportunitySummaryFullView
Provides a comprehensive view of AwsOpportunitySummaryFullView template.
-
#opportunity_summary ⇒ Types::OpportunitySummaryView
An object that contains an
opportunity's subset of fields. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#aws_opportunity_summary_full_view ⇒ Types::AwsOpportunitySummaryFullView
Provides a comprehensive view of AwsOpportunitySummaryFullView template.
5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 5698 class ResourceSnapshotPayload < Struct.new( :opportunity_summary, :aws_opportunity_summary_full_view, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class OpportunitySummary < ResourceSnapshotPayload; end class AwsOpportunitySummaryFullView < ResourceSnapshotPayload; end class Unknown < ResourceSnapshotPayload; end end |
#opportunity_summary ⇒ Types::OpportunitySummaryView
An object that contains an opportunity's subset of fields.
5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 5698 class ResourceSnapshotPayload < Struct.new( :opportunity_summary, :aws_opportunity_summary_full_view, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class OpportunitySummary < ResourceSnapshotPayload; end class AwsOpportunitySummaryFullView < ResourceSnapshotPayload; end class Unknown < ResourceSnapshotPayload; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
5698 5699 5700 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 5698 def unknown @unknown end |