Class: Aws::Lambda::Types::FunctionCodeLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::FunctionCodeLocation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
The object for the Lambda function location.
Instance Attribute Summary collapse
-
#location ⇒ String
The presigned URL you can use to download the function’s .zip file that you previously uploaded.
-
#repository_type ⇒ String
The repository from which you can download the function.
Instance Attribute Details
#location ⇒ String
The presigned URL you can use to download the function’s .zip file that you previously uploaded. The URL is valid for up to 10 minutes.
837 838 839 840 841 |
# File 'lib/aws-sdk-lambda/types.rb', line 837 class FunctionCodeLocation < Struct.new( :repository_type, :location) include Aws::Structure end |
#repository_type ⇒ String
The repository from which you can download the function.
837 838 839 840 841 |
# File 'lib/aws-sdk-lambda/types.rb', line 837 class FunctionCodeLocation < Struct.new( :repository_type, :location) include Aws::Structure end |