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)


8516
8517
8518
8519
8520
8521
8522
# File 'lib/aws-sdk-lambda/types.rb', line 8516

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)


8516
8517
8518
8519
8520
8521
8522
# File 'lib/aws-sdk-lambda/types.rb', line 8516

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)


8516
8517
8518
8519
8520
8521
8522
# File 'lib/aws-sdk-lambda/types.rb', line 8516

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