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.
911 912 913 914 915 |
# File 'lib/aws-sdk-lambda/types.rb', line 911 class FunctionCodeLocation < Struct.new( :repository_type, :location) include Aws::Structure end |
#repository_type ⇒ String
The repository from which you can download the function.
911 912 913 914 915 |
# File 'lib/aws-sdk-lambda/types.rb', line 911 class FunctionCodeLocation < Struct.new( :repository_type, :location) include Aws::Structure end |