Class: Aws::IoTThingsGraph::Types::GetSystemTemplateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::GetSystemTemplateRequest
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Note:
When making an API call, you may pass GetSystemTemplateRequest data as a hash:
{
id: "Urn", # required
revision_number: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the system to get.
-
#revision_number ⇒ Integer
The number that specifies the revision of the system to get.
Instance Attribute Details
#id ⇒ String
The ID of the system to get. This ID must be in the user's namespace.
The ID should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:system:SYSTEMNAME
917 918 919 920 921 922 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 917 class GetSystemTemplateRequest < Struct.new( :id, :revision_number) SENSITIVE = [] include Aws::Structure end |
#revision_number ⇒ Integer
The number that specifies the revision of the system to get.
917 918 919 920 921 922 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 917 class GetSystemTemplateRequest < Struct.new( :id, :revision_number) SENSITIVE = [] include Aws::Structure end |