Class: Aws::LambdaPreview::Types::FunctionCodeLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::LambdaPreview::Types::FunctionCodeLocation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambdapreview/types.rb
Overview
The object for the Lambda function location.
Constant Summary collapse
- SENSITIVE =
[]
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.
150 151 152 153 154 155 |
# File 'lib/aws-sdk-lambdapreview/types.rb', line 150 class FunctionCodeLocation < Struct.new( :repository_type, :location) SENSITIVE = [] include Aws::Structure end |
#repository_type ⇒ String
The repository from which you can download the function.
150 151 152 153 154 155 |
# File 'lib/aws-sdk-lambdapreview/types.rb', line 150 class FunctionCodeLocation < Struct.new( :repository_type, :location) SENSITIVE = [] include Aws::Structure end |