UpdateFunctionConfigurationRequest
public struct UpdateFunctionConfigurationRequest : AWSShapeUndocumented
- 
                  
                  DeclarationSwift public static var _members: [AWSShapeMember]
- 
                  
                  A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see Dead Letter Queues. DeclarationSwift public let deadLetterConfig: DeadLetterConfig?
- 
                  
                  A description of the function. DeclarationSwift public let description: String?
- 
                  
                  Environment variables that are accessible from function code during execution. DeclarationSwift public let environment: Environment?
- 
                  
                  Connection settings for an Amazon EFS file system. DeclarationSwift public let fileSystemConfigs: [FileSystemConfig]?
- 
                  
                  The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length. DeclarationSwift public let functionName: String
- 
                  
                  The name of the method within your code that Lambda calls to execute your function. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see Programming Model. DeclarationSwift public let handler: String?
- 
                  
                  The ARN of the AWS Key Management Service (AWS KMS) key that’s used to encrypt your function’s environment variables. If it’s not provided, AWS Lambda uses a default service key. DeclarationSwift public let kMSKeyArn: String?
- 
                  
                  A list of function layers to add to the function’s execution environment. Specify each layer by its ARN, including the version. DeclarationSwift public let layers: [String]?
- 
                  
                  The amount of memory that your function has access to. Increasing the function’s memory also increases its CPU allocation. The default value is 128 MB. The value must be a multiple of 64 MB. DeclarationSwift public let memorySize: Int?
- 
                  
                  Only update the function if the revision ID matches the ID that’s specified. Use this option to avoid modifying a function that has changed since you last read it. DeclarationSwift public let revisionId: String?
- 
                  
                  The Amazon Resource Name (ARN) of the function’s execution role. DeclarationSwift public let role: String?
- 
                  
                  The identifier of the function’s runtime. DeclarationSwift public let runtime: Runtime?
- 
                  
                  The amount of time that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds. DeclarationSwift public let timeout: Int?
- 
                  
                  Set Mode to Active to sample and trace a subset of incoming requests with AWS X-Ray. DeclarationSwift public let tracingConfig: TracingConfig?
- 
                  
                  For network connectivity to AWS resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can only access resources and the internet through that VPC. For more information, see VPC Settings. DeclarationSwift public let vpcConfig: VpcConfig?
- 
                  init(deadLetterConfig:description:environment:fileSystemConfigs:functionName:handler:kMSKeyArn:layers:memorySize:revisionId:role:runtime:timeout:tracingConfig:vpcConfig:)Undocumented DeclarationSwift public init(deadLetterConfig: DeadLetterConfig? = nil, description: String? = nil, environment: Environment? = nil, fileSystemConfigs: [FileSystemConfig]? = nil, functionName: String, handler: String? = nil, kMSKeyArn: String? = nil, layers: [String]? = nil, memorySize: Int? = nil, revisionId: String? = nil, role: String? = nil, runtime: Runtime? = nil, timeout: Int? = nil, tracingConfig: TracingConfig? = nil, vpcConfig: VpcConfig? = nil)
- 
                  
                  DeclarationSwift public func validate(name: String) throws
 View on GitHub
View on GitHub UpdateFunctionConfigurationRequest Structure Reference
        UpdateFunctionConfigurationRequest Structure Reference