AWSLambdaFunctionCodeLocation

Objective-C

@interface AWSLambdaFunctionCodeLocation

Swift

class AWSLambdaFunctionCodeLocation

Details about a function’s deployment package.

  • URI of a container image in the Amazon ECR registry.

    Declaration

    Objective-C

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

    Swift

    var imageUri: String? { get set }
  • A presigned URL that you can use to download the deployment package.

    Declaration

    Objective-C

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

    Swift

    var location: String? { get set }
  • The service that’s hosting the file.

    Declaration

    Objective-C

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

    Swift

    var repositoryType: String? { get set }
  • The resolved URI for the image.

    Declaration

    Objective-C

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

    Swift

    var resolvedImageUri: String? { get set }