-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | Amazon Lambda SDK.
--
-- The types from this library are intended to be used with
-- amazonka, which provides mechanisms for specifying AuthN/AuthZ
-- information, sending requests, and receiving responses.
--
-- Lenses are used for constructing and manipulating types, due to the
-- depth of nesting of AWS types and transparency regarding
-- de/serialisation into more palatable Haskell values. The provided
-- lenses should be compatible with any of the major lens libraries such
-- as lens or lens-family-core.
--
-- See Network.AWS.Lambda or the AWS documentation to get
-- started.
@package amazonka-lambda
@version 1.6.1
module Network.AWS.Lambda.Types
-- | API version 2015-03-31 of the Amazon Lambda SDK
-- configuration.
lambda :: Service
-- | Lambda was unable to decrypt the environment variables because the KMS
-- key used is in an invalid state for Decrypt. Check the function's KMS
-- key settings.
_KMSInvalidStateException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda was throttled by Amazon EC2 during Lambda function
-- initialization using the execution role provided for the Lambda
-- function.
_EC2ThrottledException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The runtime or runtime version specified is not supported.
_InvalidRuntimeException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Lambda function access policy is limited to 20 KB.
_PolicyLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The RevisionId provided does not match the latest RevisionId for the
-- Lambda function or alias. Call the GetFunction or the
-- GetAlias API to retrieve the latest RevisionId for your
-- resource.
_PreconditionFailedException :: AsError a => Getting (First ServiceError) a ServiceError
_EC2AccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The Subnet ID provided in the Lambda function VPC configuration is
-- invalid.
_InvalidSubnetIdException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The content type of the Invoke request body is not JSON.
_UnsupportedMediaTypeException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The request body could not be parsed as JSON.
_InvalidRequestContentException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Lambda was unable to decrypt the environment variables because the KMS
-- key was not found. Check the function's KMS key settings.
_KMSNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda was not able to create an Elastic Network Interface (ENI)
-- in the VPC, specified as part of Lambda function configuration,
-- because the limit for network interfaces has been reached.
_ENILimitReachedException :: AsError a => Getting (First ServiceError) a ServiceError
-- | One of the parameters in the request is invalid. For example, if you
-- provided an IAM role for AWS Lambda to assume in the
-- CreateFunction or the UpdateFunctionConfiguration
-- API, that AWS Lambda is unable to assume you will get this exception.
_InvalidParameterValueException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The request payload exceeded the Invoke request body JSON
-- input limit. For more information, see Limits .
_RequestTooLargeException :: AsError a => Getting (First ServiceError) a ServiceError
_TooManyRequestsException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The Security Group ID provided in the Lambda function VPC
-- configuration is invalid.
_InvalidSecurityGroupIdException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Lambda was unable to decrypt the environment variables because the KMS
-- key used is disabled. Check the Lambda function's KMS key settings.
_KMSDisabledException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda was not able to set up VPC access for the Lambda function
-- because one or more configured subnets has no available IP addresses.
_SubnetIPAddressLimitReachedException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The AWS Lambda service encountered an internal error.
_ServiceException :: AsError a => Getting (First ServiceError) a ServiceError
-- | You have exceeded your maximum total code size per account.
-- Limits
_CodeStorageExceededException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda could not unzip the function zip file.
_InvalidZipFileException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The resource already exists.
_ResourceConflictException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda received an unexpected EC2 client exception while setting
-- up for the Lambda function.
_EC2UnexpectedException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The resource (for example, a Lambda function or access policy
-- statement) specified in the request does not exist.
_ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Lambda was unable to decrypt the environment variables because KMS
-- access was denied. Check the Lambda function's KMS permissions.
_KMSAccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError
data EventSourcePosition
AtTimestamp :: EventSourcePosition
Latest :: EventSourcePosition
TrimHorizon :: EventSourcePosition
data FunctionVersion
All :: FunctionVersion
data InvocationType
DryRun :: InvocationType
Event :: InvocationType
RequestResponse :: InvocationType
data LogType
None :: LogType
Tail :: LogType
data Runtime
DOTNETCORE1_0 :: Runtime
DOTNETCORE2_0 :: Runtime
GO1_x :: Runtime
JAVA8 :: Runtime
NODEJS4_3 :: Runtime
NODEJS4_3Edge :: Runtime
NODEJS6_10 :: Runtime
NODEJS8_10 :: Runtime
Nodejs :: Runtime
PYTHON2_7 :: Runtime
PYTHON3_6 :: Runtime
data TracingMode
Active :: TracingMode
PassThrough :: TracingMode
-- | Provides limits of code size and concurrency associated with the
-- current account and region.
--
-- See: accountLimit smart constructor.
data AccountLimit
-- | Creates a value of AccountLimit with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - alConcurrentExecutions - Number of simultaneous executions
-- of your function per region. For more information or to request a
-- limit increase for concurrent executions, see Lambda Function
-- Concurrent Executions . The default limit is 1000.
-- - alTotalCodeSize - Maximum size, in bytes, of a code package
-- you can upload per region. The default size is 75 GB.
-- - alUnreservedConcurrentExecutions - The number of concurrent
-- executions available to functions that do not have concurrency limits
-- set. For more information, see 'concurrent-executions' .
-- - alCodeSizeUnzipped - Size, in bytes, of codedependencies
-- that you can zip into a deployment package (uncompressed zipjar
-- size) for uploading. The default limit is 250 MB.
-- - alCodeSizeZipped - Size, in bytes, of a single zipped
-- codedependencies package you can upload for your Lambda
-- function(.zip.jar file). Try using Amazon S3 for uploading larger
-- files. Default limit is 50 MB.
--
accountLimit :: AccountLimit
-- | Number of simultaneous executions of your function per region. For
-- more information or to request a limit increase for concurrent
-- executions, see Lambda Function Concurrent Executions . The
-- default limit is 1000.
alConcurrentExecutions :: Lens' AccountLimit (Maybe Int)
-- | Maximum size, in bytes, of a code package you can upload per region.
-- The default size is 75 GB.
alTotalCodeSize :: Lens' AccountLimit (Maybe Integer)
-- | The number of concurrent executions available to functions that do not
-- have concurrency limits set. For more information, see
-- 'concurrent-executions' .
alUnreservedConcurrentExecutions :: Lens' AccountLimit (Maybe Natural)
-- | Size, in bytes, of codedependencies that you can zip into a
-- deployment package (uncompressed zipjar size) for uploading. The
-- default limit is 250 MB.
alCodeSizeUnzipped :: Lens' AccountLimit (Maybe Integer)
-- | Size, in bytes, of a single zipped codedependencies package you can
-- upload for your Lambda function(.zip.jar file). Try using Amazon
-- S3 for uploading larger files. Default limit is 50 MB.
alCodeSizeZipped :: Lens' AccountLimit (Maybe Integer)
-- | Provides code size usage and function count associated with the
-- current account and region.
--
-- See: accountUsage smart constructor.
data AccountUsage
-- | Creates a value of AccountUsage with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - auTotalCodeSize - Total size, in bytes, of the account's
-- deployment packages per region.
-- - auFunctionCount - The number of your account's existing
-- functions per region.
--
accountUsage :: AccountUsage
-- | Total size, in bytes, of the account's deployment packages per region.
auTotalCodeSize :: Lens' AccountUsage (Maybe Integer)
-- | The number of your account's existing functions per region.
auFunctionCount :: Lens' AccountUsage (Maybe Integer)
-- | Provides configuration information about a Lambda function version
-- alias.
--
-- See: aliasConfiguration smart constructor.
data AliasConfiguration
-- | Creates a value of AliasConfiguration with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - acRoutingConfig - Specifies an additional function versions
-- the alias points to, allowing you to dictate what percentage of
-- traffic will invoke each version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
-- - acName - Alias name.
-- - acFunctionVersion - Function version to which the alias
-- points.
-- - acAliasARN - Lambda function ARN that is qualified using
-- the alias name as the suffix. For example, if you create an alias
-- called BETA that points to a helloworld function version, the
-- ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA
-- .
-- - acDescription - Alias description.
-- - acRevisionId - Represents the latest updated revision of
-- the function or alias.
--
aliasConfiguration :: AliasConfiguration
-- | Specifies an additional function versions the alias points to,
-- allowing you to dictate what percentage of traffic will invoke each
-- version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
acRoutingConfig :: Lens' AliasConfiguration (Maybe AliasRoutingConfiguration)
-- | Alias name.
acName :: Lens' AliasConfiguration (Maybe Text)
-- | Function version to which the alias points.
acFunctionVersion :: Lens' AliasConfiguration (Maybe Text)
-- | Lambda function ARN that is qualified using the alias name as the
-- suffix. For example, if you create an alias called BETA that
-- points to a helloworld function version, the ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA .
acAliasARN :: Lens' AliasConfiguration (Maybe Text)
-- | Alias description.
acDescription :: Lens' AliasConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
acRevisionId :: Lens' AliasConfiguration (Maybe Text)
-- | The parent object that implements what percentage of traffic will
-- invoke each function version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
--
-- See: aliasRoutingConfiguration smart constructor.
data AliasRoutingConfiguration
-- | Creates a value of AliasRoutingConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - arcAdditionalVersionWeights - Set this value to dictate
-- what percentage of traffic will invoke the updated function version.
-- If set to an empty string, 100 percent of traffic will invoke
-- function-version . For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
--
aliasRoutingConfiguration :: AliasRoutingConfiguration
-- | Set this value to dictate what percentage of traffic will invoke the
-- updated function version. If set to an empty string, 100 percent of
-- traffic will invoke function-version . For more information,
-- see 'lambda-traffic-shifting-using-aliases' .
arcAdditionalVersionWeights :: Lens' AliasRoutingConfiguration (HashMap Text Double)
-- | See: concurrency smart constructor.
data Concurrency
-- | Creates a value of Concurrency with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - cReservedConcurrentExecutions - The number of concurrent
-- executions reserved for this function. For more information, see
-- 'concurrent-executions' .
--
concurrency :: Concurrency
-- | The number of concurrent executions reserved for this function. For
-- more information, see 'concurrent-executions' .
cReservedConcurrentExecutions :: Lens' Concurrency (Maybe Natural)
-- | The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS
-- topic you specify as your Dead Letter Queue (DLQ). For more
-- information, see dlq .
--
-- See: deadLetterConfig smart constructor.
data DeadLetterConfig
-- | Creates a value of DeadLetterConfig with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - dlcTargetARN - The Amazon Resource Name (ARN) of an Amazon
-- SQS queue or Amazon SNS topic you specify as your Dead Letter Queue
-- (DLQ). dlq . For more information, see dlq .
--
deadLetterConfig :: DeadLetterConfig
-- | The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS
-- topic you specify as your Dead Letter Queue (DLQ). dlq . For
-- more information, see dlq .
dlcTargetARN :: Lens' DeadLetterConfig (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
--
-- See: environment smart constructor.
data Environment
-- | Creates a value of Environment with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - eVariables - The key-value pairs that represent your
-- environment's configuration settings.
--
environment :: Environment
-- | The key-value pairs that represent your environment's configuration
-- settings.
eVariables :: Lens' Environment (Maybe (HashMap Text Text))
-- | The parent object that contains error information associated with your
-- configuration settings.
--
-- See: environmentError smart constructor.
data EnvironmentError
-- | Creates a value of EnvironmentError with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - eeErrorCode - The error code returned by the environment
-- error object.
-- - eeMessage - The message returned by the environment error
-- object.
--
environmentError :: EnvironmentError
-- | The error code returned by the environment error object.
eeErrorCode :: Lens' EnvironmentError (Maybe Text)
-- | The message returned by the environment error object.
eeMessage :: Lens' EnvironmentError (Maybe Text)
-- | The parent object returned that contains your environment's
-- configuration settings or any error information associated with your
-- configuration settings.
--
-- See: environmentResponse smart constructor.
data EnvironmentResponse
-- | Creates a value of EnvironmentResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - envVariables - The key-value pairs returned that represent
-- your environment's configuration settings or error information.
-- - envError - Undocumented member.
--
environmentResponse :: EnvironmentResponse
-- | The key-value pairs returned that represent your environment's
-- configuration settings or error information.
envVariables :: Lens' EnvironmentResponse (Maybe (HashMap Text Text))
-- | Undocumented member.
envError :: Lens' EnvironmentResponse (Maybe EnvironmentError)
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - esmcEventSourceARN - The Amazon Resource Name (ARN) of the
-- Amazon Kinesis stream that is the source of events.
-- - esmcState - The state of the event source mapping. It can
-- be Creating , Enabled , Disabled ,
-- Enabling , Disabling , Updating , or
-- Deleting .
-- - esmcFunctionARN - The Lambda function to invoke when AWS
-- Lambda detects an event on the stream.
-- - esmcUUId - The AWS Lambda assigned opaque identifier for
-- the mapping.
-- - esmcLastProcessingResult - The result of the last AWS
-- Lambda invocation of your Lambda function.
-- - esmcBatchSize - The largest number of records that AWS
-- Lambda will retrieve from your event source at the time of invoking
-- your function. Your function receives an event with all the retrieved
-- records.
-- - esmcStateTransitionReason - The reason the event source
-- mapping is in its current state. It is either user-requested or an AWS
-- Lambda-initiated state transition.
-- - esmcLastModified - The UTC time string indicating the last
-- time the event mapping was updated.
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be Creating ,
-- Enabled , Disabled , Enabling ,
-- Disabling , Updating , or Deleting .
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
-- | The code for the Lambda function.
--
-- See: functionCode smart constructor.
data FunctionCode
-- | Creates a value of FunctionCode with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fcS3ObjectVersion - The Amazon S3 object (the deployment
-- package) version you want to upload.
-- - fcS3Key - The Amazon S3 object (the deployment package) key
-- name you want to upload.
-- - fcZipFile - The contents of your zip file containing your
-- deployment package. If you are using the web API directly, the
-- contents of the zip file must be base64-encoded. If you are using the
-- AWS SDKs or the AWS CLI, the SDKs or CLI will do the encoding for you.
-- For more information about creating a .zip file, see Execution
-- Permissions in the AWS Lambda Developer Guide . --
-- Note: This Lens automatically encodes and decodes
-- Base64 data. The underlying isomorphism will encode to Base64
-- representation during serialisation, and decode from Base64
-- representation during deserialisation. This Lens accepts and
-- returns only raw unencoded data.
-- - fcS3Bucket - Amazon S3 bucket name where the .zip file
-- containing your deployment package is stored. This bucket must reside
-- in the same AWS region where you are creating the Lambda
-- function.
--
functionCode :: FunctionCode
-- | The Amazon S3 object (the deployment package) version you want to
-- upload.
fcS3ObjectVersion :: Lens' FunctionCode (Maybe Text)
-- | The Amazon S3 object (the deployment package) key name you want to
-- upload.
fcS3Key :: Lens' FunctionCode (Maybe Text)
-- | The contents of your zip file containing your deployment package. If
-- you are using the web API directly, the contents of the zip file must
-- be base64-encoded. If you are using the AWS SDKs or the AWS CLI, the
-- SDKs or CLI will do the encoding for you. For more information about
-- creating a .zip file, see Execution Permissions in the AWS
-- Lambda Developer Guide . -- Note: This Lens
-- automatically encodes and decodes Base64 data. The underlying
-- isomorphism will encode to Base64 representation during serialisation,
-- and decode from Base64 representation during deserialisation. This
-- Lens accepts and returns only raw unencoded data.
fcZipFile :: Lens' FunctionCode (Maybe ByteString)
-- | Amazon S3 bucket name where the .zip file containing your deployment
-- package is stored. This bucket must reside in the same AWS region
-- where you are creating the Lambda function.
fcS3Bucket :: Lens' FunctionCode (Maybe Text)
-- | The object for the Lambda function location.
--
-- See: functionCodeLocation smart constructor.
data FunctionCodeLocation
-- | Creates a value of FunctionCodeLocation with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fclLocation - The presigned URL you can use to download the
-- function's .zip file that you previously uploaded. The URL is valid
-- for up to 10 minutes.
-- - fclRepositoryType - The repository from which you can
-- download the function.
--
functionCodeLocation :: FunctionCodeLocation
-- | The presigned URL you can use to download the function's .zip file
-- that you previously uploaded. The URL is valid for up to 10 minutes.
fclLocation :: Lens' FunctionCodeLocation (Maybe Text)
-- | The repository from which you can download the function.
fclRepositoryType :: Lens' FunctionCodeLocation (Maybe Text)
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fcMemorySize - The memory size, in MB, you configured for
-- the function. Must be a multiple of 64 MB.
-- - fcRuntime - The runtime environment for the Lambda
-- function.
-- - fcFunctionARN - The Amazon Resource Name (ARN) assigned to
-- the function.
-- - fcKMSKeyARN - The Amazon Resource Name (ARN) of the KMS key
-- used to encrypt your function's environment variables. If empty, it
-- means you are using the AWS Lambda default service key.
-- - fcEnvironment - The parent object that contains your
-- environment's configuration settings.
-- - fcDeadLetterConfig - The parent object that contains the
-- target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
-- topic. For more information, see dlq .
-- - fcRole - The Amazon Resource Name (ARN) of the IAM role
-- that Lambda assumes when it executes your function to access any other
-- Amazon Web Services (AWS) resources.
-- - fcVPCConfig - VPC configuration associated with your Lambda
-- function.
-- - fcVersion - The version of the Lambda function.
-- - fcFunctionName - The name of the function. Note that the
-- length constraint applies only to the ARN. If you specify only the
-- function name, it is limited to 64 characters in length.
-- - fcCodeSize - The size, in bytes, of the function .zip file
-- you uploaded.
-- - fcHandler - The function Lambda calls to begin executing
-- your function.
-- - fcTimeout - The function execution time at which Lambda
-- should terminate the function. Because the execution time has cost
-- implications, we recommend you set this value based on your expected
-- execution time. The default is 3 seconds.
-- - fcLastModified - The time stamp of the last time you
-- updated the function. The time stamp is conveyed as a string complying
-- with ISO-8601 in this way YYYY-MM-DDThh:mm:ssTZD (e.g.,
-- 1997-07-16T19:20:30+01:00). For more information, see Date and Time
-- Formats .
-- - fcCodeSha256 - It is the SHA256 hash of your function
-- deployment package.
-- - fcTracingConfig - The parent object that contains your
-- function's tracing settings.
-- - fcDescription - The user-provided description.
-- - fcRevisionId - Represents the latest updated revision of
-- the function or alias.
-- - fcMasterARN - Returns the ARN (Amazon Resource Name) of the
-- master function.
--
functionConfiguration :: FunctionConfiguration
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the KMS key used to encrypt your
-- function's environment variables. If empty, it means you are using the
-- AWS Lambda default service key.
fcKMSKeyARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
fcEnvironment :: Lens' FunctionConfiguration (Maybe EnvironmentResponse)
-- | The parent object that contains the target ARN (Amazon Resource Name)
-- of an Amazon SQS queue or Amazon SNS topic. For more information, see
-- dlq .
fcDeadLetterConfig :: Lens' FunctionConfiguration (Maybe DeadLetterConfig)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | VPC configuration associated with your Lambda function.
fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse)
-- | The version of the Lambda function.
fcVersion :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function. Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- characters in length.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The time stamp of the last time you updated the function. The time
-- stamp is conveyed as a string complying with ISO-8601 in this way
-- YYYY-MM-DDThh:mm:ssTZD (e.g., 1997-07-16T19:20:30+01:00). For more
-- information, see Date and Time Formats .
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | It is the SHA256 hash of your function deployment package.
fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your function's tracing settings.
fcTracingConfig :: Lens' FunctionConfiguration (Maybe TracingConfigResponse)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
fcRevisionId :: Lens' FunctionConfiguration (Maybe Text)
-- | Returns the ARN (Amazon Resource Name) of the master function.
fcMasterARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your function's tracing settings.
--
-- See: tracingConfig smart constructor.
data TracingConfig
-- | Creates a value of TracingConfig with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - tMode - Can be either PassThrough or Active. If
-- PassThrough, Lambda will only trace the request from an upstream
-- service if it contains a tracing header with "sampled=1". If Active,
-- Lambda will respect any tracing header it receives from an upstream
-- service. If no tracing header is received, Lambda will call X-Ray for
-- a tracing decision.
--
tracingConfig :: TracingConfig
-- | Can be either PassThrough or Active. If PassThrough, Lambda will only
-- trace the request from an upstream service if it contains a tracing
-- header with "sampled=1". If Active, Lambda will respect any tracing
-- header it receives from an upstream service. If no tracing header is
-- received, Lambda will call X-Ray for a tracing decision.
tMode :: Lens' TracingConfig (Maybe TracingMode)
-- | Parent object of the tracing information associated with your Lambda
-- function.
--
-- See: tracingConfigResponse smart constructor.
data TracingConfigResponse
-- | Creates a value of TracingConfigResponse with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - tcMode - The tracing mode associated with your Lambda
-- function.
--
tracingConfigResponse :: TracingConfigResponse
-- | The tracing mode associated with your Lambda function.
tcMode :: Lens' TracingConfigResponse (Maybe TracingMode)
-- | If your Lambda function accesses resources in a VPC, you provide this
-- parameter identifying the list of security group IDs and subnet IDs.
-- These must belong to the same VPC. You must provide at least one
-- security group and one subnet ID.
--
-- See: vpcConfig smart constructor.
data VPCConfig
-- | Creates a value of VPCConfig with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
vpcConfig :: VPCConfig
-- | A list of one or more security groups IDs in your VPC.
vpccSecurityGroupIds :: Lens' VPCConfig [Text]
-- | A list of one or more subnet IDs in your VPC.
vpccSubnetIds :: Lens' VPCConfig [Text]
-- | VPC configuration associated with your Lambda function.
--
-- See: vpcConfigResponse smart constructor.
data VPCConfigResponse
-- | Creates a value of VPCConfigResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - vcSecurityGroupIds - A list of security group IDs
-- associated with the Lambda function.
-- - vcSubnetIds - A list of subnet IDs associated with the
-- Lambda function.
-- - vcVPCId - The VPC ID associated with you Lambda
-- function.
--
vpcConfigResponse :: VPCConfigResponse
-- | A list of security group IDs associated with the Lambda function.
vcSecurityGroupIds :: Lens' VPCConfigResponse [Text]
-- | A list of subnet IDs associated with the Lambda function.
vcSubnetIds :: Lens' VPCConfigResponse [Text]
-- | The VPC ID associated with you Lambda function.
vcVPCId :: Lens' VPCConfigResponse (Maybe Text)
-- | Creates a list of tags (key-value pairs) on the Lambda function.
-- Requires the Lambda function ARN (Amazon Resource Name). If a key is
-- specified without a value, Lambda creates a tag with the specified key
-- and a value of null. For more information, see Tagging Lambda
-- Functions in the AWS Lambda Developer Guide .
module Network.AWS.Lambda.TagResource
-- | Creates a value of TagResource with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - trResource - The ARN (Amazon Resource Name) of the Lambda
-- function. For more information, see Tagging Lambda Functions in
-- the AWS Lambda Developer Guide .
-- - trTags - The list of tags (key-value pairs) you are
-- assigning to the Lambda function. For more information, see Tagging
-- Lambda Functions in the AWS Lambda Developer Guide .
--
tagResource :: Text -> TagResource
-- | See: tagResource smart constructor.
data TagResource
-- | The ARN (Amazon Resource Name) of the Lambda function. For more
-- information, see Tagging Lambda Functions in the AWS Lambda
-- Developer Guide .
trResource :: Lens' TagResource Text
-- | The list of tags (key-value pairs) you are assigning to the Lambda
-- function. For more information, see Tagging Lambda Functions in
-- the AWS Lambda Developer Guide .
trTags :: Lens' TagResource (HashMap Text Text)
-- | Creates a value of TagResourceResponse with the minimum fields
-- required to make a request.
tagResourceResponse :: TagResourceResponse
-- | See: tagResourceResponse smart constructor.
data TagResourceResponse
instance GHC.Generics.Generic Network.AWS.Lambda.TagResource.TagResourceResponse
instance Data.Data.Data Network.AWS.Lambda.TagResource.TagResourceResponse
instance GHC.Show.Show Network.AWS.Lambda.TagResource.TagResourceResponse
instance GHC.Read.Read Network.AWS.Lambda.TagResource.TagResourceResponse
instance GHC.Classes.Eq Network.AWS.Lambda.TagResource.TagResourceResponse
instance GHC.Generics.Generic Network.AWS.Lambda.TagResource.TagResource
instance Data.Data.Data Network.AWS.Lambda.TagResource.TagResource
instance GHC.Show.Show Network.AWS.Lambda.TagResource.TagResource
instance GHC.Read.Read Network.AWS.Lambda.TagResource.TagResource
instance GHC.Classes.Eq Network.AWS.Lambda.TagResource.TagResource
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.TagResource.TagResource
instance Control.DeepSeq.NFData Network.AWS.Lambda.TagResource.TagResourceResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.TagResource.TagResource
instance Control.DeepSeq.NFData Network.AWS.Lambda.TagResource.TagResource
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.TagResource.TagResource
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.TagResource.TagResource
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.TagResource.TagResource
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.TagResource.TagResource
-- | You can remove individual permissions from an resource policy
-- associated with a Lambda function by providing a statement ID that you
-- provided when you added the permission.
--
-- If you are using versioning, the permissions you remove are specific
-- to the Lambda function version or alias you specify in the
-- AddPermission request via the Qualifier parameter.
-- For more information about versioning, see AWS Lambda Function
-- Versioning and Aliases .
--
-- Note that removal of a permission will cause an active event source to
-- lose permission to the function.
--
-- You need permission for the lambda:RemovePermission action.
module Network.AWS.Lambda.RemovePermission
-- | Creates a value of RemovePermission with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - rpQualifier - You can specify this optional parameter to
-- remove permission associated with a specific function version or
-- function alias. If you don't specify this parameter, the API removes
-- permission associated with the unqualified function ARN.
-- - rpRevisionId - An optional value you can use to ensure you
-- are updating the latest update of the function version or alias. If
-- the RevisionID you pass doesn't match the latest
-- RevisionId of the function or alias, it will fail with an
-- error message, advising you to retrieve the latest function version or
-- alias RevisionID using either or .
-- - rpFunctionName - Lambda function whose resource policy you
-- want to remove a permission from. You can specify a function name (for
-- example, Thumbnail ) or you can specify Amazon Resource Name
-- (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
-- - rpStatementId - Statement ID of the permission to
-- remove.
--
removePermission :: Text -> Text -> RemovePermission
-- | See: removePermission smart constructor.
data RemovePermission
-- | You can specify this optional parameter to remove permission
-- associated with a specific function version or function alias. If you
-- don't specify this parameter, the API removes permission associated
-- with the unqualified function ARN.
rpQualifier :: Lens' RemovePermission (Maybe Text)
-- | An optional value you can use to ensure you are updating the latest
-- update of the function version or alias. If the RevisionID
-- you pass doesn't match the latest RevisionId of the function
-- or alias, it will fail with an error message, advising you to retrieve
-- the latest function version or alias RevisionID using either
-- or .
rpRevisionId :: Lens' RemovePermission (Maybe Text)
-- | Lambda function whose resource policy you want to remove a permission
-- from. You can specify a function name (for example, Thumbnail
-- ) or you can specify Amazon Resource Name (ARN) of the function (for
-- example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
rpFunctionName :: Lens' RemovePermission Text
-- | Statement ID of the permission to remove.
rpStatementId :: Lens' RemovePermission Text
-- | Creates a value of RemovePermissionResponse with the minimum
-- fields required to make a request.
removePermissionResponse :: RemovePermissionResponse
-- | See: removePermissionResponse smart constructor.
data RemovePermissionResponse
instance GHC.Generics.Generic Network.AWS.Lambda.RemovePermission.RemovePermissionResponse
instance Data.Data.Data Network.AWS.Lambda.RemovePermission.RemovePermissionResponse
instance GHC.Show.Show Network.AWS.Lambda.RemovePermission.RemovePermissionResponse
instance GHC.Read.Read Network.AWS.Lambda.RemovePermission.RemovePermissionResponse
instance GHC.Classes.Eq Network.AWS.Lambda.RemovePermission.RemovePermissionResponse
instance GHC.Generics.Generic Network.AWS.Lambda.RemovePermission.RemovePermission
instance Data.Data.Data Network.AWS.Lambda.RemovePermission.RemovePermission
instance GHC.Show.Show Network.AWS.Lambda.RemovePermission.RemovePermission
instance GHC.Read.Read Network.AWS.Lambda.RemovePermission.RemovePermission
instance GHC.Classes.Eq Network.AWS.Lambda.RemovePermission.RemovePermission
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.RemovePermission.RemovePermission
instance Control.DeepSeq.NFData Network.AWS.Lambda.RemovePermission.RemovePermissionResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.RemovePermission.RemovePermission
instance Control.DeepSeq.NFData Network.AWS.Lambda.RemovePermission.RemovePermission
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.RemovePermission.RemovePermission
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.RemovePermission.RemovePermission
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.RemovePermission.RemovePermission
-- | Sets a limit on the number of concurrent executions available to this
-- function. It is a subset of your account's total concurrent execution
-- limit per region. Note that Lambda automatically reserves a buffer of
-- 100 concurrent executions for functions without any reserved
-- concurrency limit. This means if your account limit is 1000, you have
-- a total of 900 available to allocate to individual functions. For more
-- information, see 'concurrent-executions' .
module Network.AWS.Lambda.PutFunctionConcurrency
-- | Creates a value of PutFunctionConcurrency with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - pfcFunctionName - The name of the function you are setting
-- concurrent execution limits on. For more information, see
-- 'concurrent-executions' .
-- - pfcReservedConcurrentExecutions - The concurrent execution
-- limit reserved for this function. For more information, see
-- 'concurrent-executions' .
--
putFunctionConcurrency :: Text -> Natural -> PutFunctionConcurrency
-- | See: putFunctionConcurrency smart constructor.
data PutFunctionConcurrency
-- | The name of the function you are setting concurrent execution limits
-- on. For more information, see 'concurrent-executions' .
pfcFunctionName :: Lens' PutFunctionConcurrency Text
-- | The concurrent execution limit reserved for this function. For more
-- information, see 'concurrent-executions' .
pfcReservedConcurrentExecutions :: Lens' PutFunctionConcurrency Natural
-- | Creates a value of Concurrency with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - cReservedConcurrentExecutions - The number of concurrent
-- executions reserved for this function. For more information, see
-- 'concurrent-executions' .
--
concurrency :: Concurrency
-- | See: concurrency smart constructor.
data Concurrency
-- | The number of concurrent executions reserved for this function. For
-- more information, see 'concurrent-executions' .
cReservedConcurrentExecutions :: Lens' Concurrency (Maybe Natural)
instance GHC.Generics.Generic Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance Data.Data.Data Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance GHC.Show.Show Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance GHC.Read.Read Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance GHC.Classes.Eq Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance Control.DeepSeq.NFData Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.PutFunctionConcurrency.PutFunctionConcurrency
-- | Publishes a version of your function from the current snapshot of
-- $LATEST. That is, AWS Lambda takes a snapshot of the function code and
-- configuration information from $LATEST and publishes a new version.
-- The code and configuration cannot be modified after publication. For
-- information about the versioning feature, see AWS Lambda Function
-- Versioning and Aliases .
module Network.AWS.Lambda.PublishVersion
-- | Creates a value of PublishVersion with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - pvCodeSha256 - The SHA256 hash of the deployment package
-- you want to publish. This provides validation on the code you are
-- publishing. If you provide this parameter, the value must match the
-- SHA256 of the $LATEST version for the publication to succeed. You can
-- use the DryRun parameter of UpdateFunctionCode to
-- verify the hash value that will be returned before publishing your new
-- version.
-- - pvDescription - The description for the version you are
-- publishing. If not provided, AWS Lambda copies the description from
-- the $LATEST version.
-- - pvRevisionId - An optional value you can use to ensure you
-- are updating the latest update of the function version or alias. If
-- the RevisionID you pass doesn't match the latest
-- RevisionId of the function or alias, it will fail with an
-- error message, advising you to retrieve the latest function version or
-- alias RevisionID using either or .
-- - pvFunctionName - The Lambda function name. You can specify
-- a function name (for example, Thumbnail ) or you can specify
-- Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
--
publishVersion :: Text -> PublishVersion
-- | See: publishVersion smart constructor.
data PublishVersion
-- | The SHA256 hash of the deployment package you want to publish. This
-- provides validation on the code you are publishing. If you provide
-- this parameter, the value must match the SHA256 of the $LATEST version
-- for the publication to succeed. You can use the DryRun
-- parameter of UpdateFunctionCode to verify the hash value that
-- will be returned before publishing your new version.
pvCodeSha256 :: Lens' PublishVersion (Maybe Text)
-- | The description for the version you are publishing. If not provided,
-- AWS Lambda copies the description from the $LATEST version.
pvDescription :: Lens' PublishVersion (Maybe Text)
-- | An optional value you can use to ensure you are updating the latest
-- update of the function version or alias. If the RevisionID
-- you pass doesn't match the latest RevisionId of the function
-- or alias, it will fail with an error message, advising you to retrieve
-- the latest function version or alias RevisionID using either
-- or .
pvRevisionId :: Lens' PublishVersion (Maybe Text)
-- | The Lambda function name. You can specify a function name (for
-- example, Thumbnail ) or you can specify Amazon Resource Name
-- (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
pvFunctionName :: Lens' PublishVersion Text
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fcMemorySize - The memory size, in MB, you configured for
-- the function. Must be a multiple of 64 MB.
-- - fcRuntime - The runtime environment for the Lambda
-- function.
-- - fcFunctionARN - The Amazon Resource Name (ARN) assigned to
-- the function.
-- - fcKMSKeyARN - The Amazon Resource Name (ARN) of the KMS key
-- used to encrypt your function's environment variables. If empty, it
-- means you are using the AWS Lambda default service key.
-- - fcEnvironment - The parent object that contains your
-- environment's configuration settings.
-- - fcDeadLetterConfig - The parent object that contains the
-- target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
-- topic. For more information, see dlq .
-- - fcRole - The Amazon Resource Name (ARN) of the IAM role
-- that Lambda assumes when it executes your function to access any other
-- Amazon Web Services (AWS) resources.
-- - fcVPCConfig - VPC configuration associated with your Lambda
-- function.
-- - fcVersion - The version of the Lambda function.
-- - fcFunctionName - The name of the function. Note that the
-- length constraint applies only to the ARN. If you specify only the
-- function name, it is limited to 64 characters in length.
-- - fcCodeSize - The size, in bytes, of the function .zip file
-- you uploaded.
-- - fcHandler - The function Lambda calls to begin executing
-- your function.
-- - fcTimeout - The function execution time at which Lambda
-- should terminate the function. Because the execution time has cost
-- implications, we recommend you set this value based on your expected
-- execution time. The default is 3 seconds.
-- - fcLastModified - The time stamp of the last time you
-- updated the function. The time stamp is conveyed as a string complying
-- with ISO-8601 in this way YYYY-MM-DDThh:mm:ssTZD (e.g.,
-- 1997-07-16T19:20:30+01:00). For more information, see Date and Time
-- Formats .
-- - fcCodeSha256 - It is the SHA256 hash of your function
-- deployment package.
-- - fcTracingConfig - The parent object that contains your
-- function's tracing settings.
-- - fcDescription - The user-provided description.
-- - fcRevisionId - Represents the latest updated revision of
-- the function or alias.
-- - fcMasterARN - Returns the ARN (Amazon Resource Name) of the
-- master function.
--
functionConfiguration :: FunctionConfiguration
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the KMS key used to encrypt your
-- function's environment variables. If empty, it means you are using the
-- AWS Lambda default service key.
fcKMSKeyARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
fcEnvironment :: Lens' FunctionConfiguration (Maybe EnvironmentResponse)
-- | The parent object that contains the target ARN (Amazon Resource Name)
-- of an Amazon SQS queue or Amazon SNS topic. For more information, see
-- dlq .
fcDeadLetterConfig :: Lens' FunctionConfiguration (Maybe DeadLetterConfig)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | VPC configuration associated with your Lambda function.
fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse)
-- | The version of the Lambda function.
fcVersion :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function. Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- characters in length.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The time stamp of the last time you updated the function. The time
-- stamp is conveyed as a string complying with ISO-8601 in this way
-- YYYY-MM-DDThh:mm:ssTZD (e.g., 1997-07-16T19:20:30+01:00). For more
-- information, see Date and Time Formats .
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | It is the SHA256 hash of your function deployment package.
fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your function's tracing settings.
fcTracingConfig :: Lens' FunctionConfiguration (Maybe TracingConfigResponse)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
fcRevisionId :: Lens' FunctionConfiguration (Maybe Text)
-- | Returns the ARN (Amazon Resource Name) of the master function.
fcMasterARN :: Lens' FunctionConfiguration (Maybe Text)
instance GHC.Generics.Generic Network.AWS.Lambda.PublishVersion.PublishVersion
instance Data.Data.Data Network.AWS.Lambda.PublishVersion.PublishVersion
instance GHC.Show.Show Network.AWS.Lambda.PublishVersion.PublishVersion
instance GHC.Read.Read Network.AWS.Lambda.PublishVersion.PublishVersion
instance GHC.Classes.Eq Network.AWS.Lambda.PublishVersion.PublishVersion
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.PublishVersion.PublishVersion
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.PublishVersion.PublishVersion
instance Control.DeepSeq.NFData Network.AWS.Lambda.PublishVersion.PublishVersion
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.PublishVersion.PublishVersion
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.PublishVersion.PublishVersion
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.PublishVersion.PublishVersion
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.PublishVersion.PublishVersion
-- | List all versions of a function. For information about the versioning
-- feature, see AWS Lambda Function Versioning and Aliases .
module Network.AWS.Lambda.ListVersionsByFunction
-- | Creates a value of ListVersionsByFunction with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - lvbfMarker - Optional string. An opaque pagination token
-- returned from a previous ListVersionsByFunction operation. If
-- present, indicates where to continue the listing.
-- - lvbfMaxItems - Optional integer. Specifies the maximum
-- number of AWS Lambda function versions to return in response. This
-- parameter value must be greater than 0.
-- - lvbfFunctionName - Function name whose versions to list.
-- You can specify a function name (for example, Thumbnail ) or
-- you can specify Amazon Resource Name (ARN) of the function (for
-- example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
--
listVersionsByFunction :: Text -> ListVersionsByFunction
-- | See: listVersionsByFunction smart constructor.
data ListVersionsByFunction
-- | Optional string. An opaque pagination token returned from a previous
-- ListVersionsByFunction operation. If present, indicates where
-- to continue the listing.
lvbfMarker :: Lens' ListVersionsByFunction (Maybe Text)
-- | Optional integer. Specifies the maximum number of AWS Lambda function
-- versions to return in response. This parameter value must be greater
-- than 0.
lvbfMaxItems :: Lens' ListVersionsByFunction (Maybe Natural)
-- | Function name whose versions to list. You can specify a function name
-- (for example, Thumbnail ) or you can specify Amazon Resource
-- Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
lvbfFunctionName :: Lens' ListVersionsByFunction Text
-- | Creates a value of ListVersionsByFunctionResponse with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listVersionsByFunctionResponse :: Int -> ListVersionsByFunctionResponse
-- | See: listVersionsByFunctionResponse smart constructor.
data ListVersionsByFunctionResponse
-- | A list of Lambda function versions.
lvbfrsVersions :: Lens' ListVersionsByFunctionResponse [FunctionConfiguration]
-- | A string, present if there are more function versions.
lvbfrsNextMarker :: Lens' ListVersionsByFunctionResponse (Maybe Text)
-- |
-- - - | The response status code.
--
lvbfrsResponseStatus :: Lens' ListVersionsByFunctionResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse
instance Data.Data.Data Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse
instance GHC.Show.Show Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse
instance GHC.Classes.Eq Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse
instance GHC.Generics.Generic Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance Data.Data.Data Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance GHC.Show.Show Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance GHC.Read.Read Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance GHC.Classes.Eq Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunctionResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.ListVersionsByFunction.ListVersionsByFunction
-- | Returns a list of tags assigned to a function when supplied the
-- function ARN (Amazon Resource Name). For more information on Tagging,
-- see Tagging Lambda Functions in the AWS Lambda Developer
-- Guide .
module Network.AWS.Lambda.ListTags
-- | Creates a value of ListTags with the minimum fields required to
-- make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listTags :: Text -> ListTags
-- | See: listTags smart constructor.
data ListTags
-- | The ARN (Amazon Resource Name) of the function. For more information,
-- see Tagging Lambda Functions in the AWS Lambda Developer
-- Guide .
ltResource :: Lens' ListTags Text
-- | Creates a value of ListTagsResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listTagsResponse :: Int -> ListTagsResponse
-- | See: listTagsResponse smart constructor.
data ListTagsResponse
-- | The list of tags assigned to the function. For more information, see
-- Tagging Lambda Functions in the AWS Lambda Developer
-- Guide .
ltrsTags :: Lens' ListTagsResponse (HashMap Text Text)
-- |
-- - - | The response status code.
--
ltrsResponseStatus :: Lens' ListTagsResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.ListTags.ListTagsResponse
instance Data.Data.Data Network.AWS.Lambda.ListTags.ListTagsResponse
instance GHC.Show.Show Network.AWS.Lambda.ListTags.ListTagsResponse
instance GHC.Read.Read Network.AWS.Lambda.ListTags.ListTagsResponse
instance GHC.Classes.Eq Network.AWS.Lambda.ListTags.ListTagsResponse
instance GHC.Generics.Generic Network.AWS.Lambda.ListTags.ListTags
instance Data.Data.Data Network.AWS.Lambda.ListTags.ListTags
instance GHC.Show.Show Network.AWS.Lambda.ListTags.ListTags
instance GHC.Read.Read Network.AWS.Lambda.ListTags.ListTags
instance GHC.Classes.Eq Network.AWS.Lambda.ListTags.ListTags
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.ListTags.ListTags
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListTags.ListTagsResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.ListTags.ListTags
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListTags.ListTags
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.ListTags.ListTags
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.ListTags.ListTags
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.ListTags.ListTags
-- | Returns a list of your Lambda functions. For each function, the
-- response includes the function configuration information. You must use
-- GetFunction to retrieve the code for your function.
--
-- This operation requires permission for the
-- lambda:ListFunctions action.
--
-- If you are using the versioning feature, you can list all of your
-- functions or only > LATEST versions. For information about
-- the versioning feature, see AWS Lambda Function Versioning and
-- Aliases .
--
-- This operation returns paginated results.
module Network.AWS.Lambda.ListFunctions
-- | Creates a value of ListFunctions with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - lfMasterRegion - Optional string. If not specified, will
-- return only regular function versions (i.e., non-replicated versions).
-- Valid values are: The region from which the functions are replicated.
-- For example, if you specify us-east-1 , only functions
-- replicated from that region will be returned. ALL : Will
-- return all functions from any region. If specified, you also must
-- specify a valid FunctionVersion parameter.
-- - lfMarker - Optional string. An opaque pagination token
-- returned from a previous ListFunctions operation. If present,
-- indicates where to continue the listing.
-- - lfMaxItems - Optional integer. Specifies the maximum number
-- of AWS Lambda functions to return in response. This parameter value
-- must be greater than 0.
-- - lfFunctionVersion - Optional string. If not specified, only
-- the unqualified functions ARNs (Amazon Resource Names) will be
-- returned. Valid value: ALL : Will return all versions,
-- including > LATEST which will have fully qualified ARNs
-- (Amazon Resource Names).
--
listFunctions :: ListFunctions
-- | See: listFunctions smart constructor.
data ListFunctions
-- | Optional string. If not specified, will return only regular function
-- versions (i.e., non-replicated versions). Valid values are: The region
-- from which the functions are replicated. For example, if you specify
-- us-east-1 , only functions replicated from that region will
-- be returned. ALL : Will return all functions from any region.
-- If specified, you also must specify a valid FunctionVersion parameter.
lfMasterRegion :: Lens' ListFunctions (Maybe Text)
-- | Optional string. An opaque pagination token returned from a previous
-- ListFunctions operation. If present, indicates where to
-- continue the listing.
lfMarker :: Lens' ListFunctions (Maybe Text)
-- | Optional integer. Specifies the maximum number of AWS Lambda functions
-- to return in response. This parameter value must be greater than 0.
lfMaxItems :: Lens' ListFunctions (Maybe Natural)
-- | Optional string. If not specified, only the unqualified functions ARNs
-- (Amazon Resource Names) will be returned. Valid value: ALL :
-- Will return all versions, including > LATEST which will
-- have fully qualified ARNs (Amazon Resource Names).
lfFunctionVersion :: Lens' ListFunctions (Maybe FunctionVersion)
-- | Creates a value of ListFunctionsResponse with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listFunctionsResponse :: Int -> ListFunctionsResponse
-- | Contains a list of AWS Lambda function configurations (see
-- FunctionConfiguration .
--
-- See: listFunctionsResponse smart constructor.
data ListFunctionsResponse
-- | A string, present if there are more functions.
lfrsNextMarker :: Lens' ListFunctionsResponse (Maybe Text)
-- | A list of Lambda functions.
lfrsFunctions :: Lens' ListFunctionsResponse [FunctionConfiguration]
-- |
-- - - | The response status code.
--
lfrsResponseStatus :: Lens' ListFunctionsResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.ListFunctions.ListFunctionsResponse
instance Data.Data.Data Network.AWS.Lambda.ListFunctions.ListFunctionsResponse
instance GHC.Show.Show Network.AWS.Lambda.ListFunctions.ListFunctionsResponse
instance GHC.Classes.Eq Network.AWS.Lambda.ListFunctions.ListFunctionsResponse
instance GHC.Generics.Generic Network.AWS.Lambda.ListFunctions.ListFunctions
instance Data.Data.Data Network.AWS.Lambda.ListFunctions.ListFunctions
instance GHC.Show.Show Network.AWS.Lambda.ListFunctions.ListFunctions
instance GHC.Read.Read Network.AWS.Lambda.ListFunctions.ListFunctions
instance GHC.Classes.Eq Network.AWS.Lambda.ListFunctions.ListFunctions
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.ListFunctions.ListFunctions
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListFunctions.ListFunctionsResponse
instance Network.AWS.Pager.AWSPager Network.AWS.Lambda.ListFunctions.ListFunctions
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.ListFunctions.ListFunctions
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListFunctions.ListFunctions
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.ListFunctions.ListFunctions
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.ListFunctions.ListFunctions
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.ListFunctions.ListFunctions
-- | Returns a list of event source mappings you created using the
-- CreateEventSourceMapping (see
-- CreateEventSourceMapping ).
--
-- For each mapping, the API returns configuration information. You can
-- optionally specify filters to retrieve specific event source mappings.
--
-- If you are using the versioning feature, you can get list of event
-- source mappings for a specific Lambda function version or an alias as
-- described in the FunctionName parameter. For information
-- about the versioning feature, see AWS Lambda Function Versioning
-- and Aliases .
--
-- This operation requires permission for the
-- lambda:ListEventSourceMappings action.
--
-- This operation returns paginated results.
module Network.AWS.Lambda.ListEventSourceMappings
-- | Creates a value of ListEventSourceMappings with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - lesmEventSourceARN - The Amazon Resource Name (ARN) of the
-- Amazon Kinesis stream. (This parameter is optional.)
-- - lesmMarker - Optional string. An opaque pagination token
-- returned from a previous ListEventSourceMappings operation.
-- If present, specifies to continue the list from where the returning
-- call left off.
-- - lesmMaxItems - Optional integer. Specifies the maximum
-- number of event sources to return in response. This value must be
-- greater than 0.
-- - lesmFunctionName - The name of the Lambda function. You can
-- specify the function name (for example, Thumbnail ) or you
-- can specify Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). If
-- you are using versioning, you can also provide a qualified function
-- ARN (ARN that is qualified with function version or alias name as
-- suffix). AWS Lambda also allows you to specify only the function name
-- with the account ID qualifier (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
--
listEventSourceMappings :: ListEventSourceMappings
-- | See: listEventSourceMappings smart constructor.
data ListEventSourceMappings
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream. (This
-- parameter is optional.)
lesmEventSourceARN :: Lens' ListEventSourceMappings (Maybe Text)
-- | Optional string. An opaque pagination token returned from a previous
-- ListEventSourceMappings operation. If present, specifies to
-- continue the list from where the returning call left off.
lesmMarker :: Lens' ListEventSourceMappings (Maybe Text)
-- | Optional integer. Specifies the maximum number of event sources to
-- return in response. This value must be greater than 0.
lesmMaxItems :: Lens' ListEventSourceMappings (Maybe Natural)
-- | The name of the Lambda function. You can specify the function name
-- (for example, Thumbnail ) or you can specify Amazon Resource
-- Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). If
-- you are using versioning, you can also provide a qualified function
-- ARN (ARN that is qualified with function version or alias name as
-- suffix). AWS Lambda also allows you to specify only the function name
-- with the account ID qualifier (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
lesmFunctionName :: Lens' ListEventSourceMappings (Maybe Text)
-- | Creates a value of ListEventSourceMappingsResponse with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listEventSourceMappingsResponse :: Int -> ListEventSourceMappingsResponse
-- | Contains a list of event sources (see
-- EventSourceMappingConfiguration )
--
-- See: listEventSourceMappingsResponse smart constructor.
data ListEventSourceMappingsResponse
-- | An array of EventSourceMappingConfiguration objects.
lesmrsEventSourceMappings :: Lens' ListEventSourceMappingsResponse [EventSourceMappingConfiguration]
-- | A string, present if there are more event source mappings.
lesmrsNextMarker :: Lens' ListEventSourceMappingsResponse (Maybe Text)
-- |
-- - - | The response status code.
--
lesmrsResponseStatus :: Lens' ListEventSourceMappingsResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse
instance Data.Data.Data Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse
instance GHC.Show.Show Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse
instance GHC.Read.Read Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse
instance GHC.Classes.Eq Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse
instance GHC.Generics.Generic Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance Data.Data.Data Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance GHC.Show.Show Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance GHC.Read.Read Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance GHC.Classes.Eq Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappingsResponse
instance Network.AWS.Pager.AWSPager Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.ListEventSourceMappings.ListEventSourceMappings
-- | Returns list of aliases created for a Lambda function. For each alias,
-- the response includes information such as the alias ARN, description,
-- alias name, and the function version to which it points. For more
-- information, see Introduction to AWS Lambda Aliases .
--
-- This requires permission for the lambda:ListAliases action.
--
-- This operation returns paginated results.
module Network.AWS.Lambda.ListAliases
-- | Creates a value of ListAliases with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - laMarker - Optional string. An opaque pagination token
-- returned from a previous ListAliases operation. If present,
-- indicates where to continue the listing.
-- - laMaxItems - Optional integer. Specifies the maximum number
-- of aliases to return in response. This parameter value must be greater
-- than 0.
-- - laFunctionVersion - If you specify this optional parameter,
-- the API returns only the aliases that are pointing to the specific
-- Lambda function version, otherwise the API returns all of the aliases
-- created for the Lambda function.
-- - laFunctionName - Lambda function name for which the alias
-- is created. Note that the length constraint applies only to the ARN.
-- If you specify only the function name, it is limited to 64 characters
-- in length.
--
listAliases :: Text -> ListAliases
-- | See: listAliases smart constructor.
data ListAliases
-- | Optional string. An opaque pagination token returned from a previous
-- ListAliases operation. If present, indicates where to
-- continue the listing.
laMarker :: Lens' ListAliases (Maybe Text)
-- | Optional integer. Specifies the maximum number of aliases to return in
-- response. This parameter value must be greater than 0.
laMaxItems :: Lens' ListAliases (Maybe Natural)
-- | If you specify this optional parameter, the API returns only the
-- aliases that are pointing to the specific Lambda function version,
-- otherwise the API returns all of the aliases created for the Lambda
-- function.
laFunctionVersion :: Lens' ListAliases (Maybe Text)
-- | Lambda function name for which the alias is created. Note that the
-- length constraint applies only to the ARN. If you specify only the
-- function name, it is limited to 64 characters in length.
laFunctionName :: Lens' ListAliases Text
-- | Creates a value of ListAliasesResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
listAliasesResponse :: Int -> ListAliasesResponse
-- | See: listAliasesResponse smart constructor.
data ListAliasesResponse
-- | A list of aliases.
larsAliases :: Lens' ListAliasesResponse [AliasConfiguration]
-- | A string, present if there are more aliases.
larsNextMarker :: Lens' ListAliasesResponse (Maybe Text)
-- |
-- - - | The response status code.
--
larsResponseStatus :: Lens' ListAliasesResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.ListAliases.ListAliasesResponse
instance Data.Data.Data Network.AWS.Lambda.ListAliases.ListAliasesResponse
instance GHC.Show.Show Network.AWS.Lambda.ListAliases.ListAliasesResponse
instance GHC.Read.Read Network.AWS.Lambda.ListAliases.ListAliasesResponse
instance GHC.Classes.Eq Network.AWS.Lambda.ListAliases.ListAliasesResponse
instance GHC.Generics.Generic Network.AWS.Lambda.ListAliases.ListAliases
instance Data.Data.Data Network.AWS.Lambda.ListAliases.ListAliases
instance GHC.Show.Show Network.AWS.Lambda.ListAliases.ListAliases
instance GHC.Read.Read Network.AWS.Lambda.ListAliases.ListAliases
instance GHC.Classes.Eq Network.AWS.Lambda.ListAliases.ListAliases
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.ListAliases.ListAliases
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListAliases.ListAliasesResponse
instance Network.AWS.Pager.AWSPager Network.AWS.Lambda.ListAliases.ListAliases
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.ListAliases.ListAliases
instance Control.DeepSeq.NFData Network.AWS.Lambda.ListAliases.ListAliases
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.ListAliases.ListAliases
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.ListAliases.ListAliases
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.ListAliases.ListAliases
-- | Invokes a specific Lambda function. For an example, see Create the
-- Lambda Function and Test It Manually .
--
-- If you are using the versioning feature, you can invoke the specific
-- function version by providing function version or alias name that is
-- pointing to the function version using the Qualifier
-- parameter in the request. If you don't provide the Qualifier
-- parameter, the > LATEST version of the Lambda function is
-- invoked. Invocations occur at least once in response to an event and
-- functions must be idempotent to handle this. For information about the
-- versioning feature, see AWS Lambda Function Versioning and
-- Aliases .
--
-- This operation requires permission for the
-- lambda:InvokeFunction action.
module Network.AWS.Lambda.Invoke
-- | Creates a value of Invoke with the minimum fields required to
-- make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - iInvocationType - By default, the Invoke API
-- assumes RequestResponse invocation type. You can optionally
-- request asynchronous execution by specifying Event as the
-- InvocationType . You can also use this parameter to request
-- AWS Lambda to not execute the function but do some verification, such
-- as if the caller is authorized to invoke the function and if the
-- inputs are valid. You request this by specifying DryRun as
-- the InvocationType . This is useful in a cross-account
-- scenario when you want to verify access to a function without running
-- it.
-- - iLogType - You can set this optional parameter to
-- Tail in the request only if you specify the
-- InvocationType parameter with value RequestResponse
-- . In this case, AWS Lambda returns the base64-encoded last 4 KB of log
-- data produced by your Lambda function in the x-amz-log-result
-- header.
-- - iQualifier - You can use this optional parameter to specify
-- a Lambda function version or alias name. If you specify a function
-- version, the API uses the qualified function ARN to invoke a specific
-- Lambda function. If you specify an alias name, the API uses the alias
-- ARN to invoke the Lambda function version to which the alias points.
-- If you don't provide this parameter, then the API uses unqualified
-- function ARN which results in invocation of the > LATEST
-- version.
-- - iClientContext - Using the ClientContext you can
-- pass client-specific information to the Lambda function you are
-- invoking. You can then process the client information in your Lambda
-- function as you choose through the context variable. For an example of
-- a ClientContext JSON, see PutEvents in the Amazon
-- Mobile Analytics API Reference and User Guide . The ClientContext
-- JSON must be base64-encoded and has a maximum size of 3583 bytes.
-- - iFunctionName - The Lambda function name. You can specify a
-- function name (for example, Thumbnail ) or you can specify
-- Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
-- - iPayload - JSON that you want to provide to your Lambda
-- function as input.
--
invoke :: Text -> ByteString -> Invoke
-- | See: invoke smart constructor.
data Invoke
-- | By default, the Invoke API assumes RequestResponse
-- invocation type. You can optionally request asynchronous execution by
-- specifying Event as the InvocationType . You can
-- also use this parameter to request AWS Lambda to not execute the
-- function but do some verification, such as if the caller is authorized
-- to invoke the function and if the inputs are valid. You request this
-- by specifying DryRun as the InvocationType . This is
-- useful in a cross-account scenario when you want to verify access to a
-- function without running it.
iInvocationType :: Lens' Invoke (Maybe InvocationType)
-- | You can set this optional parameter to Tail in the request
-- only if you specify the InvocationType parameter with value
-- RequestResponse . In this case, AWS Lambda returns the
-- base64-encoded last 4 KB of log data produced by your Lambda function
-- in the x-amz-log-result header.
iLogType :: Lens' Invoke (Maybe LogType)
-- | You can use this optional parameter to specify a Lambda function
-- version or alias name. If you specify a function version, the API uses
-- the qualified function ARN to invoke a specific Lambda function. If
-- you specify an alias name, the API uses the alias ARN to invoke the
-- Lambda function version to which the alias points. If you don't
-- provide this parameter, then the API uses unqualified function ARN
-- which results in invocation of the > LATEST version.
iQualifier :: Lens' Invoke (Maybe Text)
-- | Using the ClientContext you can pass client-specific
-- information to the Lambda function you are invoking. You can then
-- process the client information in your Lambda function as you choose
-- through the context variable. For an example of a
-- ClientContext JSON, see PutEvents in the Amazon
-- Mobile Analytics API Reference and User Guide . The ClientContext
-- JSON must be base64-encoded and has a maximum size of 3583 bytes.
iClientContext :: Lens' Invoke (Maybe Text)
-- | The Lambda function name. You can specify a function name (for
-- example, Thumbnail ) or you can specify Amazon Resource Name
-- (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
iFunctionName :: Lens' Invoke Text
-- | JSON that you want to provide to your Lambda function as input.
iPayload :: Lens' Invoke ByteString
-- | Creates a value of InvokeResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - irsFunctionError - Indicates whether an error occurred
-- while executing the Lambda function. If an error occurred this field
-- will have one of two values; Handled or Unhandled .
-- Handled errors are errors that are reported by the function
-- while the Unhandled errors are those detected and reported by
-- AWS Lambda. Unhandled errors include out of memory errors and function
-- timeouts. For information about how to report an Handled
-- error, see Programming Model .
-- - irsLogResult - It is the base64-encoded logs for the Lambda
-- function invocation. This is present only if the invocation type is
-- RequestResponse and the logs were requested.
-- - irsPayload - It is the JSON representation of the object
-- returned by the Lambda function. This is present only if the
-- invocation type is RequestResponse . In the event of a
-- function error this field contains a message describing the error. For
-- the Handled errors the Lambda function will report this
-- message. For Unhandled errors AWS Lambda reports the
-- message.
-- - irsExecutedVersion - The function version that has been
-- executed. This value is returned only if the invocation type is
-- RequestResponse . For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
-- - irsStatusCode - The HTTP status code will be in the 200
-- range for successful request. For the RequestResponse
-- invocation type this status code will be 200. For the Event
-- invocation type this status code will be 202. For the DryRun
-- invocation type the status code will be 204.
--
invokeResponse :: Int -> InvokeResponse
-- | Upon success, returns an empty response. Otherwise, throws an
-- exception.
--
-- See: invokeResponse smart constructor.
data InvokeResponse
-- | Indicates whether an error occurred while executing the Lambda
-- function. If an error occurred this field will have one of two values;
-- Handled or Unhandled . Handled errors are
-- errors that are reported by the function while the Unhandled
-- errors are those detected and reported by AWS Lambda. Unhandled errors
-- include out of memory errors and function timeouts. For information
-- about how to report an Handled error, see Programming
-- Model .
irsFunctionError :: Lens' InvokeResponse (Maybe Text)
-- | It is the base64-encoded logs for the Lambda function invocation. This
-- is present only if the invocation type is RequestResponse and
-- the logs were requested.
irsLogResult :: Lens' InvokeResponse (Maybe Text)
-- | It is the JSON representation of the object returned by the Lambda
-- function. This is present only if the invocation type is
-- RequestResponse . In the event of a function error this field
-- contains a message describing the error. For the Handled
-- errors the Lambda function will report this message. For
-- Unhandled errors AWS Lambda reports the message.
irsPayload :: Lens' InvokeResponse (Maybe ByteString)
-- | The function version that has been executed. This value is returned
-- only if the invocation type is RequestResponse . For more
-- information, see 'lambda-traffic-shifting-using-aliases' .
irsExecutedVersion :: Lens' InvokeResponse (Maybe Text)
-- | The HTTP status code will be in the 200 range for successful request.
-- For the RequestResponse invocation type this status code will
-- be 200. For the Event invocation type this status code will
-- be 202. For the DryRun invocation type the status code will
-- be 204.
irsStatusCode :: Lens' InvokeResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.Invoke.InvokeResponse
instance Data.Data.Data Network.AWS.Lambda.Invoke.InvokeResponse
instance GHC.Show.Show Network.AWS.Lambda.Invoke.InvokeResponse
instance GHC.Classes.Eq Network.AWS.Lambda.Invoke.InvokeResponse
instance GHC.Generics.Generic Network.AWS.Lambda.Invoke.Invoke
instance Data.Data.Data Network.AWS.Lambda.Invoke.Invoke
instance GHC.Show.Show Network.AWS.Lambda.Invoke.Invoke
instance GHC.Classes.Eq Network.AWS.Lambda.Invoke.Invoke
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.Invoke.Invoke
instance Control.DeepSeq.NFData Network.AWS.Lambda.Invoke.InvokeResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.Invoke.Invoke
instance Control.DeepSeq.NFData Network.AWS.Lambda.Invoke.Invoke
instance Network.AWS.Data.Body.ToBody Network.AWS.Lambda.Invoke.Invoke
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.Invoke.Invoke
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.Invoke.Invoke
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.Invoke.Invoke
-- | Returns the resource policy associated with the specified Lambda
-- function.
--
-- If you are using the versioning feature, you can get the resource
-- policy associated with the specific Lambda function version or alias
-- by specifying the version or alias name using the Qualifier
-- parameter. For more information about versioning, see AWS Lambda
-- Function Versioning and Aliases .
--
-- You need permission for the lambda:GetPolicy action.
module Network.AWS.Lambda.GetPolicy
-- | Creates a value of GetPolicy with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - gpQualifier - You can specify this optional query parameter
-- to specify a function version or an alias name in which case this API
-- will return all permissions associated with the specific qualified
-- ARN. If you don't provide this parameter, the API will return
-- permissions that apply to the unqualified function ARN.
-- - gpFunctionName - Function name whose resource policy you
-- want to retrieve. You can specify the function name (for example,
-- Thumbnail ) or you can specify Amazon Resource Name (ARN) of
-- the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). If
-- you are using versioning, you can also provide a qualified function
-- ARN (ARN that is qualified with function version or alias name as
-- suffix). AWS Lambda also allows you to specify only the function name
-- with the account ID qualifier (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
--
getPolicy :: Text -> GetPolicy
-- | See: getPolicy smart constructor.
data GetPolicy
-- | You can specify this optional query parameter to specify a function
-- version or an alias name in which case this API will return all
-- permissions associated with the specific qualified ARN. If you don't
-- provide this parameter, the API will return permissions that apply to
-- the unqualified function ARN.
gpQualifier :: Lens' GetPolicy (Maybe Text)
-- | Function name whose resource policy you want to retrieve. You can
-- specify the function name (for example, Thumbnail ) or you
-- can specify Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). If
-- you are using versioning, you can also provide a qualified function
-- ARN (ARN that is qualified with function version or alias name as
-- suffix). AWS Lambda also allows you to specify only the function name
-- with the account ID qualifier (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
gpFunctionName :: Lens' GetPolicy Text
-- | Creates a value of GetPolicyResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - gprsPolicy - The resource policy associated with the
-- specified function. The response returns the same as a string using a
-- backslash ("") as an escape character in the JSON.
-- - gprsRevisionId - Represents the latest updated revision of
-- the function or alias.
-- - gprsResponseStatus - -- | The response status code.
--
getPolicyResponse :: Int -> GetPolicyResponse
-- | See: getPolicyResponse smart constructor.
data GetPolicyResponse
-- | The resource policy associated with the specified function. The
-- response returns the same as a string using a backslash ("") as an
-- escape character in the JSON.
gprsPolicy :: Lens' GetPolicyResponse (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
gprsRevisionId :: Lens' GetPolicyResponse (Maybe Text)
-- |
-- - - | The response status code.
--
gprsResponseStatus :: Lens' GetPolicyResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.GetPolicy.GetPolicyResponse
instance Data.Data.Data Network.AWS.Lambda.GetPolicy.GetPolicyResponse
instance GHC.Show.Show Network.AWS.Lambda.GetPolicy.GetPolicyResponse
instance GHC.Read.Read Network.AWS.Lambda.GetPolicy.GetPolicyResponse
instance GHC.Classes.Eq Network.AWS.Lambda.GetPolicy.GetPolicyResponse
instance GHC.Generics.Generic Network.AWS.Lambda.GetPolicy.GetPolicy
instance Data.Data.Data Network.AWS.Lambda.GetPolicy.GetPolicy
instance GHC.Show.Show Network.AWS.Lambda.GetPolicy.GetPolicy
instance GHC.Read.Read Network.AWS.Lambda.GetPolicy.GetPolicy
instance GHC.Classes.Eq Network.AWS.Lambda.GetPolicy.GetPolicy
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetPolicy.GetPolicy
instance Control.DeepSeq.NFData Network.AWS.Lambda.GetPolicy.GetPolicyResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.GetPolicy.GetPolicy
instance Control.DeepSeq.NFData Network.AWS.Lambda.GetPolicy.GetPolicy
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetPolicy.GetPolicy
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetPolicy.GetPolicy
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetPolicy.GetPolicy
-- | Returns the configuration information of the Lambda function. This the
-- same information you provided as parameters when uploading the
-- function by using CreateFunction .
--
-- If you are using the versioning feature, you can retrieve this
-- information for a specific function version by using the optional
-- Qualifier parameter and specifying the function version or
-- alias that points to it. If you don't provide it, the API returns
-- information about the $LATEST version of the function. For more
-- information about versioning, see AWS Lambda Function Versioning
-- and Aliases .
--
-- This operation requires permission for the
-- lambda:GetFunctionConfiguration operation.
module Network.AWS.Lambda.GetFunctionConfiguration
-- | Creates a value of GetFunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - gfcQualifier - Using this optional parameter you can
-- specify a function version or an alias name. If you specify function
-- version, the API uses qualified function ARN and returns information
-- about the specific function version. If you specify an alias name, the
-- API uses the alias ARN and returns information about the function
-- version to which the alias points. If you don't specify this
-- parameter, the API uses unqualified function ARN, and returns
-- information about the > LATEST function version.
-- - gfcFunctionName - The name of the Lambda function for which
-- you want to retrieve the configuration information. You can specify a
-- function name (for example, Thumbnail ) or you can specify
-- Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
--
getFunctionConfiguration :: Text -> GetFunctionConfiguration
-- | See: getFunctionConfiguration smart constructor.
data GetFunctionConfiguration
-- | Using this optional parameter you can specify a function version or an
-- alias name. If you specify function version, the API uses qualified
-- function ARN and returns information about the specific function
-- version. If you specify an alias name, the API uses the alias ARN and
-- returns information about the function version to which the alias
-- points. If you don't specify this parameter, the API uses unqualified
-- function ARN, and returns information about the > LATEST
-- function version.
gfcQualifier :: Lens' GetFunctionConfiguration (Maybe Text)
-- | The name of the Lambda function for which you want to retrieve the
-- configuration information. You can specify a function name (for
-- example, Thumbnail ) or you can specify Amazon Resource Name
-- (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
gfcFunctionName :: Lens' GetFunctionConfiguration Text
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fcMemorySize - The memory size, in MB, you configured for
-- the function. Must be a multiple of 64 MB.
-- - fcRuntime - The runtime environment for the Lambda
-- function.
-- - fcFunctionARN - The Amazon Resource Name (ARN) assigned to
-- the function.
-- - fcKMSKeyARN - The Amazon Resource Name (ARN) of the KMS key
-- used to encrypt your function's environment variables. If empty, it
-- means you are using the AWS Lambda default service key.
-- - fcEnvironment - The parent object that contains your
-- environment's configuration settings.
-- - fcDeadLetterConfig - The parent object that contains the
-- target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
-- topic. For more information, see dlq .
-- - fcRole - The Amazon Resource Name (ARN) of the IAM role
-- that Lambda assumes when it executes your function to access any other
-- Amazon Web Services (AWS) resources.
-- - fcVPCConfig - VPC configuration associated with your Lambda
-- function.
-- - fcVersion - The version of the Lambda function.
-- - fcFunctionName - The name of the function. Note that the
-- length constraint applies only to the ARN. If you specify only the
-- function name, it is limited to 64 characters in length.
-- - fcCodeSize - The size, in bytes, of the function .zip file
-- you uploaded.
-- - fcHandler - The function Lambda calls to begin executing
-- your function.
-- - fcTimeout - The function execution time at which Lambda
-- should terminate the function. Because the execution time has cost
-- implications, we recommend you set this value based on your expected
-- execution time. The default is 3 seconds.
-- - fcLastModified - The time stamp of the last time you
-- updated the function. The time stamp is conveyed as a string complying
-- with ISO-8601 in this way YYYY-MM-DDThh:mm:ssTZD (e.g.,
-- 1997-07-16T19:20:30+01:00). For more information, see Date and Time
-- Formats .
-- - fcCodeSha256 - It is the SHA256 hash of your function
-- deployment package.
-- - fcTracingConfig - The parent object that contains your
-- function's tracing settings.
-- - fcDescription - The user-provided description.
-- - fcRevisionId - Represents the latest updated revision of
-- the function or alias.
-- - fcMasterARN - Returns the ARN (Amazon Resource Name) of the
-- master function.
--
functionConfiguration :: FunctionConfiguration
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the KMS key used to encrypt your
-- function's environment variables. If empty, it means you are using the
-- AWS Lambda default service key.
fcKMSKeyARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
fcEnvironment :: Lens' FunctionConfiguration (Maybe EnvironmentResponse)
-- | The parent object that contains the target ARN (Amazon Resource Name)
-- of an Amazon SQS queue or Amazon SNS topic. For more information, see
-- dlq .
fcDeadLetterConfig :: Lens' FunctionConfiguration (Maybe DeadLetterConfig)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | VPC configuration associated with your Lambda function.
fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse)
-- | The version of the Lambda function.
fcVersion :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function. Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- characters in length.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The time stamp of the last time you updated the function. The time
-- stamp is conveyed as a string complying with ISO-8601 in this way
-- YYYY-MM-DDThh:mm:ssTZD (e.g., 1997-07-16T19:20:30+01:00). For more
-- information, see Date and Time Formats .
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | It is the SHA256 hash of your function deployment package.
fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your function's tracing settings.
fcTracingConfig :: Lens' FunctionConfiguration (Maybe TracingConfigResponse)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
fcRevisionId :: Lens' FunctionConfiguration (Maybe Text)
-- | Returns the ARN (Amazon Resource Name) of the master function.
fcMasterARN :: Lens' FunctionConfiguration (Maybe Text)
instance GHC.Generics.Generic Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance Data.Data.Data Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance GHC.Show.Show Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance GHC.Read.Read Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance GHC.Classes.Eq Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance Control.DeepSeq.NFData Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetFunctionConfiguration.GetFunctionConfiguration
-- | Returns the configuration information of the Lambda function and a
-- presigned URL link to the .zip file you uploaded with
-- CreateFunction so you can download the .zip file. Note that
-- the URL is valid for up to 10 minutes. The configuration information
-- is the same information you provided as parameters when uploading the
-- function.
--
-- Using the optional Qualifier parameter, you can specify a
-- specific function version for which you want this information. If you
-- don't specify this parameter, the API uses unqualified function ARN
-- which return information about the > LATEST version of the
-- Lambda function. For more information, see AWS Lambda Function
-- Versioning and Aliases .
--
-- This operation requires permission for the lambda:GetFunction
-- action.
module Network.AWS.Lambda.GetFunction
-- | Creates a value of GetFunction with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - gfQualifier - Use this optional parameter to specify a
-- function version or an alias name. If you specify function version,
-- the API uses qualified function ARN for the request and returns
-- information about the specific Lambda function version. If you specify
-- an alias name, the API uses the alias ARN and returns information
-- about the function version to which the alias points. If you don't
-- provide this parameter, the API uses unqualified function ARN and
-- returns information about the > LATEST version of the
-- Lambda function.
-- - gfFunctionName - The Lambda function name. You can specify
-- a function name (for example, Thumbnail ) or you can specify
-- Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
--
getFunction :: Text -> GetFunction
-- | See: getFunction smart constructor.
data GetFunction
-- | Use this optional parameter to specify a function version or an alias
-- name. If you specify function version, the API uses qualified function
-- ARN for the request and returns information about the specific Lambda
-- function version. If you specify an alias name, the API uses the alias
-- ARN and returns information about the function version to which the
-- alias points. If you don't provide this parameter, the API uses
-- unqualified function ARN and returns information about the >
-- LATEST version of the Lambda function.
gfQualifier :: Lens' GetFunction (Maybe Text)
-- | The Lambda function name. You can specify a function name (for
-- example, Thumbnail ) or you can specify Amazon Resource Name
-- (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
gfFunctionName :: Lens' GetFunction Text
-- | Creates a value of GetFunctionResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
getFunctionResponse :: Int -> GetFunctionResponse
-- | This response contains the object for the Lambda function location
-- (see FunctionCodeLocation .
--
-- See: getFunctionResponse smart constructor.
data GetFunctionResponse
-- | The concurrent execution limit set for this function. For more
-- information, see 'concurrent-executions' .
gfrsConcurrency :: Lens' GetFunctionResponse (Maybe Concurrency)
-- | Undocumented member.
gfrsCode :: Lens' GetFunctionResponse (Maybe FunctionCodeLocation)
-- | Undocumented member.
gfrsConfiguration :: Lens' GetFunctionResponse (Maybe FunctionConfiguration)
-- | Returns the list of tags associated with the function. For more
-- information, see Tagging Lambda Functions in the AWS Lambda
-- Developer Guide .
gfrsTags :: Lens' GetFunctionResponse (HashMap Text Text)
-- |
-- - - | The response status code.
--
gfrsResponseStatus :: Lens' GetFunctionResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.GetFunction.GetFunctionResponse
instance Data.Data.Data Network.AWS.Lambda.GetFunction.GetFunctionResponse
instance GHC.Show.Show Network.AWS.Lambda.GetFunction.GetFunctionResponse
instance GHC.Classes.Eq Network.AWS.Lambda.GetFunction.GetFunctionResponse
instance GHC.Generics.Generic Network.AWS.Lambda.GetFunction.GetFunction
instance Data.Data.Data Network.AWS.Lambda.GetFunction.GetFunction
instance GHC.Show.Show Network.AWS.Lambda.GetFunction.GetFunction
instance GHC.Read.Read Network.AWS.Lambda.GetFunction.GetFunction
instance GHC.Classes.Eq Network.AWS.Lambda.GetFunction.GetFunction
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetFunction.GetFunction
instance Control.DeepSeq.NFData Network.AWS.Lambda.GetFunction.GetFunctionResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.GetFunction.GetFunction
instance Control.DeepSeq.NFData Network.AWS.Lambda.GetFunction.GetFunction
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetFunction.GetFunction
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetFunction.GetFunction
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetFunction.GetFunction
-- | Returns configuration information for the specified event source
-- mapping (see CreateEventSourceMapping ).
--
-- This operation requires permission for the
-- lambda:GetEventSourceMapping action.
module Network.AWS.Lambda.GetEventSourceMapping
-- | Creates a value of GetEventSourceMapping with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - gesmUUId - The AWS Lambda assigned ID of the event source
-- mapping.
--
getEventSourceMapping :: Text -> GetEventSourceMapping
-- | See: getEventSourceMapping smart constructor.
data GetEventSourceMapping
-- | The AWS Lambda assigned ID of the event source mapping.
gesmUUId :: Lens' GetEventSourceMapping Text
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - esmcEventSourceARN - The Amazon Resource Name (ARN) of the
-- Amazon Kinesis stream that is the source of events.
-- - esmcState - The state of the event source mapping. It can
-- be Creating , Enabled , Disabled ,
-- Enabling , Disabling , Updating , or
-- Deleting .
-- - esmcFunctionARN - The Lambda function to invoke when AWS
-- Lambda detects an event on the stream.
-- - esmcUUId - The AWS Lambda assigned opaque identifier for
-- the mapping.
-- - esmcLastProcessingResult - The result of the last AWS
-- Lambda invocation of your Lambda function.
-- - esmcBatchSize - The largest number of records that AWS
-- Lambda will retrieve from your event source at the time of invoking
-- your function. Your function receives an event with all the retrieved
-- records.
-- - esmcStateTransitionReason - The reason the event source
-- mapping is in its current state. It is either user-requested or an AWS
-- Lambda-initiated state transition.
-- - esmcLastModified - The UTC time string indicating the last
-- time the event mapping was updated.
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be Creating ,
-- Enabled , Disabled , Enabling ,
-- Disabling , Updating , or Deleting .
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
instance GHC.Generics.Generic Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance Data.Data.Data Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance GHC.Show.Show Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance GHC.Read.Read Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance GHC.Classes.Eq Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance Control.DeepSeq.NFData Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetEventSourceMapping.GetEventSourceMapping
-- | Returns the specified alias information such as the alias ARN,
-- description, and function version it is pointing to. For more
-- information, see Introduction to AWS Lambda Aliases .
--
-- This requires permission for the lambda:GetAlias action.
module Network.AWS.Lambda.GetAlias
-- | Creates a value of GetAlias with the minimum fields required to
-- make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - gaFunctionName - Function name for which the alias is
-- created. An alias is a subresource that exists only in the context of
-- an existing Lambda function so you must specify the function name.
-- Note that the length constraint applies only to the ARN. If you
-- specify only the function name, it is limited to 64 characters in
-- length.
-- - gaName - Name of the alias for which you want to retrieve
-- information.
--
getAlias :: Text -> Text -> GetAlias
-- | See: getAlias smart constructor.
data GetAlias
-- | Function name for which the alias is created. An alias is a
-- subresource that exists only in the context of an existing Lambda
-- function so you must specify the function name. Note that the length
-- constraint applies only to the ARN. If you specify only the function
-- name, it is limited to 64 characters in length.
gaFunctionName :: Lens' GetAlias Text
-- | Name of the alias for which you want to retrieve information.
gaName :: Lens' GetAlias Text
-- | Creates a value of AliasConfiguration with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - acRoutingConfig - Specifies an additional function versions
-- the alias points to, allowing you to dictate what percentage of
-- traffic will invoke each version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
-- - acName - Alias name.
-- - acFunctionVersion - Function version to which the alias
-- points.
-- - acAliasARN - Lambda function ARN that is qualified using
-- the alias name as the suffix. For example, if you create an alias
-- called BETA that points to a helloworld function version, the
-- ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA
-- .
-- - acDescription - Alias description.
-- - acRevisionId - Represents the latest updated revision of
-- the function or alias.
--
aliasConfiguration :: AliasConfiguration
-- | Provides configuration information about a Lambda function version
-- alias.
--
-- See: aliasConfiguration smart constructor.
data AliasConfiguration
-- | Specifies an additional function versions the alias points to,
-- allowing you to dictate what percentage of traffic will invoke each
-- version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
acRoutingConfig :: Lens' AliasConfiguration (Maybe AliasRoutingConfiguration)
-- | Alias name.
acName :: Lens' AliasConfiguration (Maybe Text)
-- | Function version to which the alias points.
acFunctionVersion :: Lens' AliasConfiguration (Maybe Text)
-- | Lambda function ARN that is qualified using the alias name as the
-- suffix. For example, if you create an alias called BETA that
-- points to a helloworld function version, the ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA .
acAliasARN :: Lens' AliasConfiguration (Maybe Text)
-- | Alias description.
acDescription :: Lens' AliasConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
acRevisionId :: Lens' AliasConfiguration (Maybe Text)
instance GHC.Generics.Generic Network.AWS.Lambda.GetAlias.GetAlias
instance Data.Data.Data Network.AWS.Lambda.GetAlias.GetAlias
instance GHC.Show.Show Network.AWS.Lambda.GetAlias.GetAlias
instance GHC.Read.Read Network.AWS.Lambda.GetAlias.GetAlias
instance GHC.Classes.Eq Network.AWS.Lambda.GetAlias.GetAlias
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetAlias.GetAlias
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.GetAlias.GetAlias
instance Control.DeepSeq.NFData Network.AWS.Lambda.GetAlias.GetAlias
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetAlias.GetAlias
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetAlias.GetAlias
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetAlias.GetAlias
-- | Returns a customer's account settings.
--
-- You can use this operation to retrieve Lambda limits information, such
-- as code size and concurrency limits. For more information about
-- limits, see AWS Lambda Limits . You can also retrieve resource
-- usage statistics, such as code storage usage and function count.
module Network.AWS.Lambda.GetAccountSettings
-- | Creates a value of GetAccountSettings with the minimum fields
-- required to make a request.
getAccountSettings :: GetAccountSettings
-- | See: getAccountSettings smart constructor.
data GetAccountSettings
-- | Creates a value of GetAccountSettingsResponse with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
getAccountSettingsResponse :: Int -> GetAccountSettingsResponse
-- | See: getAccountSettingsResponse smart constructor.
data GetAccountSettingsResponse
-- | Undocumented member.
gasrsAccountLimit :: Lens' GetAccountSettingsResponse (Maybe AccountLimit)
-- | Undocumented member.
gasrsAccountUsage :: Lens' GetAccountSettingsResponse (Maybe AccountUsage)
-- |
-- - - | The response status code.
--
gasrsResponseStatus :: Lens' GetAccountSettingsResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.GetAccountSettings.GetAccountSettingsResponse
instance Data.Data.Data Network.AWS.Lambda.GetAccountSettings.GetAccountSettingsResponse
instance GHC.Show.Show Network.AWS.Lambda.GetAccountSettings.GetAccountSettingsResponse
instance GHC.Read.Read Network.AWS.Lambda.GetAccountSettings.GetAccountSettingsResponse
instance GHC.Classes.Eq Network.AWS.Lambda.GetAccountSettings.GetAccountSettingsResponse
instance GHC.Generics.Generic Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance Data.Data.Data Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance GHC.Show.Show Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance GHC.Read.Read Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance GHC.Classes.Eq Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance Control.DeepSeq.NFData Network.AWS.Lambda.GetAccountSettings.GetAccountSettingsResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance Control.DeepSeq.NFData Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.GetAccountSettings.GetAccountSettings
-- | Removes concurrent execution limits from this function. For more
-- information, see 'concurrent-executions' .
module Network.AWS.Lambda.DeleteFunctionConcurrency
-- | Creates a value of DeleteFunctionConcurrency with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - dfcFunctionName - The name of the function you are removing
-- concurrent execution limits from. For more information, see
-- 'concurrent-executions' .
--
deleteFunctionConcurrency :: Text -> DeleteFunctionConcurrency
-- | See: deleteFunctionConcurrency smart constructor.
data DeleteFunctionConcurrency
-- | The name of the function you are removing concurrent execution limits
-- from. For more information, see 'concurrent-executions' .
dfcFunctionName :: Lens' DeleteFunctionConcurrency Text
-- | Creates a value of DeleteFunctionConcurrencyResponse with the
-- minimum fields required to make a request.
deleteFunctionConcurrencyResponse :: DeleteFunctionConcurrencyResponse
-- | See: deleteFunctionConcurrencyResponse smart
-- constructor.
data DeleteFunctionConcurrencyResponse
instance GHC.Generics.Generic Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrencyResponse
instance Data.Data.Data Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrencyResponse
instance GHC.Show.Show Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrencyResponse
instance GHC.Read.Read Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrencyResponse
instance GHC.Classes.Eq Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrencyResponse
instance GHC.Generics.Generic Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance Data.Data.Data Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance GHC.Show.Show Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance GHC.Read.Read Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance GHC.Classes.Eq Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance Control.DeepSeq.NFData Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrencyResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance Control.DeepSeq.NFData Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.DeleteFunctionConcurrency.DeleteFunctionConcurrency
-- | Deletes the specified Lambda function code and configuration.
--
-- If you are using the versioning feature and you don't specify a
-- function version in your DeleteFunction request, AWS Lambda
-- will delete the function, including all its versions, and any aliases
-- pointing to the function versions. To delete a specific function
-- version, you must provide the function version via the
-- Qualifier parameter. For information about function
-- versioning, see AWS Lambda Function Versioning and Aliases .
--
-- When you delete a function the associated resource policy is also
-- deleted. You will need to delete the event source mappings explicitly.
--
-- This operation requires permission for the
-- lambda:DeleteFunction action.
module Network.AWS.Lambda.DeleteFunction
-- | Creates a value of DeleteFunction with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - dfQualifier - Using this optional parameter you can specify
-- a function version (but not the > LATEST version) to
-- direct AWS Lambda to delete a specific function version. If the
-- function version has one or more aliases pointing to it, you will get
-- an error because you cannot have aliases pointing to it. You can
-- delete any function version but not the > LATEST , that
-- is, you cannot specify > LATEST as the value of this
-- parameter. The > LATEST version can be deleted only when
-- you want to delete all the function versions and aliases. You can only
-- specify a function version, not an alias name, using this parameter.
-- You cannot delete a function version using its alias. If you don't
-- specify this parameter, AWS Lambda will delete the function, including
-- all of its versions and aliases.
-- - dfFunctionName - The Lambda function to delete. You can
-- specify the function name (for example, Thumbnail ) or you
-- can specify Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). If
-- you are using versioning, you can also provide a qualified function
-- ARN (ARN that is qualified with function version or alias name as
-- suffix). AWS Lambda also allows you to specify only the function name
-- with the account ID qualifier (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
--
deleteFunction :: Text -> DeleteFunction
-- | See: deleteFunction smart constructor.
data DeleteFunction
-- | Using this optional parameter you can specify a function version (but
-- not the > LATEST version) to direct AWS Lambda to delete a
-- specific function version. If the function version has one or more
-- aliases pointing to it, you will get an error because you cannot have
-- aliases pointing to it. You can delete any function version but not
-- the > LATEST , that is, you cannot specify >
-- LATEST as the value of this parameter. The > LATEST
-- version can be deleted only when you want to delete all the function
-- versions and aliases. You can only specify a function version, not an
-- alias name, using this parameter. You cannot delete a function version
-- using its alias. If you don't specify this parameter, AWS Lambda will
-- delete the function, including all of its versions and aliases.
dfQualifier :: Lens' DeleteFunction (Maybe Text)
-- | The Lambda function to delete. You can specify the function name (for
-- example, Thumbnail ) or you can specify Amazon Resource Name
-- (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). If
-- you are using versioning, you can also provide a qualified function
-- ARN (ARN that is qualified with function version or alias name as
-- suffix). AWS Lambda also allows you to specify only the function name
-- with the account ID qualifier (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
dfFunctionName :: Lens' DeleteFunction Text
-- | Creates a value of DeleteFunctionResponse with the minimum
-- fields required to make a request.
deleteFunctionResponse :: DeleteFunctionResponse
-- | See: deleteFunctionResponse smart constructor.
data DeleteFunctionResponse
instance GHC.Generics.Generic Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse
instance Data.Data.Data Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse
instance GHC.Show.Show Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse
instance GHC.Read.Read Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse
instance GHC.Classes.Eq Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse
instance GHC.Generics.Generic Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance Data.Data.Data Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance GHC.Show.Show Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance GHC.Read.Read Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance GHC.Classes.Eq Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance Control.DeepSeq.NFData Network.AWS.Lambda.DeleteFunction.DeleteFunctionResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance Control.DeepSeq.NFData Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.DeleteFunction.DeleteFunction
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.DeleteFunction.DeleteFunction
-- | Removes an event source mapping. This means AWS Lambda will no longer
-- invoke the function for events in the associated source.
--
-- This operation requires permission for the
-- lambda:DeleteEventSourceMapping action.
module Network.AWS.Lambda.DeleteEventSourceMapping
-- | Creates a value of DeleteEventSourceMapping with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - desmUUId - The event source mapping ID.
--
deleteEventSourceMapping :: Text -> DeleteEventSourceMapping
-- | See: deleteEventSourceMapping smart constructor.
data DeleteEventSourceMapping
-- | The event source mapping ID.
desmUUId :: Lens' DeleteEventSourceMapping Text
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - esmcEventSourceARN - The Amazon Resource Name (ARN) of the
-- Amazon Kinesis stream that is the source of events.
-- - esmcState - The state of the event source mapping. It can
-- be Creating , Enabled , Disabled ,
-- Enabling , Disabling , Updating , or
-- Deleting .
-- - esmcFunctionARN - The Lambda function to invoke when AWS
-- Lambda detects an event on the stream.
-- - esmcUUId - The AWS Lambda assigned opaque identifier for
-- the mapping.
-- - esmcLastProcessingResult - The result of the last AWS
-- Lambda invocation of your Lambda function.
-- - esmcBatchSize - The largest number of records that AWS
-- Lambda will retrieve from your event source at the time of invoking
-- your function. Your function receives an event with all the retrieved
-- records.
-- - esmcStateTransitionReason - The reason the event source
-- mapping is in its current state. It is either user-requested or an AWS
-- Lambda-initiated state transition.
-- - esmcLastModified - The UTC time string indicating the last
-- time the event mapping was updated.
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be Creating ,
-- Enabled , Disabled , Enabling ,
-- Disabling , Updating , or Deleting .
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
instance GHC.Generics.Generic Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance Data.Data.Data Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance GHC.Show.Show Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance GHC.Read.Read Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance GHC.Classes.Eq Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance Control.DeepSeq.NFData Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.DeleteEventSourceMapping.DeleteEventSourceMapping
-- | Deletes the specified Lambda function alias. For more information, see
-- Introduction to AWS Lambda Aliases .
--
-- This requires permission for the lambda:DeleteAlias action.
module Network.AWS.Lambda.DeleteAlias
-- | Creates a value of DeleteAlias with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - daFunctionName - The Lambda function name for which the
-- alias is created. Deleting an alias does not delete the function
-- version to which it is pointing. Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
-- - daName - Name of the alias to delete.
--
deleteAlias :: Text -> Text -> DeleteAlias
-- | See: deleteAlias smart constructor.
data DeleteAlias
-- | The Lambda function name for which the alias is created. Deleting an
-- alias does not delete the function version to which it is pointing.
-- Note that the length constraint applies only to the ARN. If you
-- specify only the function name, it is limited to 64 characters in
-- length.
daFunctionName :: Lens' DeleteAlias Text
-- | Name of the alias to delete.
daName :: Lens' DeleteAlias Text
-- | Creates a value of DeleteAliasResponse with the minimum fields
-- required to make a request.
deleteAliasResponse :: DeleteAliasResponse
-- | See: deleteAliasResponse smart constructor.
data DeleteAliasResponse
instance GHC.Generics.Generic Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse
instance Data.Data.Data Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse
instance GHC.Show.Show Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse
instance GHC.Read.Read Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse
instance GHC.Classes.Eq Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse
instance GHC.Generics.Generic Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance Data.Data.Data Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance GHC.Show.Show Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance GHC.Read.Read Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance GHC.Classes.Eq Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance Control.DeepSeq.NFData Network.AWS.Lambda.DeleteAlias.DeleteAliasResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance Control.DeepSeq.NFData Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.DeleteAlias.DeleteAlias
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.DeleteAlias.DeleteAlias
-- | Creates a new Lambda function. The function metadata is created from
-- the request parameters, and the code for the function is provided by a
-- .zip file in the request body. If the function name already exists,
-- the operation will fail. Note that the function name is
-- case-sensitive.
--
-- If you are using versioning, you can also publish a version of the
-- Lambda function you are creating using the Publish parameter.
-- For more information about versioning, see AWS Lambda Function
-- Versioning and Aliases .
--
-- This operation requires permission for the
-- lambda:CreateFunction action.
module Network.AWS.Lambda.CreateFunction
-- | Creates a value of CreateFunction with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - cfMemorySize - The amount of memory, in MB, your Lambda
-- function is given. Lambda uses this memory size to infer the amount of
-- CPU and memory allocated to your function. Your function use-case
-- determines your CPU and memory requirements. For example, a database
-- operation might need less memory compared to an image processing
-- function. The default value is 128 MB. The value must be a multiple of
-- 64 MB.
-- - cfKMSKeyARN - The Amazon Resource Name (ARN) of the KMS key
-- used to encrypt your function's environment variables. If not
-- provided, AWS Lambda will use a default service key.
-- - cfEnvironment - Undocumented member.
-- - cfDeadLetterConfig - The parent object that contains the
-- target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
-- topic. For more information, see dlq .
-- - cfVPCConfig - If your Lambda function accesses resources in
-- a VPC, you provide this parameter identifying the list of security
-- group IDs and subnet IDs. These must belong to the same VPC. You must
-- provide at least one security group and one subnet ID.
-- - cfTimeout - The function execution time at which Lambda
-- should terminate the function. Because the execution time has cost
-- implications, we recommend you set this value based on your expected
-- execution time. The default is 3 seconds.
-- - cfTracingConfig - The parent object that contains your
-- function's tracing settings.
-- - cfDescription - A short, user-defined function description.
-- Lambda does not use this value. Assign a meaningful description as you
-- see fit.
-- - cfTags - The list of tags (key-value pairs) assigned to the
-- new function. For more information, see Tagging Lambda
-- Functions in the AWS Lambda Developer Guide .
-- - cfPublish - This boolean parameter can be used to request
-- AWS Lambda to create the Lambda function and publish a version as an
-- atomic operation.
-- - cfFunctionName - The name you want to assign to the
-- function you are uploading. The function names appear in the console
-- and are returned in the ListFunctions API. Function names are
-- used to specify functions to other AWS Lambda API operations, such as
-- Invoke . Note that the length constraint applies only to the
-- ARN. If you specify only the function name, it is limited to 64
-- characters in length.
-- - cfRuntime - The runtime environment for the Lambda function
-- you are uploading. To use the Python runtime v3.6, set the value to
-- "python3.6". To use the Python runtime v2.7, set the value to
-- "python2.7". To use the Node.js runtime v6.10, set the value to
-- "nodejs6.10". To use the Node.js runtime v4.3, set the value to
-- "nodejs4.3". To use the .NET Core runtime v1.0, set the value to
-- "dotnetcore1.0". To use the .NET Core runtime v2.0, set the value to
-- "dotnetcore2.0".
-- - cfRole - The Amazon Resource Name (ARN) of the IAM role
-- that Lambda assumes when it executes your function to access any other
-- Amazon Web Services (AWS) resources. For more information, see AWS
-- Lambda: How it Works .
-- - cfHandler - The function within your code that Lambda calls
-- to begin execution. For Node.js, it is the module-name
-- .export value in your function. For Java, it can be
-- package.class-name::handler or package.class-name .
-- For more information, see Lambda Function Handler (Java) .
-- - cfCode - The code for the Lambda function.
--
createFunction :: Text -> Runtime -> Text -> Text -> FunctionCode -> CreateFunction
-- | See: createFunction smart constructor.
data CreateFunction
-- | The amount of memory, in MB, your Lambda function is given. Lambda
-- uses this memory size to infer the amount of CPU and memory allocated
-- to your function. Your function use-case determines your CPU and
-- memory requirements. For example, a database operation might need less
-- memory compared to an image processing function. The default value is
-- 128 MB. The value must be a multiple of 64 MB.
cfMemorySize :: Lens' CreateFunction (Maybe Natural)
-- | The Amazon Resource Name (ARN) of the KMS key used to encrypt your
-- function's environment variables. If not provided, AWS Lambda will use
-- a default service key.
cfKMSKeyARN :: Lens' CreateFunction (Maybe Text)
-- | Undocumented member.
cfEnvironment :: Lens' CreateFunction (Maybe Environment)
-- | The parent object that contains the target ARN (Amazon Resource Name)
-- of an Amazon SQS queue or Amazon SNS topic. For more information, see
-- dlq .
cfDeadLetterConfig :: Lens' CreateFunction (Maybe DeadLetterConfig)
-- | If your Lambda function accesses resources in a VPC, you provide this
-- parameter identifying the list of security group IDs and subnet IDs.
-- These must belong to the same VPC. You must provide at least one
-- security group and one subnet ID.
cfVPCConfig :: Lens' CreateFunction (Maybe VPCConfig)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
cfTimeout :: Lens' CreateFunction (Maybe Natural)
-- | The parent object that contains your function's tracing settings.
cfTracingConfig :: Lens' CreateFunction (Maybe TracingConfig)
-- | A short, user-defined function description. Lambda does not use this
-- value. Assign a meaningful description as you see fit.
cfDescription :: Lens' CreateFunction (Maybe Text)
-- | The list of tags (key-value pairs) assigned to the new function. For
-- more information, see Tagging Lambda Functions in the AWS
-- Lambda Developer Guide .
cfTags :: Lens' CreateFunction (HashMap Text Text)
-- | This boolean parameter can be used to request AWS Lambda to create the
-- Lambda function and publish a version as an atomic operation.
cfPublish :: Lens' CreateFunction (Maybe Bool)
-- | The name you want to assign to the function you are uploading. The
-- function names appear in the console and are returned in the
-- ListFunctions API. Function names are used to specify
-- functions to other AWS Lambda API operations, such as Invoke
-- . Note that the length constraint applies only to the ARN. If you
-- specify only the function name, it is limited to 64 characters in
-- length.
cfFunctionName :: Lens' CreateFunction Text
-- | The runtime environment for the Lambda function you are uploading. To
-- use the Python runtime v3.6, set the value to "python3.6". To use the
-- Python runtime v2.7, set the value to "python2.7". To use the Node.js
-- runtime v6.10, set the value to "nodejs6.10". To use the Node.js
-- runtime v4.3, set the value to "nodejs4.3". To use the .NET Core
-- runtime v1.0, set the value to "dotnetcore1.0". To use the .NET Core
-- runtime v2.0, set the value to "dotnetcore2.0".
cfRuntime :: Lens' CreateFunction Runtime
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources. For more information, see AWS Lambda: How it
-- Works .
cfRole :: Lens' CreateFunction Text
-- | The function within your code that Lambda calls to begin execution.
-- For Node.js, it is the module-name .export value in your
-- function. For Java, it can be package.class-name::handler or
-- package.class-name . For more information, see Lambda
-- Function Handler (Java) .
cfHandler :: Lens' CreateFunction Text
-- | The code for the Lambda function.
cfCode :: Lens' CreateFunction FunctionCode
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fcMemorySize - The memory size, in MB, you configured for
-- the function. Must be a multiple of 64 MB.
-- - fcRuntime - The runtime environment for the Lambda
-- function.
-- - fcFunctionARN - The Amazon Resource Name (ARN) assigned to
-- the function.
-- - fcKMSKeyARN - The Amazon Resource Name (ARN) of the KMS key
-- used to encrypt your function's environment variables. If empty, it
-- means you are using the AWS Lambda default service key.
-- - fcEnvironment - The parent object that contains your
-- environment's configuration settings.
-- - fcDeadLetterConfig - The parent object that contains the
-- target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
-- topic. For more information, see dlq .
-- - fcRole - The Amazon Resource Name (ARN) of the IAM role
-- that Lambda assumes when it executes your function to access any other
-- Amazon Web Services (AWS) resources.
-- - fcVPCConfig - VPC configuration associated with your Lambda
-- function.
-- - fcVersion - The version of the Lambda function.
-- - fcFunctionName - The name of the function. Note that the
-- length constraint applies only to the ARN. If you specify only the
-- function name, it is limited to 64 characters in length.
-- - fcCodeSize - The size, in bytes, of the function .zip file
-- you uploaded.
-- - fcHandler - The function Lambda calls to begin executing
-- your function.
-- - fcTimeout - The function execution time at which Lambda
-- should terminate the function. Because the execution time has cost
-- implications, we recommend you set this value based on your expected
-- execution time. The default is 3 seconds.
-- - fcLastModified - The time stamp of the last time you
-- updated the function. The time stamp is conveyed as a string complying
-- with ISO-8601 in this way YYYY-MM-DDThh:mm:ssTZD (e.g.,
-- 1997-07-16T19:20:30+01:00). For more information, see Date and Time
-- Formats .
-- - fcCodeSha256 - It is the SHA256 hash of your function
-- deployment package.
-- - fcTracingConfig - The parent object that contains your
-- function's tracing settings.
-- - fcDescription - The user-provided description.
-- - fcRevisionId - Represents the latest updated revision of
-- the function or alias.
-- - fcMasterARN - Returns the ARN (Amazon Resource Name) of the
-- master function.
--
functionConfiguration :: FunctionConfiguration
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the KMS key used to encrypt your
-- function's environment variables. If empty, it means you are using the
-- AWS Lambda default service key.
fcKMSKeyARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
fcEnvironment :: Lens' FunctionConfiguration (Maybe EnvironmentResponse)
-- | The parent object that contains the target ARN (Amazon Resource Name)
-- of an Amazon SQS queue or Amazon SNS topic. For more information, see
-- dlq .
fcDeadLetterConfig :: Lens' FunctionConfiguration (Maybe DeadLetterConfig)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | VPC configuration associated with your Lambda function.
fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse)
-- | The version of the Lambda function.
fcVersion :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function. Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- characters in length.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The time stamp of the last time you updated the function. The time
-- stamp is conveyed as a string complying with ISO-8601 in this way
-- YYYY-MM-DDThh:mm:ssTZD (e.g., 1997-07-16T19:20:30+01:00). For more
-- information, see Date and Time Formats .
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | It is the SHA256 hash of your function deployment package.
fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your function's tracing settings.
fcTracingConfig :: Lens' FunctionConfiguration (Maybe TracingConfigResponse)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
fcRevisionId :: Lens' FunctionConfiguration (Maybe Text)
-- | Returns the ARN (Amazon Resource Name) of the master function.
fcMasterARN :: Lens' FunctionConfiguration (Maybe Text)
instance GHC.Generics.Generic Network.AWS.Lambda.CreateFunction.CreateFunction
instance Data.Data.Data Network.AWS.Lambda.CreateFunction.CreateFunction
instance GHC.Show.Show Network.AWS.Lambda.CreateFunction.CreateFunction
instance GHC.Classes.Eq Network.AWS.Lambda.CreateFunction.CreateFunction
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.CreateFunction.CreateFunction
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.CreateFunction.CreateFunction
instance Control.DeepSeq.NFData Network.AWS.Lambda.CreateFunction.CreateFunction
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.CreateFunction.CreateFunction
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.CreateFunction.CreateFunction
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.CreateFunction.CreateFunction
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.CreateFunction.CreateFunction
-- | Identifies a stream as an event source for a Lambda function. It can
-- be either an Amazon Kinesis stream or an Amazon DynamoDB stream. AWS
-- Lambda invokes the specified function when records are posted to the
-- stream.
--
-- This association between a stream source and a Lambda function is
-- called the event source mapping.
--
-- You provide mapping information (for example, which stream to read
-- from and which Lambda function to invoke) in the request body.
--
-- Each event source, such as an Amazon Kinesis or a DynamoDB stream, can
-- be associated with multiple AWS Lambda functions. A given Lambda
-- function can be associated with multiple AWS event sources.
--
-- If you are using versioning, you can specify a specific function
-- version or an alias via the function name parameter. For more
-- information about versioning, see AWS Lambda Function Versioning
-- and Aliases .
--
-- This operation requires permission for the
-- lambda:CreateEventSourceMapping action.
module Network.AWS.Lambda.CreateEventSourceMapping
-- | Creates a value of CreateEventSourceMapping with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - cesmStartingPositionTimestamp - The timestamp of the data
-- record from which to start reading. Used with shard iterator
-- type AT_TIMESTAMP. If a record with this exact timestamp does not
-- exist, the iterator returned is for the next (later) record. If the
-- timestamp is older than the current trim horizon, the iterator
-- returned is for the oldest untrimmed data record (TRIM_HORIZON). Valid
-- only for Kinesis streams .
-- - cesmEnabled - Indicates whether AWS Lambda should begin
-- polling the event source. By default, Enabled is true.
-- - cesmBatchSize - The largest number of records that AWS
-- Lambda will retrieve from your event source at the time of invoking
-- your function. Your function receives an event with all the retrieved
-- records. The default is 100 records.
-- - cesmEventSourceARN - The Amazon Resource Name (ARN) of the
-- Amazon Kinesis or the Amazon DynamoDB stream that is the event source.
-- Any record added to this stream could cause AWS Lambda to invoke your
-- Lambda function, it depends on the BatchSize . AWS Lambda
-- POSTs the Amazon Kinesis event, containing records, to your Lambda
-- function as JSON.
-- - cesmFunctionName - The Lambda function to invoke when AWS
-- Lambda detects an event on the stream. You can specify the function
-- name (for example, Thumbnail ) or you can specify Amazon
-- Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). If
-- you are using versioning, you can also provide a qualified function
-- ARN (ARN that is qualified with function version or alias name as
-- suffix). For more information about versioning, see AWS Lambda
-- Function Versioning and Aliases AWS Lambda also allows you to
-- specify only the function name with the account ID qualifier (for
-- example, account-id:Thumbnail ). Note that the length
-- constraint applies only to the ARN. If you specify only the function
-- name, it is limited to 64 characters in length.
-- - cesmStartingPosition - The position in the DynamoDB or
-- Kinesis stream where AWS Lambda should start reading. For more
-- information, see GetShardIterator in the Amazon Kinesis API
-- Reference Guide or GetShardIterator in the Amazon
-- DynamoDB API Reference Guide . The AT_TIMESTAMP value is
-- supported only for Kinesis streams .
--
createEventSourceMapping :: Text -> Text -> EventSourcePosition -> CreateEventSourceMapping
-- | See: createEventSourceMapping smart constructor.
data CreateEventSourceMapping
-- | The timestamp of the data record from which to start reading. Used
-- with shard iterator type AT_TIMESTAMP. If a record with this
-- exact timestamp does not exist, the iterator returned is for the next
-- (later) record. If the timestamp is older than the current trim
-- horizon, the iterator returned is for the oldest untrimmed data record
-- (TRIM_HORIZON). Valid only for Kinesis streams .
cesmStartingPositionTimestamp :: Lens' CreateEventSourceMapping (Maybe UTCTime)
-- | Indicates whether AWS Lambda should begin polling the event source. By
-- default, Enabled is true.
cesmEnabled :: Lens' CreateEventSourceMapping (Maybe Bool)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records. The default is 100
-- records.
cesmBatchSize :: Lens' CreateEventSourceMapping (Maybe Natural)
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis or the Amazon
-- DynamoDB stream that is the event source. Any record added to this
-- stream could cause AWS Lambda to invoke your Lambda function, it
-- depends on the BatchSize . AWS Lambda POSTs the Amazon
-- Kinesis event, containing records, to your Lambda function as JSON.
cesmEventSourceARN :: Lens' CreateEventSourceMapping Text
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream. You can specify the function name (for example,
-- Thumbnail ) or you can specify Amazon Resource Name (ARN) of
-- the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). If
-- you are using versioning, you can also provide a qualified function
-- ARN (ARN that is qualified with function version or alias name as
-- suffix). For more information about versioning, see AWS Lambda
-- Function Versioning and Aliases AWS Lambda also allows you to
-- specify only the function name with the account ID qualifier (for
-- example, account-id:Thumbnail ). Note that the length
-- constraint applies only to the ARN. If you specify only the function
-- name, it is limited to 64 characters in length.
cesmFunctionName :: Lens' CreateEventSourceMapping Text
-- | The position in the DynamoDB or Kinesis stream where AWS Lambda should
-- start reading. For more information, see GetShardIterator in
-- the Amazon Kinesis API Reference Guide or
-- GetShardIterator in the Amazon DynamoDB API Reference
-- Guide . The AT_TIMESTAMP value is supported only for
-- Kinesis streams .
cesmStartingPosition :: Lens' CreateEventSourceMapping EventSourcePosition
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - esmcEventSourceARN - The Amazon Resource Name (ARN) of the
-- Amazon Kinesis stream that is the source of events.
-- - esmcState - The state of the event source mapping. It can
-- be Creating , Enabled , Disabled ,
-- Enabling , Disabling , Updating , or
-- Deleting .
-- - esmcFunctionARN - The Lambda function to invoke when AWS
-- Lambda detects an event on the stream.
-- - esmcUUId - The AWS Lambda assigned opaque identifier for
-- the mapping.
-- - esmcLastProcessingResult - The result of the last AWS
-- Lambda invocation of your Lambda function.
-- - esmcBatchSize - The largest number of records that AWS
-- Lambda will retrieve from your event source at the time of invoking
-- your function. Your function receives an event with all the retrieved
-- records.
-- - esmcStateTransitionReason - The reason the event source
-- mapping is in its current state. It is either user-requested or an AWS
-- Lambda-initiated state transition.
-- - esmcLastModified - The UTC time string indicating the last
-- time the event mapping was updated.
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be Creating ,
-- Enabled , Disabled , Enabling ,
-- Disabling , Updating , or Deleting .
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
instance GHC.Generics.Generic Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance Data.Data.Data Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance GHC.Show.Show Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance GHC.Read.Read Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance GHC.Classes.Eq Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance Control.DeepSeq.NFData Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.CreateEventSourceMapping.CreateEventSourceMapping
-- | Creates an alias that points to the specified Lambda function version.
-- For more information, see Introduction to AWS Lambda Aliases .
--
-- Alias names are unique for a given function. This requires permission
-- for the lambda:CreateAlias action.
module Network.AWS.Lambda.CreateAlias
-- | Creates a value of CreateAlias with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - caRoutingConfig - Specifies an additional version your
-- alias can point to, allowing you to dictate what percentage of traffic
-- will invoke each version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
-- - caDescription - Description of the alias.
-- - caFunctionName - Name of the Lambda function for which you
-- want to create an alias. Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- characters in length.
-- - caName - Name for the alias you are creating.
-- - caFunctionVersion - Lambda function version for which you
-- are creating the alias.
--
createAlias :: Text -> Text -> Text -> CreateAlias
-- | See: createAlias smart constructor.
data CreateAlias
-- | Specifies an additional version your alias can point to, allowing you
-- to dictate what percentage of traffic will invoke each version. For
-- more information, see 'lambda-traffic-shifting-using-aliases' .
caRoutingConfig :: Lens' CreateAlias (Maybe AliasRoutingConfiguration)
-- | Description of the alias.
caDescription :: Lens' CreateAlias (Maybe Text)
-- | Name of the Lambda function for which you want to create an alias.
-- Note that the length constraint applies only to the ARN. If you
-- specify only the function name, it is limited to 64 characters in
-- length.
caFunctionName :: Lens' CreateAlias Text
-- | Name for the alias you are creating.
caName :: Lens' CreateAlias Text
-- | Lambda function version for which you are creating the alias.
caFunctionVersion :: Lens' CreateAlias Text
-- | Creates a value of AliasConfiguration with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - acRoutingConfig - Specifies an additional function versions
-- the alias points to, allowing you to dictate what percentage of
-- traffic will invoke each version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
-- - acName - Alias name.
-- - acFunctionVersion - Function version to which the alias
-- points.
-- - acAliasARN - Lambda function ARN that is qualified using
-- the alias name as the suffix. For example, if you create an alias
-- called BETA that points to a helloworld function version, the
-- ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA
-- .
-- - acDescription - Alias description.
-- - acRevisionId - Represents the latest updated revision of
-- the function or alias.
--
aliasConfiguration :: AliasConfiguration
-- | Provides configuration information about a Lambda function version
-- alias.
--
-- See: aliasConfiguration smart constructor.
data AliasConfiguration
-- | Specifies an additional function versions the alias points to,
-- allowing you to dictate what percentage of traffic will invoke each
-- version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
acRoutingConfig :: Lens' AliasConfiguration (Maybe AliasRoutingConfiguration)
-- | Alias name.
acName :: Lens' AliasConfiguration (Maybe Text)
-- | Function version to which the alias points.
acFunctionVersion :: Lens' AliasConfiguration (Maybe Text)
-- | Lambda function ARN that is qualified using the alias name as the
-- suffix. For example, if you create an alias called BETA that
-- points to a helloworld function version, the ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA .
acAliasARN :: Lens' AliasConfiguration (Maybe Text)
-- | Alias description.
acDescription :: Lens' AliasConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
acRevisionId :: Lens' AliasConfiguration (Maybe Text)
instance GHC.Generics.Generic Network.AWS.Lambda.CreateAlias.CreateAlias
instance Data.Data.Data Network.AWS.Lambda.CreateAlias.CreateAlias
instance GHC.Show.Show Network.AWS.Lambda.CreateAlias.CreateAlias
instance GHC.Read.Read Network.AWS.Lambda.CreateAlias.CreateAlias
instance GHC.Classes.Eq Network.AWS.Lambda.CreateAlias.CreateAlias
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.CreateAlias.CreateAlias
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.CreateAlias.CreateAlias
instance Control.DeepSeq.NFData Network.AWS.Lambda.CreateAlias.CreateAlias
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.CreateAlias.CreateAlias
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.CreateAlias.CreateAlias
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.CreateAlias.CreateAlias
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.CreateAlias.CreateAlias
-- | Adds a permission to the resource policy associated with the specified
-- AWS Lambda function. You use resource policies to grant permissions to
-- event sources that use push model. In a push model,
-- event sources (such as Amazon S3 and custom applications) invoke your
-- Lambda function. Each permission you add to the resource policy allows
-- an event source, permission to invoke the Lambda function.
--
-- For information about the push model, see Lambda Functions .
--
-- If you are using versioning, the permissions you add are specific to
-- the Lambda function version or alias you specify in the
-- AddPermission request via the Qualifier parameter.
-- For more information about versioning, see AWS Lambda Function
-- Versioning and Aliases .
--
-- This operation requires permission for the
-- lambda:AddPermission action.
module Network.AWS.Lambda.AddPermission
-- | Creates a value of AddPermission with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - apSourceAccount - This parameter is used for S3 and SES.
-- The AWS account ID (without a hyphen) of the source owner. For
-- example, if the SourceArn identifies a bucket, then this is
-- the bucket owner's account ID. You can use this additional condition
-- to ensure the bucket you specify is owned by a specific account (it is
-- possible the bucket owner deleted the bucket and some other AWS
-- account created the bucket). You can also use this condition to
-- specify all sources (that is, you don't specify the SourceArn
-- ) owned by a specific account.
-- - apEventSourceToken - A unique token that must be supplied
-- by the principal invoking the function. This is currently only used
-- for Alexa Smart Home functions.
-- - apSourceARN - This is optional; however, when granting
-- permission to invoke your function, you should specify this field with
-- the Amazon Resource Name (ARN) as its value. This ensures that only
-- events generated from the specified source can invoke the function.
-- Important: If you add a permission without providing the source
-- ARN, any AWS account that creates a mapping to your function ARN can
-- send events to invoke your Lambda function.
-- - apQualifier - You can use this optional query parameter to
-- describe a qualified ARN using a function version or an alias name.
-- The permission will then apply to the specific qualified ARN. For
-- example, if you specify function version 2 as the qualifier, then
-- permission applies only when request is made using qualified function
-- ARN:
-- arn:aws:lambda:aws-region:acct-id:function:function-name:2 If
-- you specify an alias name, for example PROD , then the
-- permission is valid only for requests made using the alias ARN:
-- arn:aws:lambda:aws-region:acct-id:function:function-name:PROD
-- If the qualifier is not specified, the permission is valid only when
-- requests is made using unqualified function ARN.
-- arn:aws:lambda:aws-region:acct-id:function:function-name
-- - apRevisionId - An optional value you can use to ensure you
-- are updating the latest update of the function version or alias. If
-- the RevisionID you pass doesn't match the latest
-- RevisionId of the function or alias, it will fail with an
-- error message, advising you to retrieve the latest function version or
-- alias RevisionID using either or .
-- - apFunctionName - Name of the Lambda function whose resource
-- policy you are updating by adding a new permission. You can specify a
-- function name (for example, Thumbnail ) or you can specify
-- Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
-- - apStatementId - A unique statement identifier.
-- - apAction - The AWS Lambda action you want to allow in this
-- statement. Each Lambda action is a string starting with
-- lambda: followed by the API name . For example,
-- lambda:CreateFunction . You can use wildcard
-- (lambda:* ) to grant permission for all AWS Lambda
-- actions.
-- - apPrincipal - The principal who is getting this permission.
-- It can be Amazon S3 service Principal (s3.amazonaws.com ) if
-- you want Amazon S3 to invoke the function, an AWS account ID if you
-- are granting cross-account permission, or any valid AWS service
-- principal such as sns.amazonaws.com . For example, you might
-- want to allow a custom application in another AWS account to push
-- events to AWS Lambda by invoking your function.
--
addPermission :: Text -> Text -> Text -> Text -> AddPermission
-- | See: addPermission smart constructor.
data AddPermission
-- | This parameter is used for S3 and SES. The AWS account ID (without a
-- hyphen) of the source owner. For example, if the SourceArn
-- identifies a bucket, then this is the bucket owner's account ID. You
-- can use this additional condition to ensure the bucket you specify is
-- owned by a specific account (it is possible the bucket owner deleted
-- the bucket and some other AWS account created the bucket). You can
-- also use this condition to specify all sources (that is, you don't
-- specify the SourceArn ) owned by a specific account.
apSourceAccount :: Lens' AddPermission (Maybe Text)
-- | A unique token that must be supplied by the principal invoking the
-- function. This is currently only used for Alexa Smart Home functions.
apEventSourceToken :: Lens' AddPermission (Maybe Text)
-- | This is optional; however, when granting permission to invoke your
-- function, you should specify this field with the Amazon Resource Name
-- (ARN) as its value. This ensures that only events generated from the
-- specified source can invoke the function. Important: If you add
-- a permission without providing the source ARN, any AWS account that
-- creates a mapping to your function ARN can send events to invoke your
-- Lambda function.
apSourceARN :: Lens' AddPermission (Maybe Text)
-- | You can use this optional query parameter to describe a qualified ARN
-- using a function version or an alias name. The permission will then
-- apply to the specific qualified ARN. For example, if you specify
-- function version 2 as the qualifier, then permission applies only when
-- request is made using qualified function ARN:
-- arn:aws:lambda:aws-region:acct-id:function:function-name:2 If
-- you specify an alias name, for example PROD , then the
-- permission is valid only for requests made using the alias ARN:
-- arn:aws:lambda:aws-region:acct-id:function:function-name:PROD
-- If the qualifier is not specified, the permission is valid only when
-- requests is made using unqualified function ARN.
-- arn:aws:lambda:aws-region:acct-id:function:function-name
apQualifier :: Lens' AddPermission (Maybe Text)
-- | An optional value you can use to ensure you are updating the latest
-- update of the function version or alias. If the RevisionID
-- you pass doesn't match the latest RevisionId of the function
-- or alias, it will fail with an error message, advising you to retrieve
-- the latest function version or alias RevisionID using either
-- or .
apRevisionId :: Lens' AddPermission (Maybe Text)
-- | Name of the Lambda function whose resource policy you are updating by
-- adding a new permission. You can specify a function name (for example,
-- Thumbnail ) or you can specify Amazon Resource Name (ARN) of
-- the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
apFunctionName :: Lens' AddPermission Text
-- | A unique statement identifier.
apStatementId :: Lens' AddPermission Text
-- | The AWS Lambda action you want to allow in this statement. Each Lambda
-- action is a string starting with lambda: followed by the API
-- name . For example, lambda:CreateFunction . You can use
-- wildcard (lambda:* ) to grant permission for all AWS Lambda
-- actions.
apAction :: Lens' AddPermission Text
-- | The principal who is getting this permission. It can be Amazon S3
-- service Principal (s3.amazonaws.com ) if you want Amazon S3
-- to invoke the function, an AWS account ID if you are granting
-- cross-account permission, or any valid AWS service principal such as
-- sns.amazonaws.com . For example, you might want to allow a
-- custom application in another AWS account to push events to AWS Lambda
-- by invoking your function.
apPrincipal :: Lens' AddPermission Text
-- | Creates a value of AddPermissionResponse with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - aprsStatement - The permission statement you specified in
-- the request. The response returns the same as a string using a
-- backslash ("") as an escape character in the JSON.
-- - aprsResponseStatus - -- | The response status code.
--
addPermissionResponse :: Int -> AddPermissionResponse
-- | See: addPermissionResponse smart constructor.
data AddPermissionResponse
-- | The permission statement you specified in the request. The response
-- returns the same as a string using a backslash ("") as an escape
-- character in the JSON.
aprsStatement :: Lens' AddPermissionResponse (Maybe Text)
-- |
-- - - | The response status code.
--
aprsResponseStatus :: Lens' AddPermissionResponse Int
instance GHC.Generics.Generic Network.AWS.Lambda.AddPermission.AddPermissionResponse
instance Data.Data.Data Network.AWS.Lambda.AddPermission.AddPermissionResponse
instance GHC.Show.Show Network.AWS.Lambda.AddPermission.AddPermissionResponse
instance GHC.Read.Read Network.AWS.Lambda.AddPermission.AddPermissionResponse
instance GHC.Classes.Eq Network.AWS.Lambda.AddPermission.AddPermissionResponse
instance GHC.Generics.Generic Network.AWS.Lambda.AddPermission.AddPermission
instance Data.Data.Data Network.AWS.Lambda.AddPermission.AddPermission
instance GHC.Show.Show Network.AWS.Lambda.AddPermission.AddPermission
instance GHC.Read.Read Network.AWS.Lambda.AddPermission.AddPermission
instance GHC.Classes.Eq Network.AWS.Lambda.AddPermission.AddPermission
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.AddPermission.AddPermission
instance Control.DeepSeq.NFData Network.AWS.Lambda.AddPermission.AddPermissionResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.AddPermission.AddPermission
instance Control.DeepSeq.NFData Network.AWS.Lambda.AddPermission.AddPermission
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.AddPermission.AddPermission
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.AddPermission.AddPermission
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.AddPermission.AddPermission
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.AddPermission.AddPermission
-- | Removes tags from a Lambda function. Requires the function ARN (Amazon
-- Resource Name). For more information, see Tagging Lambda
-- Functions in the AWS Lambda Developer Guide .
module Network.AWS.Lambda.UntagResource
-- | Creates a value of UntagResource with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
untagResource :: Text -> UntagResource
-- | See: untagResource smart constructor.
data UntagResource
-- | The ARN (Amazon Resource Name) of the function. For more information,
-- see Tagging Lambda Functions in the AWS Lambda Developer
-- Guide .
urResource :: Lens' UntagResource Text
-- | The list of tag keys to be deleted from the function. For more
-- information, see Tagging Lambda Functions in the AWS Lambda
-- Developer Guide .
urTagKeys :: Lens' UntagResource [Text]
-- | Creates a value of UntagResourceResponse with the minimum
-- fields required to make a request.
untagResourceResponse :: UntagResourceResponse
-- | See: untagResourceResponse smart constructor.
data UntagResourceResponse
instance GHC.Generics.Generic Network.AWS.Lambda.UntagResource.UntagResourceResponse
instance Data.Data.Data Network.AWS.Lambda.UntagResource.UntagResourceResponse
instance GHC.Show.Show Network.AWS.Lambda.UntagResource.UntagResourceResponse
instance GHC.Read.Read Network.AWS.Lambda.UntagResource.UntagResourceResponse
instance GHC.Classes.Eq Network.AWS.Lambda.UntagResource.UntagResourceResponse
instance GHC.Generics.Generic Network.AWS.Lambda.UntagResource.UntagResource
instance Data.Data.Data Network.AWS.Lambda.UntagResource.UntagResource
instance GHC.Show.Show Network.AWS.Lambda.UntagResource.UntagResource
instance GHC.Read.Read Network.AWS.Lambda.UntagResource.UntagResource
instance GHC.Classes.Eq Network.AWS.Lambda.UntagResource.UntagResource
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.UntagResource.UntagResource
instance Control.DeepSeq.NFData Network.AWS.Lambda.UntagResource.UntagResourceResponse
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.UntagResource.UntagResource
instance Control.DeepSeq.NFData Network.AWS.Lambda.UntagResource.UntagResource
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.UntagResource.UntagResource
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.UntagResource.UntagResource
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.UntagResource.UntagResource
-- | Using this API you can update the function version to which the alias
-- points and the alias description. For more information, see
-- Introduction to AWS Lambda Aliases .
--
-- This requires permission for the lambda:UpdateAlias action.
module Network.AWS.Lambda.UpdateAlias
-- | Creates a value of UpdateAlias with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - uaRoutingConfig - Specifies an additional version your
-- alias can point to, allowing you to dictate what percentage of traffic
-- will invoke each version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
-- - uaFunctionVersion - Using this parameter you can change the
-- Lambda function version to which the alias points.
-- - uaDescription - You can change the description of the alias
-- using this parameter.
-- - uaRevisionId - An optional value you can use to ensure you
-- are updating the latest update of the function version or alias. If
-- the RevisionID you pass doesn't match the latest
-- RevisionId of the function or alias, it will fail with an
-- error message, advising you to retrieve the latest function version or
-- alias RevisionID using either or .
-- - uaFunctionName - The function name for which the alias is
-- created. Note that the length constraint applies only to the ARN. If
-- you specify only the function name, it is limited to 64 characters in
-- length.
-- - uaName - The alias name.
--
updateAlias :: Text -> Text -> UpdateAlias
-- | See: updateAlias smart constructor.
data UpdateAlias
-- | Specifies an additional version your alias can point to, allowing you
-- to dictate what percentage of traffic will invoke each version. For
-- more information, see 'lambda-traffic-shifting-using-aliases' .
uaRoutingConfig :: Lens' UpdateAlias (Maybe AliasRoutingConfiguration)
-- | Using this parameter you can change the Lambda function version to
-- which the alias points.
uaFunctionVersion :: Lens' UpdateAlias (Maybe Text)
-- | You can change the description of the alias using this parameter.
uaDescription :: Lens' UpdateAlias (Maybe Text)
-- | An optional value you can use to ensure you are updating the latest
-- update of the function version or alias. If the RevisionID
-- you pass doesn't match the latest RevisionId of the function
-- or alias, it will fail with an error message, advising you to retrieve
-- the latest function version or alias RevisionID using either
-- or .
uaRevisionId :: Lens' UpdateAlias (Maybe Text)
-- | The function name for which the alias is created. Note that the length
-- constraint applies only to the ARN. If you specify only the function
-- name, it is limited to 64 characters in length.
uaFunctionName :: Lens' UpdateAlias Text
-- | The alias name.
uaName :: Lens' UpdateAlias Text
-- | Creates a value of AliasConfiguration with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - acRoutingConfig - Specifies an additional function versions
-- the alias points to, allowing you to dictate what percentage of
-- traffic will invoke each version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
-- - acName - Alias name.
-- - acFunctionVersion - Function version to which the alias
-- points.
-- - acAliasARN - Lambda function ARN that is qualified using
-- the alias name as the suffix. For example, if you create an alias
-- called BETA that points to a helloworld function version, the
-- ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA
-- .
-- - acDescription - Alias description.
-- - acRevisionId - Represents the latest updated revision of
-- the function or alias.
--
aliasConfiguration :: AliasConfiguration
-- | Provides configuration information about a Lambda function version
-- alias.
--
-- See: aliasConfiguration smart constructor.
data AliasConfiguration
-- | Specifies an additional function versions the alias points to,
-- allowing you to dictate what percentage of traffic will invoke each
-- version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
acRoutingConfig :: Lens' AliasConfiguration (Maybe AliasRoutingConfiguration)
-- | Alias name.
acName :: Lens' AliasConfiguration (Maybe Text)
-- | Function version to which the alias points.
acFunctionVersion :: Lens' AliasConfiguration (Maybe Text)
-- | Lambda function ARN that is qualified using the alias name as the
-- suffix. For example, if you create an alias called BETA that
-- points to a helloworld function version, the ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA .
acAliasARN :: Lens' AliasConfiguration (Maybe Text)
-- | Alias description.
acDescription :: Lens' AliasConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
acRevisionId :: Lens' AliasConfiguration (Maybe Text)
instance GHC.Generics.Generic Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance Data.Data.Data Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance GHC.Show.Show Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance GHC.Read.Read Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance GHC.Classes.Eq Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance Control.DeepSeq.NFData Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.UpdateAlias.UpdateAlias
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.UpdateAlias.UpdateAlias
-- | You can update an event source mapping. This is useful if you want to
-- change the parameters of the existing mapping without losing your
-- position in the stream. You can change which function will receive the
-- stream records, but to change the stream itself, you must create a new
-- mapping.
--
-- If you are using the versioning feature, you can update the event
-- source mapping to map to a specific Lambda function version or alias
-- as described in the FunctionName parameter. For information
-- about the versioning feature, see AWS Lambda Function Versioning
-- and Aliases .
--
-- If you disable the event source mapping, AWS Lambda stops polling. If
-- you enable again, it will resume polling from the time it had stopped
-- polling, so you don't lose processing of any records. However, if you
-- delete event source mapping and create it again, it will reset.
--
-- This operation requires permission for the
-- lambda:UpdateEventSourceMapping action.
module Network.AWS.Lambda.UpdateEventSourceMapping
-- | Creates a value of UpdateEventSourceMapping with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - uesmEnabled - Specifies whether AWS Lambda should actively
-- poll the stream or not. If disabled, AWS Lambda will not poll the
-- stream.
-- - uesmBatchSize - The maximum number of stream records that
-- can be sent to your Lambda function for a single invocation.
-- - uesmFunctionName - The Lambda function to which you want
-- the stream records sent. You can specify a function name (for example,
-- Thumbnail ) or you can specify Amazon Resource Name (ARN) of
-- the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length. If you are using versioning, you
-- can also provide a qualified function ARN (ARN that is qualified with
-- function version or alias name as suffix). For more information about
-- versioning, see AWS Lambda Function Versioning and Aliases Note
-- that the length constraint applies only to the ARN. If you specify
-- only the function name, it is limited to 64 character in length.
-- - uesmUUId - The event source mapping identifier.
--
updateEventSourceMapping :: Text -> UpdateEventSourceMapping
-- | See: updateEventSourceMapping smart constructor.
data UpdateEventSourceMapping
-- | Specifies whether AWS Lambda should actively poll the stream or not.
-- If disabled, AWS Lambda will not poll the stream.
uesmEnabled :: Lens' UpdateEventSourceMapping (Maybe Bool)
-- | The maximum number of stream records that can be sent to your Lambda
-- function for a single invocation.
uesmBatchSize :: Lens' UpdateEventSourceMapping (Maybe Natural)
-- | The Lambda function to which you want the stream records sent. You can
-- specify a function name (for example, Thumbnail ) or you can
-- specify Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length. If you are using versioning, you
-- can also provide a qualified function ARN (ARN that is qualified with
-- function version or alias name as suffix). For more information about
-- versioning, see AWS Lambda Function Versioning and Aliases Note
-- that the length constraint applies only to the ARN. If you specify
-- only the function name, it is limited to 64 character in length.
uesmFunctionName :: Lens' UpdateEventSourceMapping (Maybe Text)
-- | The event source mapping identifier.
uesmUUId :: Lens' UpdateEventSourceMapping Text
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - esmcEventSourceARN - The Amazon Resource Name (ARN) of the
-- Amazon Kinesis stream that is the source of events.
-- - esmcState - The state of the event source mapping. It can
-- be Creating , Enabled , Disabled ,
-- Enabling , Disabling , Updating , or
-- Deleting .
-- - esmcFunctionARN - The Lambda function to invoke when AWS
-- Lambda detects an event on the stream.
-- - esmcUUId - The AWS Lambda assigned opaque identifier for
-- the mapping.
-- - esmcLastProcessingResult - The result of the last AWS
-- Lambda invocation of your Lambda function.
-- - esmcBatchSize - The largest number of records that AWS
-- Lambda will retrieve from your event source at the time of invoking
-- your function. Your function receives an event with all the retrieved
-- records.
-- - esmcStateTransitionReason - The reason the event source
-- mapping is in its current state. It is either user-requested or an AWS
-- Lambda-initiated state transition.
-- - esmcLastModified - The UTC time string indicating the last
-- time the event mapping was updated.
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be Creating ,
-- Enabled , Disabled , Enabling ,
-- Disabling , Updating , or Deleting .
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
instance GHC.Generics.Generic Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance Data.Data.Data Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance GHC.Show.Show Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance GHC.Read.Read Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance GHC.Classes.Eq Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance Control.DeepSeq.NFData Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.UpdateEventSourceMapping.UpdateEventSourceMapping
-- | Updates the code for the specified Lambda function. This operation
-- must only be used on an existing Lambda function and cannot be used to
-- update the function configuration.
--
-- If you are using the versioning feature, note this API will always
-- update the $LATEST version of your Lambda function. For information
-- about the versioning feature, see AWS Lambda Function Versioning
-- and Aliases .
--
-- This operation requires permission for the
-- lambda:UpdateFunctionCode action.
module Network.AWS.Lambda.UpdateFunctionCode
-- | Creates a value of UpdateFunctionCode with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - uS3ObjectVersion - The Amazon S3 object (the deployment
-- package) version you want to upload.
-- - uS3Key - The Amazon S3 object (the deployment package) key
-- name you want to upload.
-- - uZipFile - The contents of your zip file containing your
-- deployment package. If you are using the web API directly, the
-- contents of the zip file must be base64-encoded. If you are using the
-- AWS SDKs or the AWS CLI, the SDKs or CLI will do the encoding for you.
-- For more information about creating a .zip file, see Execution
-- Permissions . -- Note: This Lens automatically
-- encodes and decodes Base64 data. The underlying isomorphism will
-- encode to Base64 representation during serialisation, and decode from
-- Base64 representation during deserialisation. This Lens
-- accepts and returns only raw unencoded data.
-- - uS3Bucket - Amazon S3 bucket name where the .zip file
-- containing your deployment package is stored. This bucket must reside
-- in the same AWS Region where you are creating the Lambda
-- function.
-- - uDryRun - This boolean parameter can be used to test your
-- request to AWS Lambda to update the Lambda function and publish a
-- version as an atomic operation. It will do all necessary computation
-- and validation of your code but will not upload it or a publish a
-- version. Each time this operation is invoked, the CodeSha256
-- hash value of the provided code will also be computed and returned in
-- the response.
-- - uRevisionId - An optional value you can use to ensure you
-- are updating the latest update of the function version or alias. If
-- the RevisionID you pass doesn't match the latest
-- RevisionId of the function or alias, it will fail with an
-- error message, advising you to retrieve the latest function version or
-- alias RevisionID using either or .
-- - uPublish - This boolean parameter can be used to request
-- AWS Lambda to update the Lambda function and publish a version as an
-- atomic operation.
-- - uFunctionName - The existing Lambda function name whose
-- code you want to replace. You can specify a function name (for
-- example, Thumbnail ) or you can specify Amazon Resource Name
-- (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
--
updateFunctionCode :: Text -> UpdateFunctionCode
-- | See: updateFunctionCode smart constructor.
data UpdateFunctionCode
-- | The Amazon S3 object (the deployment package) version you want to
-- upload.
uS3ObjectVersion :: Lens' UpdateFunctionCode (Maybe Text)
-- | The Amazon S3 object (the deployment package) key name you want to
-- upload.
uS3Key :: Lens' UpdateFunctionCode (Maybe Text)
-- | The contents of your zip file containing your deployment package. If
-- you are using the web API directly, the contents of the zip file must
-- be base64-encoded. If you are using the AWS SDKs or the AWS CLI, the
-- SDKs or CLI will do the encoding for you. For more information about
-- creating a .zip file, see Execution Permissions . --
-- Note: This Lens automatically encodes and decodes
-- Base64 data. The underlying isomorphism will encode to Base64
-- representation during serialisation, and decode from Base64
-- representation during deserialisation. This Lens accepts and
-- returns only raw unencoded data.
uZipFile :: Lens' UpdateFunctionCode (Maybe ByteString)
-- | Amazon S3 bucket name where the .zip file containing your deployment
-- package is stored. This bucket must reside in the same AWS Region
-- where you are creating the Lambda function.
uS3Bucket :: Lens' UpdateFunctionCode (Maybe Text)
-- | This boolean parameter can be used to test your request to AWS Lambda
-- to update the Lambda function and publish a version as an atomic
-- operation. It will do all necessary computation and validation of your
-- code but will not upload it or a publish a version. Each time this
-- operation is invoked, the CodeSha256 hash value of the
-- provided code will also be computed and returned in the response.
uDryRun :: Lens' UpdateFunctionCode (Maybe Bool)
-- | An optional value you can use to ensure you are updating the latest
-- update of the function version or alias. If the RevisionID
-- you pass doesn't match the latest RevisionId of the function
-- or alias, it will fail with an error message, advising you to retrieve
-- the latest function version or alias RevisionID using either
-- or .
uRevisionId :: Lens' UpdateFunctionCode (Maybe Text)
-- | This boolean parameter can be used to request AWS Lambda to update the
-- Lambda function and publish a version as an atomic operation.
uPublish :: Lens' UpdateFunctionCode (Maybe Bool)
-- | The existing Lambda function name whose code you want to replace. You
-- can specify a function name (for example, Thumbnail ) or you
-- can specify Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 characters in length.
uFunctionName :: Lens' UpdateFunctionCode Text
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fcMemorySize - The memory size, in MB, you configured for
-- the function. Must be a multiple of 64 MB.
-- - fcRuntime - The runtime environment for the Lambda
-- function.
-- - fcFunctionARN - The Amazon Resource Name (ARN) assigned to
-- the function.
-- - fcKMSKeyARN - The Amazon Resource Name (ARN) of the KMS key
-- used to encrypt your function's environment variables. If empty, it
-- means you are using the AWS Lambda default service key.
-- - fcEnvironment - The parent object that contains your
-- environment's configuration settings.
-- - fcDeadLetterConfig - The parent object that contains the
-- target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
-- topic. For more information, see dlq .
-- - fcRole - The Amazon Resource Name (ARN) of the IAM role
-- that Lambda assumes when it executes your function to access any other
-- Amazon Web Services (AWS) resources.
-- - fcVPCConfig - VPC configuration associated with your Lambda
-- function.
-- - fcVersion - The version of the Lambda function.
-- - fcFunctionName - The name of the function. Note that the
-- length constraint applies only to the ARN. If you specify only the
-- function name, it is limited to 64 characters in length.
-- - fcCodeSize - The size, in bytes, of the function .zip file
-- you uploaded.
-- - fcHandler - The function Lambda calls to begin executing
-- your function.
-- - fcTimeout - The function execution time at which Lambda
-- should terminate the function. Because the execution time has cost
-- implications, we recommend you set this value based on your expected
-- execution time. The default is 3 seconds.
-- - fcLastModified - The time stamp of the last time you
-- updated the function. The time stamp is conveyed as a string complying
-- with ISO-8601 in this way YYYY-MM-DDThh:mm:ssTZD (e.g.,
-- 1997-07-16T19:20:30+01:00). For more information, see Date and Time
-- Formats .
-- - fcCodeSha256 - It is the SHA256 hash of your function
-- deployment package.
-- - fcTracingConfig - The parent object that contains your
-- function's tracing settings.
-- - fcDescription - The user-provided description.
-- - fcRevisionId - Represents the latest updated revision of
-- the function or alias.
-- - fcMasterARN - Returns the ARN (Amazon Resource Name) of the
-- master function.
--
functionConfiguration :: FunctionConfiguration
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the KMS key used to encrypt your
-- function's environment variables. If empty, it means you are using the
-- AWS Lambda default service key.
fcKMSKeyARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
fcEnvironment :: Lens' FunctionConfiguration (Maybe EnvironmentResponse)
-- | The parent object that contains the target ARN (Amazon Resource Name)
-- of an Amazon SQS queue or Amazon SNS topic. For more information, see
-- dlq .
fcDeadLetterConfig :: Lens' FunctionConfiguration (Maybe DeadLetterConfig)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | VPC configuration associated with your Lambda function.
fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse)
-- | The version of the Lambda function.
fcVersion :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function. Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- characters in length.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The time stamp of the last time you updated the function. The time
-- stamp is conveyed as a string complying with ISO-8601 in this way
-- YYYY-MM-DDThh:mm:ssTZD (e.g., 1997-07-16T19:20:30+01:00). For more
-- information, see Date and Time Formats .
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | It is the SHA256 hash of your function deployment package.
fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your function's tracing settings.
fcTracingConfig :: Lens' FunctionConfiguration (Maybe TracingConfigResponse)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
fcRevisionId :: Lens' FunctionConfiguration (Maybe Text)
-- | Returns the ARN (Amazon Resource Name) of the master function.
fcMasterARN :: Lens' FunctionConfiguration (Maybe Text)
instance GHC.Generics.Generic Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance Data.Data.Data Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance GHC.Show.Show Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance GHC.Classes.Eq Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance Control.DeepSeq.NFData Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.UpdateFunctionCode.UpdateFunctionCode
-- | Updates the configuration parameters for the specified Lambda function
-- by using the values provided in the request. You provide only the
-- parameters you want to change. This operation must only be used on an
-- existing Lambda function and cannot be used to update the function's
-- code.
--
-- If you are using the versioning feature, note this API will always
-- update the $LATEST version of your Lambda function. For information
-- about the versioning feature, see AWS Lambda Function Versioning
-- and Aliases .
--
-- This operation requires permission for the
-- lambda:UpdateFunctionConfiguration action.
module Network.AWS.Lambda.UpdateFunctionConfiguration
-- | Creates a value of UpdateFunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - ufcMemorySize - The amount of memory, in MB, your Lambda
-- function is given. AWS Lambda uses this memory size to infer the
-- amount of CPU allocated to your function. Your function use-case
-- determines your CPU and memory requirements. For example, a database
-- operation might need less memory compared to an image processing
-- function. The default value is 128 MB. The value must be a multiple of
-- 64 MB.
-- - ufcRuntime - The runtime environment for the Lambda
-- function. To use the Python runtime v3.6, set the value to
-- "python3.6". To use the Python runtime v2.7, set the value to
-- "python2.7". To use the Node.js runtime v6.10, set the value to
-- "nodejs6.10". To use the Node.js runtime v4.3, set the value to
-- "nodejs4.3". To use the .NET Core runtime v1.0, set the value to
-- "dotnetcore1.0". To use the .NET Core runtime v2.0, set the value to
-- "dotnetcore2.0".
-- - ufcKMSKeyARN - The Amazon Resource Name (ARN) of the KMS
-- key used to encrypt your function's environment variables. If you
-- elect to use the AWS Lambda default service key, pass in an empty
-- string ("") for this parameter.
-- - ufcEnvironment - The parent object that contains your
-- environment's configuration settings.
-- - ufcDeadLetterConfig - The parent object that contains the
-- target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
-- topic. For more information, see dlq .
-- - ufcRole - The Amazon Resource Name (ARN) of the IAM role
-- that Lambda will assume when it executes your function.
-- - ufcVPCConfig - Undocumented member.
-- - ufcHandler - The function that Lambda calls to begin
-- executing your function. For Node.js, it is the
-- module-name.export value in your function.
-- - ufcTimeout - The function execution time at which AWS
-- Lambda should terminate the function. Because the execution time has
-- cost implications, we recommend you set this value based on your
-- expected execution time. The default is 3 seconds.
-- - ufcTracingConfig - The parent object that contains your
-- function's tracing settings.
-- - ufcDescription - A short user-defined function description.
-- AWS Lambda does not use this value. Assign a meaningful description as
-- you see fit.
-- - ufcRevisionId - An optional value you can use to ensure you
-- are updating the latest update of the function version or alias. If
-- the RevisionID you pass doesn't match the latest
-- RevisionId of the function or alias, it will fail with an
-- error message, advising you to retrieve the latest function version or
-- alias RevisionID using either or .
-- - ufcFunctionName - The name of the Lambda function. You can
-- specify a function name (for example, Thumbnail ) or you can
-- specify Amazon Resource Name (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 character in length.
--
updateFunctionConfiguration :: Text -> UpdateFunctionConfiguration
-- | See: updateFunctionConfiguration smart constructor.
data UpdateFunctionConfiguration
-- | The amount of memory, in MB, your Lambda function is given. AWS Lambda
-- uses this memory size to infer the amount of CPU allocated to your
-- function. Your function use-case determines your CPU and memory
-- requirements. For example, a database operation might need less memory
-- compared to an image processing function. The default value is 128 MB.
-- The value must be a multiple of 64 MB.
ufcMemorySize :: Lens' UpdateFunctionConfiguration (Maybe Natural)
-- | The runtime environment for the Lambda function. To use the Python
-- runtime v3.6, set the value to "python3.6". To use the Python runtime
-- v2.7, set the value to "python2.7". To use the Node.js runtime v6.10,
-- set the value to "nodejs6.10". To use the Node.js runtime v4.3, set
-- the value to "nodejs4.3". To use the .NET Core runtime v1.0, set the
-- value to "dotnetcore1.0". To use the .NET Core runtime v2.0, set the
-- value to "dotnetcore2.0".
ufcRuntime :: Lens' UpdateFunctionConfiguration (Maybe Runtime)
-- | The Amazon Resource Name (ARN) of the KMS key used to encrypt your
-- function's environment variables. If you elect to use the AWS Lambda
-- default service key, pass in an empty string ("") for this parameter.
ufcKMSKeyARN :: Lens' UpdateFunctionConfiguration (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
ufcEnvironment :: Lens' UpdateFunctionConfiguration (Maybe Environment)
-- | The parent object that contains the target ARN (Amazon Resource Name)
-- of an Amazon SQS queue or Amazon SNS topic. For more information, see
-- dlq .
ufcDeadLetterConfig :: Lens' UpdateFunctionConfiguration (Maybe DeadLetterConfig)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda will assume
-- when it executes your function.
ufcRole :: Lens' UpdateFunctionConfiguration (Maybe Text)
-- | Undocumented member.
ufcVPCConfig :: Lens' UpdateFunctionConfiguration (Maybe VPCConfig)
-- | The function that Lambda calls to begin executing your function. For
-- Node.js, it is the module-name.export value in your function.
ufcHandler :: Lens' UpdateFunctionConfiguration (Maybe Text)
-- | The function execution time at which AWS Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
ufcTimeout :: Lens' UpdateFunctionConfiguration (Maybe Natural)
-- | The parent object that contains your function's tracing settings.
ufcTracingConfig :: Lens' UpdateFunctionConfiguration (Maybe TracingConfig)
-- | A short user-defined function description. AWS Lambda does not use
-- this value. Assign a meaningful description as you see fit.
ufcDescription :: Lens' UpdateFunctionConfiguration (Maybe Text)
-- | An optional value you can use to ensure you are updating the latest
-- update of the function version or alias. If the RevisionID
-- you pass doesn't match the latest RevisionId of the function
-- or alias, it will fail with an error message, advising you to retrieve
-- the latest function version or alias RevisionID using either
-- or .
ufcRevisionId :: Lens' UpdateFunctionConfiguration (Maybe Text)
-- | The name of the Lambda function. You can specify a function name (for
-- example, Thumbnail ) or you can specify Amazon Resource Name
-- (ARN) of the function (for example,
-- arn:aws:lambda:us-west-2:account-id:function:ThumbNail ). AWS
-- Lambda also allows you to specify a partial ARN (for example,
-- account-id:Thumbnail ). Note that the length constraint
-- applies only to the ARN. If you specify only the function name, it is
-- limited to 64 character in length.
ufcFunctionName :: Lens' UpdateFunctionConfiguration Text
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fcMemorySize - The memory size, in MB, you configured for
-- the function. Must be a multiple of 64 MB.
-- - fcRuntime - The runtime environment for the Lambda
-- function.
-- - fcFunctionARN - The Amazon Resource Name (ARN) assigned to
-- the function.
-- - fcKMSKeyARN - The Amazon Resource Name (ARN) of the KMS key
-- used to encrypt your function's environment variables. If empty, it
-- means you are using the AWS Lambda default service key.
-- - fcEnvironment - The parent object that contains your
-- environment's configuration settings.
-- - fcDeadLetterConfig - The parent object that contains the
-- target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
-- topic. For more information, see dlq .
-- - fcRole - The Amazon Resource Name (ARN) of the IAM role
-- that Lambda assumes when it executes your function to access any other
-- Amazon Web Services (AWS) resources.
-- - fcVPCConfig - VPC configuration associated with your Lambda
-- function.
-- - fcVersion - The version of the Lambda function.
-- - fcFunctionName - The name of the function. Note that the
-- length constraint applies only to the ARN. If you specify only the
-- function name, it is limited to 64 characters in length.
-- - fcCodeSize - The size, in bytes, of the function .zip file
-- you uploaded.
-- - fcHandler - The function Lambda calls to begin executing
-- your function.
-- - fcTimeout - The function execution time at which Lambda
-- should terminate the function. Because the execution time has cost
-- implications, we recommend you set this value based on your expected
-- execution time. The default is 3 seconds.
-- - fcLastModified - The time stamp of the last time you
-- updated the function. The time stamp is conveyed as a string complying
-- with ISO-8601 in this way YYYY-MM-DDThh:mm:ssTZD (e.g.,
-- 1997-07-16T19:20:30+01:00). For more information, see Date and Time
-- Formats .
-- - fcCodeSha256 - It is the SHA256 hash of your function
-- deployment package.
-- - fcTracingConfig - The parent object that contains your
-- function's tracing settings.
-- - fcDescription - The user-provided description.
-- - fcRevisionId - Represents the latest updated revision of
-- the function or alias.
-- - fcMasterARN - Returns the ARN (Amazon Resource Name) of the
-- master function.
--
functionConfiguration :: FunctionConfiguration
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the KMS key used to encrypt your
-- function's environment variables. If empty, it means you are using the
-- AWS Lambda default service key.
fcKMSKeyARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
fcEnvironment :: Lens' FunctionConfiguration (Maybe EnvironmentResponse)
-- | The parent object that contains the target ARN (Amazon Resource Name)
-- of an Amazon SQS queue or Amazon SNS topic. For more information, see
-- dlq .
fcDeadLetterConfig :: Lens' FunctionConfiguration (Maybe DeadLetterConfig)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | VPC configuration associated with your Lambda function.
fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse)
-- | The version of the Lambda function.
fcVersion :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function. Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- characters in length.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The time stamp of the last time you updated the function. The time
-- stamp is conveyed as a string complying with ISO-8601 in this way
-- YYYY-MM-DDThh:mm:ssTZD (e.g., 1997-07-16T19:20:30+01:00). For more
-- information, see Date and Time Formats .
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | It is the SHA256 hash of your function deployment package.
fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your function's tracing settings.
fcTracingConfig :: Lens' FunctionConfiguration (Maybe TracingConfigResponse)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
fcRevisionId :: Lens' FunctionConfiguration (Maybe Text)
-- | Returns the ARN (Amazon Resource Name) of the master function.
fcMasterARN :: Lens' FunctionConfiguration (Maybe Text)
instance GHC.Generics.Generic Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance Data.Data.Data Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance GHC.Show.Show Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance GHC.Classes.Eq Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance Network.AWS.Types.AWSRequest Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance Data.Hashable.Class.Hashable Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance Control.DeepSeq.NFData Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance Network.AWS.Data.Headers.ToHeaders Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance Data.Aeson.Types.ToJSON.ToJSON Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance Network.AWS.Data.Path.ToPath Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
instance Network.AWS.Data.Query.ToQuery Network.AWS.Lambda.UpdateFunctionConfiguration.UpdateFunctionConfiguration
module Network.AWS.Lambda.Waiters
-- | AWS Lambda
--
-- Overview
--
-- This is the AWS Lambda API Reference . The AWS Lambda Developer
-- Guide provides additional information. For the service overview, see
-- What is AWS Lambda , and for information about how the service
-- works, see AWS Lambda: How it Works in the AWS Lambda
-- Developer Guide .
module Network.AWS.Lambda
-- | API version 2015-03-31 of the Amazon Lambda SDK
-- configuration.
lambda :: Service
-- | Lambda was unable to decrypt the environment variables because the KMS
-- key used is in an invalid state for Decrypt. Check the function's KMS
-- key settings.
_KMSInvalidStateException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda was throttled by Amazon EC2 during Lambda function
-- initialization using the execution role provided for the Lambda
-- function.
_EC2ThrottledException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The runtime or runtime version specified is not supported.
_InvalidRuntimeException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Lambda function access policy is limited to 20 KB.
_PolicyLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The RevisionId provided does not match the latest RevisionId for the
-- Lambda function or alias. Call the GetFunction or the
-- GetAlias API to retrieve the latest RevisionId for your
-- resource.
_PreconditionFailedException :: AsError a => Getting (First ServiceError) a ServiceError
_EC2AccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The Subnet ID provided in the Lambda function VPC configuration is
-- invalid.
_InvalidSubnetIdException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The content type of the Invoke request body is not JSON.
_UnsupportedMediaTypeException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The request body could not be parsed as JSON.
_InvalidRequestContentException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Lambda was unable to decrypt the environment variables because the KMS
-- key was not found. Check the function's KMS key settings.
_KMSNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda was not able to create an Elastic Network Interface (ENI)
-- in the VPC, specified as part of Lambda function configuration,
-- because the limit for network interfaces has been reached.
_ENILimitReachedException :: AsError a => Getting (First ServiceError) a ServiceError
-- | One of the parameters in the request is invalid. For example, if you
-- provided an IAM role for AWS Lambda to assume in the
-- CreateFunction or the UpdateFunctionConfiguration
-- API, that AWS Lambda is unable to assume you will get this exception.
_InvalidParameterValueException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The request payload exceeded the Invoke request body JSON
-- input limit. For more information, see Limits .
_RequestTooLargeException :: AsError a => Getting (First ServiceError) a ServiceError
_TooManyRequestsException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The Security Group ID provided in the Lambda function VPC
-- configuration is invalid.
_InvalidSecurityGroupIdException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Lambda was unable to decrypt the environment variables because the KMS
-- key used is disabled. Check the Lambda function's KMS key settings.
_KMSDisabledException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda was not able to set up VPC access for the Lambda function
-- because one or more configured subnets has no available IP addresses.
_SubnetIPAddressLimitReachedException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The AWS Lambda service encountered an internal error.
_ServiceException :: AsError a => Getting (First ServiceError) a ServiceError
-- | You have exceeded your maximum total code size per account.
-- Limits
_CodeStorageExceededException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda could not unzip the function zip file.
_InvalidZipFileException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The resource already exists.
_ResourceConflictException :: AsError a => Getting (First ServiceError) a ServiceError
-- | AWS Lambda received an unexpected EC2 client exception while setting
-- up for the Lambda function.
_EC2UnexpectedException :: AsError a => Getting (First ServiceError) a ServiceError
-- | The resource (for example, a Lambda function or access policy
-- statement) specified in the request does not exist.
_ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError
-- | Lambda was unable to decrypt the environment variables because KMS
-- access was denied. Check the Lambda function's KMS permissions.
_KMSAccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError
data EventSourcePosition
AtTimestamp :: EventSourcePosition
Latest :: EventSourcePosition
TrimHorizon :: EventSourcePosition
data FunctionVersion
All :: FunctionVersion
data InvocationType
DryRun :: InvocationType
Event :: InvocationType
RequestResponse :: InvocationType
data LogType
None :: LogType
Tail :: LogType
data Runtime
DOTNETCORE1_0 :: Runtime
DOTNETCORE2_0 :: Runtime
GO1_x :: Runtime
JAVA8 :: Runtime
NODEJS4_3 :: Runtime
NODEJS4_3Edge :: Runtime
NODEJS6_10 :: Runtime
NODEJS8_10 :: Runtime
Nodejs :: Runtime
PYTHON2_7 :: Runtime
PYTHON3_6 :: Runtime
data TracingMode
Active :: TracingMode
PassThrough :: TracingMode
-- | Provides limits of code size and concurrency associated with the
-- current account and region.
--
-- See: accountLimit smart constructor.
data AccountLimit
-- | Creates a value of AccountLimit with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - alConcurrentExecutions - Number of simultaneous executions
-- of your function per region. For more information or to request a
-- limit increase for concurrent executions, see Lambda Function
-- Concurrent Executions . The default limit is 1000.
-- - alTotalCodeSize - Maximum size, in bytes, of a code package
-- you can upload per region. The default size is 75 GB.
-- - alUnreservedConcurrentExecutions - The number of concurrent
-- executions available to functions that do not have concurrency limits
-- set. For more information, see 'concurrent-executions' .
-- - alCodeSizeUnzipped - Size, in bytes, of codedependencies
-- that you can zip into a deployment package (uncompressed zipjar
-- size) for uploading. The default limit is 250 MB.
-- - alCodeSizeZipped - Size, in bytes, of a single zipped
-- codedependencies package you can upload for your Lambda
-- function(.zip.jar file). Try using Amazon S3 for uploading larger
-- files. Default limit is 50 MB.
--
accountLimit :: AccountLimit
-- | Number of simultaneous executions of your function per region. For
-- more information or to request a limit increase for concurrent
-- executions, see Lambda Function Concurrent Executions . The
-- default limit is 1000.
alConcurrentExecutions :: Lens' AccountLimit (Maybe Int)
-- | Maximum size, in bytes, of a code package you can upload per region.
-- The default size is 75 GB.
alTotalCodeSize :: Lens' AccountLimit (Maybe Integer)
-- | The number of concurrent executions available to functions that do not
-- have concurrency limits set. For more information, see
-- 'concurrent-executions' .
alUnreservedConcurrentExecutions :: Lens' AccountLimit (Maybe Natural)
-- | Size, in bytes, of codedependencies that you can zip into a
-- deployment package (uncompressed zipjar size) for uploading. The
-- default limit is 250 MB.
alCodeSizeUnzipped :: Lens' AccountLimit (Maybe Integer)
-- | Size, in bytes, of a single zipped codedependencies package you can
-- upload for your Lambda function(.zip.jar file). Try using Amazon
-- S3 for uploading larger files. Default limit is 50 MB.
alCodeSizeZipped :: Lens' AccountLimit (Maybe Integer)
-- | Provides code size usage and function count associated with the
-- current account and region.
--
-- See: accountUsage smart constructor.
data AccountUsage
-- | Creates a value of AccountUsage with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - auTotalCodeSize - Total size, in bytes, of the account's
-- deployment packages per region.
-- - auFunctionCount - The number of your account's existing
-- functions per region.
--
accountUsage :: AccountUsage
-- | Total size, in bytes, of the account's deployment packages per region.
auTotalCodeSize :: Lens' AccountUsage (Maybe Integer)
-- | The number of your account's existing functions per region.
auFunctionCount :: Lens' AccountUsage (Maybe Integer)
-- | Provides configuration information about a Lambda function version
-- alias.
--
-- See: aliasConfiguration smart constructor.
data AliasConfiguration
-- | Creates a value of AliasConfiguration with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - acRoutingConfig - Specifies an additional function versions
-- the alias points to, allowing you to dictate what percentage of
-- traffic will invoke each version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
-- - acName - Alias name.
-- - acFunctionVersion - Function version to which the alias
-- points.
-- - acAliasARN - Lambda function ARN that is qualified using
-- the alias name as the suffix. For example, if you create an alias
-- called BETA that points to a helloworld function version, the
-- ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA
-- .
-- - acDescription - Alias description.
-- - acRevisionId - Represents the latest updated revision of
-- the function or alias.
--
aliasConfiguration :: AliasConfiguration
-- | Specifies an additional function versions the alias points to,
-- allowing you to dictate what percentage of traffic will invoke each
-- version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
acRoutingConfig :: Lens' AliasConfiguration (Maybe AliasRoutingConfiguration)
-- | Alias name.
acName :: Lens' AliasConfiguration (Maybe Text)
-- | Function version to which the alias points.
acFunctionVersion :: Lens' AliasConfiguration (Maybe Text)
-- | Lambda function ARN that is qualified using the alias name as the
-- suffix. For example, if you create an alias called BETA that
-- points to a helloworld function version, the ARN is
-- arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA .
acAliasARN :: Lens' AliasConfiguration (Maybe Text)
-- | Alias description.
acDescription :: Lens' AliasConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
acRevisionId :: Lens' AliasConfiguration (Maybe Text)
-- | The parent object that implements what percentage of traffic will
-- invoke each function version. For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
--
-- See: aliasRoutingConfiguration smart constructor.
data AliasRoutingConfiguration
-- | Creates a value of AliasRoutingConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - arcAdditionalVersionWeights - Set this value to dictate
-- what percentage of traffic will invoke the updated function version.
-- If set to an empty string, 100 percent of traffic will invoke
-- function-version . For more information, see
-- 'lambda-traffic-shifting-using-aliases' .
--
aliasRoutingConfiguration :: AliasRoutingConfiguration
-- | Set this value to dictate what percentage of traffic will invoke the
-- updated function version. If set to an empty string, 100 percent of
-- traffic will invoke function-version . For more information,
-- see 'lambda-traffic-shifting-using-aliases' .
arcAdditionalVersionWeights :: Lens' AliasRoutingConfiguration (HashMap Text Double)
-- | See: concurrency smart constructor.
data Concurrency
-- | Creates a value of Concurrency with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - cReservedConcurrentExecutions - The number of concurrent
-- executions reserved for this function. For more information, see
-- 'concurrent-executions' .
--
concurrency :: Concurrency
-- | The number of concurrent executions reserved for this function. For
-- more information, see 'concurrent-executions' .
cReservedConcurrentExecutions :: Lens' Concurrency (Maybe Natural)
-- | The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS
-- topic you specify as your Dead Letter Queue (DLQ). For more
-- information, see dlq .
--
-- See: deadLetterConfig smart constructor.
data DeadLetterConfig
-- | Creates a value of DeadLetterConfig with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - dlcTargetARN - The Amazon Resource Name (ARN) of an Amazon
-- SQS queue or Amazon SNS topic you specify as your Dead Letter Queue
-- (DLQ). dlq . For more information, see dlq .
--
deadLetterConfig :: DeadLetterConfig
-- | The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS
-- topic you specify as your Dead Letter Queue (DLQ). dlq . For
-- more information, see dlq .
dlcTargetARN :: Lens' DeadLetterConfig (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
--
-- See: environment smart constructor.
data Environment
-- | Creates a value of Environment with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - eVariables - The key-value pairs that represent your
-- environment's configuration settings.
--
environment :: Environment
-- | The key-value pairs that represent your environment's configuration
-- settings.
eVariables :: Lens' Environment (Maybe (HashMap Text Text))
-- | The parent object that contains error information associated with your
-- configuration settings.
--
-- See: environmentError smart constructor.
data EnvironmentError
-- | Creates a value of EnvironmentError with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - eeErrorCode - The error code returned by the environment
-- error object.
-- - eeMessage - The message returned by the environment error
-- object.
--
environmentError :: EnvironmentError
-- | The error code returned by the environment error object.
eeErrorCode :: Lens' EnvironmentError (Maybe Text)
-- | The message returned by the environment error object.
eeMessage :: Lens' EnvironmentError (Maybe Text)
-- | The parent object returned that contains your environment's
-- configuration settings or any error information associated with your
-- configuration settings.
--
-- See: environmentResponse smart constructor.
data EnvironmentResponse
-- | Creates a value of EnvironmentResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - envVariables - The key-value pairs returned that represent
-- your environment's configuration settings or error information.
-- - envError - Undocumented member.
--
environmentResponse :: EnvironmentResponse
-- | The key-value pairs returned that represent your environment's
-- configuration settings or error information.
envVariables :: Lens' EnvironmentResponse (Maybe (HashMap Text Text))
-- | Undocumented member.
envError :: Lens' EnvironmentResponse (Maybe EnvironmentError)
-- | Describes mapping between an Amazon Kinesis stream and a Lambda
-- function.
--
-- See: eventSourceMappingConfiguration smart constructor.
data EventSourceMappingConfiguration
-- | Creates a value of EventSourceMappingConfiguration with the
-- minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - esmcEventSourceARN - The Amazon Resource Name (ARN) of the
-- Amazon Kinesis stream that is the source of events.
-- - esmcState - The state of the event source mapping. It can
-- be Creating , Enabled , Disabled ,
-- Enabling , Disabling , Updating , or
-- Deleting .
-- - esmcFunctionARN - The Lambda function to invoke when AWS
-- Lambda detects an event on the stream.
-- - esmcUUId - The AWS Lambda assigned opaque identifier for
-- the mapping.
-- - esmcLastProcessingResult - The result of the last AWS
-- Lambda invocation of your Lambda function.
-- - esmcBatchSize - The largest number of records that AWS
-- Lambda will retrieve from your event source at the time of invoking
-- your function. Your function receives an event with all the retrieved
-- records.
-- - esmcStateTransitionReason - The reason the event source
-- mapping is in its current state. It is either user-requested or an AWS
-- Lambda-initiated state transition.
-- - esmcLastModified - The UTC time string indicating the last
-- time the event mapping was updated.
--
eventSourceMappingConfiguration :: EventSourceMappingConfiguration
-- | The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
-- the source of events.
esmcEventSourceARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The state of the event source mapping. It can be Creating ,
-- Enabled , Disabled , Enabling ,
-- Disabling , Updating , or Deleting .
esmcState :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The Lambda function to invoke when AWS Lambda detects an event on the
-- stream.
esmcFunctionARN :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The AWS Lambda assigned opaque identifier for the mapping.
esmcUUId :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The result of the last AWS Lambda invocation of your Lambda function.
esmcLastProcessingResult :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The largest number of records that AWS Lambda will retrieve from your
-- event source at the time of invoking your function. Your function
-- receives an event with all the retrieved records.
esmcBatchSize :: Lens' EventSourceMappingConfiguration (Maybe Natural)
-- | The reason the event source mapping is in its current state. It is
-- either user-requested or an AWS Lambda-initiated state transition.
esmcStateTransitionReason :: Lens' EventSourceMappingConfiguration (Maybe Text)
-- | The UTC time string indicating the last time the event mapping was
-- updated.
esmcLastModified :: Lens' EventSourceMappingConfiguration (Maybe UTCTime)
-- | The code for the Lambda function.
--
-- See: functionCode smart constructor.
data FunctionCode
-- | Creates a value of FunctionCode with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fcS3ObjectVersion - The Amazon S3 object (the deployment
-- package) version you want to upload.
-- - fcS3Key - The Amazon S3 object (the deployment package) key
-- name you want to upload.
-- - fcZipFile - The contents of your zip file containing your
-- deployment package. If you are using the web API directly, the
-- contents of the zip file must be base64-encoded. If you are using the
-- AWS SDKs or the AWS CLI, the SDKs or CLI will do the encoding for you.
-- For more information about creating a .zip file, see Execution
-- Permissions in the AWS Lambda Developer Guide . --
-- Note: This Lens automatically encodes and decodes
-- Base64 data. The underlying isomorphism will encode to Base64
-- representation during serialisation, and decode from Base64
-- representation during deserialisation. This Lens accepts and
-- returns only raw unencoded data.
-- - fcS3Bucket - Amazon S3 bucket name where the .zip file
-- containing your deployment package is stored. This bucket must reside
-- in the same AWS region where you are creating the Lambda
-- function.
--
functionCode :: FunctionCode
-- | The Amazon S3 object (the deployment package) version you want to
-- upload.
fcS3ObjectVersion :: Lens' FunctionCode (Maybe Text)
-- | The Amazon S3 object (the deployment package) key name you want to
-- upload.
fcS3Key :: Lens' FunctionCode (Maybe Text)
-- | The contents of your zip file containing your deployment package. If
-- you are using the web API directly, the contents of the zip file must
-- be base64-encoded. If you are using the AWS SDKs or the AWS CLI, the
-- SDKs or CLI will do the encoding for you. For more information about
-- creating a .zip file, see Execution Permissions in the AWS
-- Lambda Developer Guide . -- Note: This Lens
-- automatically encodes and decodes Base64 data. The underlying
-- isomorphism will encode to Base64 representation during serialisation,
-- and decode from Base64 representation during deserialisation. This
-- Lens accepts and returns only raw unencoded data.
fcZipFile :: Lens' FunctionCode (Maybe ByteString)
-- | Amazon S3 bucket name where the .zip file containing your deployment
-- package is stored. This bucket must reside in the same AWS region
-- where you are creating the Lambda function.
fcS3Bucket :: Lens' FunctionCode (Maybe Text)
-- | The object for the Lambda function location.
--
-- See: functionCodeLocation smart constructor.
data FunctionCodeLocation
-- | Creates a value of FunctionCodeLocation with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fclLocation - The presigned URL you can use to download the
-- function's .zip file that you previously uploaded. The URL is valid
-- for up to 10 minutes.
-- - fclRepositoryType - The repository from which you can
-- download the function.
--
functionCodeLocation :: FunctionCodeLocation
-- | The presigned URL you can use to download the function's .zip file
-- that you previously uploaded. The URL is valid for up to 10 minutes.
fclLocation :: Lens' FunctionCodeLocation (Maybe Text)
-- | The repository from which you can download the function.
fclRepositoryType :: Lens' FunctionCodeLocation (Maybe Text)
-- | A complex type that describes function metadata.
--
-- See: functionConfiguration smart constructor.
data FunctionConfiguration
-- | Creates a value of FunctionConfiguration with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - fcMemorySize - The memory size, in MB, you configured for
-- the function. Must be a multiple of 64 MB.
-- - fcRuntime - The runtime environment for the Lambda
-- function.
-- - fcFunctionARN - The Amazon Resource Name (ARN) assigned to
-- the function.
-- - fcKMSKeyARN - The Amazon Resource Name (ARN) of the KMS key
-- used to encrypt your function's environment variables. If empty, it
-- means you are using the AWS Lambda default service key.
-- - fcEnvironment - The parent object that contains your
-- environment's configuration settings.
-- - fcDeadLetterConfig - The parent object that contains the
-- target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
-- topic. For more information, see dlq .
-- - fcRole - The Amazon Resource Name (ARN) of the IAM role
-- that Lambda assumes when it executes your function to access any other
-- Amazon Web Services (AWS) resources.
-- - fcVPCConfig - VPC configuration associated with your Lambda
-- function.
-- - fcVersion - The version of the Lambda function.
-- - fcFunctionName - The name of the function. Note that the
-- length constraint applies only to the ARN. If you specify only the
-- function name, it is limited to 64 characters in length.
-- - fcCodeSize - The size, in bytes, of the function .zip file
-- you uploaded.
-- - fcHandler - The function Lambda calls to begin executing
-- your function.
-- - fcTimeout - The function execution time at which Lambda
-- should terminate the function. Because the execution time has cost
-- implications, we recommend you set this value based on your expected
-- execution time. The default is 3 seconds.
-- - fcLastModified - The time stamp of the last time you
-- updated the function. The time stamp is conveyed as a string complying
-- with ISO-8601 in this way YYYY-MM-DDThh:mm:ssTZD (e.g.,
-- 1997-07-16T19:20:30+01:00). For more information, see Date and Time
-- Formats .
-- - fcCodeSha256 - It is the SHA256 hash of your function
-- deployment package.
-- - fcTracingConfig - The parent object that contains your
-- function's tracing settings.
-- - fcDescription - The user-provided description.
-- - fcRevisionId - Represents the latest updated revision of
-- the function or alias.
-- - fcMasterARN - Returns the ARN (Amazon Resource Name) of the
-- master function.
--
functionConfiguration :: FunctionConfiguration
-- | The memory size, in MB, you configured for the function. Must be a
-- multiple of 64 MB.
fcMemorySize :: Lens' FunctionConfiguration (Maybe Natural)
-- | The runtime environment for the Lambda function.
fcRuntime :: Lens' FunctionConfiguration (Maybe Runtime)
-- | The Amazon Resource Name (ARN) assigned to the function.
fcFunctionARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The Amazon Resource Name (ARN) of the KMS key used to encrypt your
-- function's environment variables. If empty, it means you are using the
-- AWS Lambda default service key.
fcKMSKeyARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your environment's configuration
-- settings.
fcEnvironment :: Lens' FunctionConfiguration (Maybe EnvironmentResponse)
-- | The parent object that contains the target ARN (Amazon Resource Name)
-- of an Amazon SQS queue or Amazon SNS topic. For more information, see
-- dlq .
fcDeadLetterConfig :: Lens' FunctionConfiguration (Maybe DeadLetterConfig)
-- | The Amazon Resource Name (ARN) of the IAM role that Lambda assumes
-- when it executes your function to access any other Amazon Web Services
-- (AWS) resources.
fcRole :: Lens' FunctionConfiguration (Maybe Text)
-- | VPC configuration associated with your Lambda function.
fcVPCConfig :: Lens' FunctionConfiguration (Maybe VPCConfigResponse)
-- | The version of the Lambda function.
fcVersion :: Lens' FunctionConfiguration (Maybe Text)
-- | The name of the function. Note that the length constraint applies only
-- to the ARN. If you specify only the function name, it is limited to 64
-- characters in length.
fcFunctionName :: Lens' FunctionConfiguration (Maybe Text)
-- | The size, in bytes, of the function .zip file you uploaded.
fcCodeSize :: Lens' FunctionConfiguration (Maybe Integer)
-- | The function Lambda calls to begin executing your function.
fcHandler :: Lens' FunctionConfiguration (Maybe Text)
-- | The function execution time at which Lambda should terminate the
-- function. Because the execution time has cost implications, we
-- recommend you set this value based on your expected execution time.
-- The default is 3 seconds.
fcTimeout :: Lens' FunctionConfiguration (Maybe Natural)
-- | The time stamp of the last time you updated the function. The time
-- stamp is conveyed as a string complying with ISO-8601 in this way
-- YYYY-MM-DDThh:mm:ssTZD (e.g., 1997-07-16T19:20:30+01:00). For more
-- information, see Date and Time Formats .
fcLastModified :: Lens' FunctionConfiguration (Maybe Text)
-- | It is the SHA256 hash of your function deployment package.
fcCodeSha256 :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your function's tracing settings.
fcTracingConfig :: Lens' FunctionConfiguration (Maybe TracingConfigResponse)
-- | The user-provided description.
fcDescription :: Lens' FunctionConfiguration (Maybe Text)
-- | Represents the latest updated revision of the function or alias.
fcRevisionId :: Lens' FunctionConfiguration (Maybe Text)
-- | Returns the ARN (Amazon Resource Name) of the master function.
fcMasterARN :: Lens' FunctionConfiguration (Maybe Text)
-- | The parent object that contains your function's tracing settings.
--
-- See: tracingConfig smart constructor.
data TracingConfig
-- | Creates a value of TracingConfig with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - tMode - Can be either PassThrough or Active. If
-- PassThrough, Lambda will only trace the request from an upstream
-- service if it contains a tracing header with "sampled=1". If Active,
-- Lambda will respect any tracing header it receives from an upstream
-- service. If no tracing header is received, Lambda will call X-Ray for
-- a tracing decision.
--
tracingConfig :: TracingConfig
-- | Can be either PassThrough or Active. If PassThrough, Lambda will only
-- trace the request from an upstream service if it contains a tracing
-- header with "sampled=1". If Active, Lambda will respect any tracing
-- header it receives from an upstream service. If no tracing header is
-- received, Lambda will call X-Ray for a tracing decision.
tMode :: Lens' TracingConfig (Maybe TracingMode)
-- | Parent object of the tracing information associated with your Lambda
-- function.
--
-- See: tracingConfigResponse smart constructor.
data TracingConfigResponse
-- | Creates a value of TracingConfigResponse with the minimum
-- fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - tcMode - The tracing mode associated with your Lambda
-- function.
--
tracingConfigResponse :: TracingConfigResponse
-- | The tracing mode associated with your Lambda function.
tcMode :: Lens' TracingConfigResponse (Maybe TracingMode)
-- | If your Lambda function accesses resources in a VPC, you provide this
-- parameter identifying the list of security group IDs and subnet IDs.
-- These must belong to the same VPC. You must provide at least one
-- security group and one subnet ID.
--
-- See: vpcConfig smart constructor.
data VPCConfig
-- | Creates a value of VPCConfig with the minimum fields required
-- to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
vpcConfig :: VPCConfig
-- | A list of one or more security groups IDs in your VPC.
vpccSecurityGroupIds :: Lens' VPCConfig [Text]
-- | A list of one or more subnet IDs in your VPC.
vpccSubnetIds :: Lens' VPCConfig [Text]
-- | VPC configuration associated with your Lambda function.
--
-- See: vpcConfigResponse smart constructor.
data VPCConfigResponse
-- | Creates a value of VPCConfigResponse with the minimum fields
-- required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
--
-- - vcSecurityGroupIds - A list of security group IDs
-- associated with the Lambda function.
-- - vcSubnetIds - A list of subnet IDs associated with the
-- Lambda function.
-- - vcVPCId - The VPC ID associated with you Lambda
-- function.
--
vpcConfigResponse :: VPCConfigResponse
-- | A list of security group IDs associated with the Lambda function.
vcSecurityGroupIds :: Lens' VPCConfigResponse [Text]
-- | A list of subnet IDs associated with the Lambda function.
vcSubnetIds :: Lens' VPCConfigResponse [Text]
-- | The VPC ID associated with you Lambda function.
vcVPCId :: Lens' VPCConfigResponse (Maybe Text)