AWSLambdaImageConfig

Objective-C

@interface AWSLambdaImageConfig

Swift

class AWSLambdaImageConfig

Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.

  • Specifies parameters that you want to pass in with ENTRYPOINT.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable command;

    Swift

    var command: [String]? { get set }
  • Specifies the entry point to their application, which is typically the location of the runtime executable.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable entryPoint;

    Swift

    var entryPoint: [String]? { get set }
  • Specifies the working directory.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable workingDirectory;

    Swift

    var workingDirectory: String? { get set }