Class: Aws::Lambda::Types::FunctionCodeLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::FunctionCodeLocation
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Details about a function's deployment package.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_uri ⇒ String
URI of a container image in the Amazon ECR registry.
-
#location ⇒ String
A presigned URL that you can use to download the deployment package.
-
#repository_type ⇒ String
The service that's hosting the file.
-
#resolved_image_uri ⇒ String
The resolved URI for the image.
Instance Attribute Details
#image_uri ⇒ String
URI of a container image in the Amazon ECR registry.
2119 2120 2121 2122 2123 2124 2125 2126 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2119 class FunctionCodeLocation < Struct.new( :repository_type, :location, :image_uri, :resolved_image_uri) SENSITIVE = [] include Aws::Structure end |
#location ⇒ String
A presigned URL that you can use to download the deployment package.
2119 2120 2121 2122 2123 2124 2125 2126 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2119 class FunctionCodeLocation < Struct.new( :repository_type, :location, :image_uri, :resolved_image_uri) SENSITIVE = [] include Aws::Structure end |
#repository_type ⇒ String
The service that's hosting the file.
2119 2120 2121 2122 2123 2124 2125 2126 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2119 class FunctionCodeLocation < Struct.new( :repository_type, :location, :image_uri, :resolved_image_uri) SENSITIVE = [] include Aws::Structure end |
#resolved_image_uri ⇒ String
The resolved URI for the image.
2119 2120 2121 2122 2123 2124 2125 2126 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2119 class FunctionCodeLocation < Struct.new( :repository_type, :location, :image_uri, :resolved_image_uri) SENSITIVE = [] include Aws::Structure end |