Class: Aws::DeviceFarm::Types::Offering
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::Offering
- Defined in:
- gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb
Overview
Represents the metadata of a device offering.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A string that describes the offering.
-
#id ⇒ String
The ID that corresponds to a device offering.
-
#platform ⇒ String
The platform of the device (for example,
ANDROID
orIOS
). -
#recurring_charges ⇒ Array<Types::RecurringCharge>
Specifies whether there are recurring charges for the offering.
-
#type ⇒ String
The type of offering (for example,
RECURRING
) for a device.
Instance Attribute Details
#description ⇒ String
A string that describes the offering.
3929 3930 3931 3932 3933 3934 3935 3936 3937 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 3929 class Offering < Struct.new( :id, :description, :type, :platform, :recurring_charges) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID that corresponds to a device offering.
3929 3930 3931 3932 3933 3934 3935 3936 3937 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 3929 class Offering < Struct.new( :id, :description, :type, :platform, :recurring_charges) SENSITIVE = [] include Aws::Structure end |
#platform ⇒ String
The platform of the device (for example, ANDROID
or IOS
).
3929 3930 3931 3932 3933 3934 3935 3936 3937 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 3929 class Offering < Struct.new( :id, :description, :type, :platform, :recurring_charges) SENSITIVE = [] include Aws::Structure end |
#recurring_charges ⇒ Array<Types::RecurringCharge>
Specifies whether there are recurring charges for the offering.
3929 3930 3931 3932 3933 3934 3935 3936 3937 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 3929 class Offering < Struct.new( :id, :description, :type, :platform, :recurring_charges) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of offering (for example, RECURRING
) for a device.
3929 3930 3931 3932 3933 3934 3935 3936 3937 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 3929 class Offering < Struct.new( :id, :description, :type, :platform, :recurring_charges) SENSITIVE = [] include Aws::Structure end |