Class: Aws::SecurityHub::Types::AwsLambdaFunctionCode
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsLambdaFunctionCode
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
The code for the Lambda function. You can specify either an object in Amazon S3, or upload a deployment package directly.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket ⇒ String
An Amazon S3 bucket in the same Amazon Web Services Region as your function.
-
#s3_key ⇒ String
The Amazon S3 key of the deployment package.
-
#s3_object_version ⇒ String
For versioned objects, the version of the deployment package object to use.
-
#zip_file ⇒ String
The base64-encoded contents of the deployment package.
Instance Attribute Details
#s3_bucket ⇒ String
An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.
14467 14468 14469 14470 14471 14472 14473 14474 |
# File 'lib/aws-sdk-securityhub/types.rb', line 14467 class AwsLambdaFunctionCode < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [] include Aws::Structure end |
#s3_key ⇒ String
The Amazon S3 key of the deployment package.
14467 14468 14469 14470 14471 14472 14473 14474 |
# File 'lib/aws-sdk-securityhub/types.rb', line 14467 class AwsLambdaFunctionCode < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [] include Aws::Structure end |
#s3_object_version ⇒ String
For versioned objects, the version of the deployment package object to use.
14467 14468 14469 14470 14471 14472 14473 14474 |
# File 'lib/aws-sdk-securityhub/types.rb', line 14467 class AwsLambdaFunctionCode < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [] include Aws::Structure end |
#zip_file ⇒ String
The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.
14467 14468 14469 14470 14471 14472 14473 14474 |
# File 'lib/aws-sdk-securityhub/types.rb', line 14467 class AwsLambdaFunctionCode < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [] include Aws::Structure end |