AWSLambdaGetRuntimeManagementConfigResponse

Objective-C

@interface AWSLambdaGetRuntimeManagementConfigResponse

Swift

class AWSLambdaGetRuntimeManagementConfigResponse
  • The Amazon Resource Name (ARN) of your function.

    Declaration

    Objective-C

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

    Swift

    var functionArn: String? { get set }
  • The ARN of the runtime the function is configured to use. If the runtime update mode is Manual, the ARN is returned, otherwise null is returned.

    Declaration

    Objective-C

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

    Swift

    var runtimeVersionArn: String? { get set }
  • The current runtime update mode of the function.

    Declaration

    Objective-C

    @property (nonatomic) AWSLambdaUpdateRuntimeOn updateRuntimeOn;

    Swift

    var updateRuntimeOn: AWSLambdaUpdateRuntimeOn { get set }