Class: Aws::PartnerCentralSelling::Types::ResourceSnapshotPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::ResourceSnapshotPayload
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-partnercentralselling/types.rb
Overview
Note:
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: OpportunitySummary, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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
#opportunity_summary ⇒ Types::OpportunitySummaryView
An object that contains an ‘opportunity`’s subset of fields.
4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 4710 class ResourceSnapshotPayload < Struct.new( :opportunity_summary, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class OpportunitySummary < ResourceSnapshotPayload; end class Unknown < ResourceSnapshotPayload; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4710 4711 4712 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 4710 def unknown @unknown end |