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

Class: Aws::Snowball::Types::JobResource

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

Overview

Note:

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

{
  s3_resources: [
    {
      bucket_arn: "ResourceARN",
      key_range: {
        begin_marker: "String",
        end_marker: "String",
      },
    },
  ],
  lambda_resources: [
    {
      lambda_arn: "ResourceARN",
      event_triggers: [
        {
          event_resource_arn: "ResourceARN",
        },
      ],
    },
  ],
  ec2_ami_resources: [
    {
      ami_id: "AmiId", # required
      snowball_ami_id: "String",
    },
  ],
}

Contains an array of AWS resource objects. Each object represents an Amazon S3 bucket, an AWS Lambda function, or an Amazon Machine Image (AMI) based on Amazon EC2 that is associated with a particular job.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#ec2_ami_resourcesArray<Types::Ec2AmiResource>

The Amazon Machine Images (AMIs) associated with this job.

Returns:

#lambda_resourcesArray<Types::LambdaResource>

The Python-language Lambda functions for this job.

Returns:

#s3_resourcesArray<Types::S3Resource>

An array of S3Resource objects.

Returns: