ImageConfigResponse — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::ImageConfigResponse
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::ImageConfigResponse show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Response to a GetFunctionConfiguration
request.
Constant Summarycollapse
SENSITIVE =
[]
Instance Attribute Summary collapse
- #error ⇒ Types::ImageConfigError
Error response toGetFunctionConfiguration
. - #image_config ⇒ Types::ImageConfig
Configuration values that override the container image Dockerfile.
Instance Attribute Details
#error ⇒ Types::ImageConfigError
Error response to GetFunctionConfiguration
.
3576 3577 3578 3579 3580 3581 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3576 class ImageConfigResponse < Struct.new( :image_config, :error) SENSITIVE = [] include Aws::Structure end |
---|
#image_config ⇒ Types::ImageConfig
Configuration values that override the container image Dockerfile.
3576 3577 3578 3579 3580 3581 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3576 class ImageConfigResponse < Struct.new( :image_config, :error) SENSITIVE = [] include Aws::Structure end |
---|