Class: Aws::IoTSiteWise::Types::Resource
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Resource
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Note:
When making an API call, you may pass Resource data as a hash:
{
portal: {
id: "ID", # required
},
project: {
id: "ID", # required
},
}
Contains an AWS IoT SiteWise Monitor resource ID for a portal or project.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#portal ⇒ Types::PortalResource
A portal resource.
-
#project ⇒ Types::ProjectResource
A project resource.
Instance Attribute Details
#portal ⇒ Types::PortalResource
A portal resource.
4946 4947 4948 4949 4950 4951 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 4946 class Resource < Struct.new( :portal, :project) SENSITIVE = [] include Aws::Structure end |
#project ⇒ Types::ProjectResource
A project resource.
4946 4947 4948 4949 4950 4951 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 4946 class Resource < Struct.new( :portal, :project) SENSITIVE = [] include Aws::Structure end |