Class: Aws::Snowball::Types::JobResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::JobResource
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Contains an array of Amazon Web Services resource objects. Each object represents an Amazon S3 bucket, an Lambda function, or an Amazon Machine Image (AMI) based on Amazon EC2 that is associated with a particular job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ec2_ami_resources ⇒ Array<Types::Ec2AmiResource>
The Amazon Machine Images (AMIs) associated with this job.
-
#lambda_resources ⇒ Array<Types::LambdaResource>
The Python-language Lambda functions for this job.
-
#s3_resources ⇒ Array<Types::S3Resource>
An array of
S3Resource
objects.
Instance Attribute Details
#ec2_ami_resources ⇒ Array<Types::Ec2AmiResource>
The Amazon Machine Images (AMIs) associated with this job.
1664 1665 1666 1667 1668 1669 1670 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1664 class JobResource < Struct.new( :s3_resources, :lambda_resources, :ec2_ami_resources) SENSITIVE = [] include Aws::Structure end |
#lambda_resources ⇒ Array<Types::LambdaResource>
The Python-language Lambda functions for this job.
1664 1665 1666 1667 1668 1669 1670 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1664 class JobResource < Struct.new( :s3_resources, :lambda_resources, :ec2_ami_resources) SENSITIVE = [] include Aws::Structure end |
#s3_resources ⇒ Array<Types::S3Resource>
An array of S3Resource
objects.
1664 1665 1666 1667 1668 1669 1670 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1664 class JobResource < Struct.new( :s3_resources, :lambda_resources, :ec2_ami_resources) SENSITIVE = [] include Aws::Structure end |