Class: Aws::Greengrass::Types::Resource

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb

Overview

Information about a resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

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.

Returns:

  • (String)


4062
4063
4064
4065
4066
4067
4068
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 4062

class Resource < Struct.new(
  :id,
  :name,
  :resource_data_container)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

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.

Returns:

  • (String)


4062
4063
4064
4065
4066
4067
4068
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 4062

class Resource < Struct.new(
  :id,
  :name,
  :resource_data_container)
  SENSITIVE = []
  include Aws::Structure
end

#resource_data_containerTypes::ResourceDataContainer

A container of data for all resource types.



4062
4063
4064
4065
4066
4067
4068
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 4062

class Resource < Struct.new(
  :id,
  :name,
  :resource_data_container)
  SENSITIVE = []
  include Aws::Structure
end