AccountLimit

public struct AccountLimit : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The maximum size of a function’s deployment package and layers when they’re extracted.

    Declaration

    Swift

    public let codeSizeUnzipped: Int64?
  • The maximum size of a deployment package when it’s uploaded directly to AWS Lambda. Use Amazon S3 for larger files.

    Declaration

    Swift

    public let codeSizeZipped: Int64?
  • The maximum number of simultaneous function executions.

    Declaration

    Swift

    public let concurrentExecutions: Int?
  • The amount of storage space that you can use for all deployment packages and layer archives.

    Declaration

    Swift

    public let totalCodeSize: Int64?
  • The maximum number of simultaneous function executions, minus the capacity that’s reserved for individual functions with PutFunctionConcurrency.

    Declaration

    Swift

    public let unreservedConcurrentExecutions: Int?
  • Undocumented

    Declaration

    Swift

    public init(codeSizeUnzipped: Int64? = nil, codeSizeZipped: Int64? = nil, concurrentExecutions: Int? = nil, totalCodeSize: Int64? = nil, unreservedConcurrentExecutions: Int? = nil)