Class: Aws::Greengrass::Types::Resource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::Resource
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrass/types.rb
Overview
Information about a resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The resource ID, used to refer to a resource in the Lambda function configuration.
-
#name ⇒ String
The descriptive resource name, which is displayed on the AWS IoT Greengrass console.
-
#resource_data_container ⇒ Types::ResourceDataContainer
A container of data for all resource types.
Instance Attribute Details
#id ⇒ String
The resource ID, used to refer to a resource in the Lambda function configuration. Max length is 128 characters with pattern ”[a-zA-Z0-9:_-]+”. This must be unique within a Greengrass group.
4062 4063 4064 4065 4066 4067 4068 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4062 class Resource < Struct.new( :id, :name, :resource_data_container) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The descriptive resource name, which is displayed on the AWS IoT Greengrass console. Max length 128 characters with pattern ”[a-zA-Z0-9:_-]+”. This must be unique within a Greengrass group.
4062 4063 4064 4065 4066 4067 4068 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4062 class Resource < Struct.new( :id, :name, :resource_data_container) SENSITIVE = [] include Aws::Structure end |
#resource_data_container ⇒ Types::ResourceDataContainer
A container of data for all resource types.
4062 4063 4064 4065 4066 4067 4068 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4062 class Resource < Struct.new( :id, :name, :resource_data_container) SENSITIVE = [] include Aws::Structure end |