Class: Aws::Lambda::Types::ResolvedS3Object

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Details about the resolved Amazon S3 object that contains a function's deployment package.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_bucketString

The Amazon S3 bucket that contains the deployment package.

Returns:

  • (String)


8411
8412
8413
8414
8415
8416
8417
# File 'lib/aws-sdk-lambda/types.rb', line 8411

class ResolvedS3Object < Struct.new(
  :s3_bucket,
  :s3_key,
  :s3_object_version)
  SENSITIVE = []
  include Aws::Structure
end

#s3_keyString

The Amazon S3 key of the deployment package.

Returns:

  • (String)


8411
8412
8413
8414
8415
8416
8417
# File 'lib/aws-sdk-lambda/types.rb', line 8411

class ResolvedS3Object < Struct.new(
  :s3_bucket,
  :s3_key,
  :s3_object_version)
  SENSITIVE = []
  include Aws::Structure
end

#s3_object_versionString

The version of the deployment package object.

Returns:

  • (String)


8411
8412
8413
8414
8415
8416
8417
# File 'lib/aws-sdk-lambda/types.rb', line 8411

class ResolvedS3Object < Struct.new(
  :s3_bucket,
  :s3_key,
  :s3_object_version)
  SENSITIVE = []
  include Aws::Structure
end