Class: Aws::Lambda::Types::FunctionCodeLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::FunctionCodeLocation
- Includes:
- Structure
- Defined in:
- 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.
-
#source_kms_key_arn ⇒ String
The ARN of the Key Management Service (KMS) customer managed key that’s used to encrypt your function’s .zip deployment package.
Instance Attribute Details
#image_uri ⇒ String
URI of a container image in the Amazon ECR registry.
2255 2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class FunctionCodeLocation < Struct.new( :repository_type, :location, :image_uri, :resolved_image_uri, :source_kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#location ⇒ String
A presigned URL that you can use to download the deployment package.
2255 2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class FunctionCodeLocation < Struct.new( :repository_type, :location, :image_uri, :resolved_image_uri, :source_kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#repository_type ⇒ String
The service that’s hosting the file.
2255 2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class FunctionCodeLocation < Struct.new( :repository_type, :location, :image_uri, :resolved_image_uri, :source_kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#resolved_image_uri ⇒ String
The resolved URI for the image.
2255 2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class FunctionCodeLocation < Struct.new( :repository_type, :location, :image_uri, :resolved_image_uri, :source_kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#source_kms_key_arn ⇒ String
The ARN of the Key Management Service (KMS) customer managed key that’s used to encrypt your function’s .zip deployment package. If you don’t provide a customer managed key, Lambda uses an [Amazon Web Services owned key].
[1]: docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
2255 2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class FunctionCodeLocation < Struct.new( :repository_type, :location, :image_uri, :resolved_image_uri, :source_kms_key_arn) SENSITIVE = [] include Aws::Structure end |