You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Resource as input to an Aws::Client method, you can use a vanilla Hash:

{
  id: "__string", # required
  name: "__string", # required
  resource_data_container: { # required
    local_device_resource_data: {
      group_owner_setting: {
        auto_add_group_owner: false,
        group_owner: "__string",
      },
      source_path: "__string",
    },
    local_volume_resource_data: {
      destination_path: "__string",
      group_owner_setting: {
        auto_add_group_owner: false,
        group_owner: "__string",
      },
      source_path: "__string",
    },
    s3_machine_learning_model_resource_data: {
      destination_path: "__string",
      owner_setting: {
        group_owner: "__string", # required
        group_permission: "ro", # required, accepts ro, rw
      },
      s3_uri: "__string",
    },
    sage_maker_machine_learning_model_resource_data: {
      destination_path: "__string",
      owner_setting: {
        group_owner: "__string", # required
        group_permission: "ro", # required, accepts ro, rw
      },
      sage_maker_job_arn: "__string",
    },
    secrets_manager_secret_resource_data: {
      arn: "__string",
      additional_staging_labels_to_download: ["__string"],
    },
  },
}

Information about a resource.

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)

    The resource ID, used to refer to a resource in the Lambda function configuration.

#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)

    The descriptive resource name, which is displayed on the AWS IoT Greengrass console.

#resource_data_containerTypes::ResourceDataContainer

A container of data for all resource types.

Returns: