![JAR search and dependency download from the Maven repository](/logo.png)
models.lambda-2015-03-31-intermediate.json Maven / Gradle / Ivy
Show all versions of aws-java-sdk-lambda Show documentation
{
"metadata" : {
"apiVersion" : "2015-03-31",
"exceptionUnmarshallerImpl" : null,
"protocol" : "rest-json",
"checksumFormat" : null,
"documentation" : "AWS Lambda Overview
This is the AWS Lambda API Reference. The AWS Lambda Developer Guide provides additional information. For the service overview, go to What is AWS Lambda, and for information about how the service works, go to AWS Lambda: How it Works in the AWS Lambda Developer Guide.
",
"defaultEndpoint" : "lambda.us-east-1.amazonaws.com",
"defaultEndpointWithoutHttpProtocol" : "lambda.us-east-1.amazonaws.com",
"syncInterface" : "AWSLambda",
"syncClient" : "AWSLambdaClient",
"asyncInterface" : "AWSLambdaAsync",
"asyncClient" : "AWSLambdaAsyncClient",
"packageName" : "com.amazonaws.services.lambda",
"packagePath" : "com/amazonaws/services/lambda",
"serviceAbbreviation" : null,
"serviceFullName" : "AWS Lambda",
"hasApiWithStreamInput" : false,
"jsonContentVersion" : "application/x-amz-json-1.1",
"jsonVersion" : "1.1",
"endpointPrefix" : "lambda",
"signingName" : "lambda",
"jsonProtocol" : true,
"serviceName" : "AWS Lambda",
"cborProtocol" : false,
"xmlProtocol" : false,
"unmarshallerContextClassName" : "JsonUnmarshallerContext",
"unmarshallerClassSuffix" : "JsonUnmarshaller",
"protocolDefaultExceptionUnmarshallerType" : "JsonErrorUnmarshaller"
},
"operations" : {
"AddPermission" : {
"documentation" : "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 AWS Lambda: How it Works.
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.
",
"operationName" : "AddPermission",
"deprecated" : false,
"input" : {
"variableName" : "addPermissionRequest",
"variableType" : "AddPermissionRequest",
"variableDeclarationType" : "AddPermissionRequest",
"documentation" : "",
"simpleType" : "AddPermissionRequest",
"variableSetterType" : "AddPermissionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "AddPermissionResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "ResourceConflictException",
"documentation" : "The resource already exists.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "PolicyLengthExceededException",
"documentation" : "Lambda function access policy is limited to 20 KB.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "AddPermissionResult",
"asyncReturnType" : "AddPermissionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "addPermission"
},
"CreateAlias" : {
"documentation" : "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.
",
"operationName" : "CreateAlias",
"deprecated" : false,
"input" : {
"variableName" : "createAliasRequest",
"variableType" : "CreateAliasRequest",
"variableDeclarationType" : "CreateAliasRequest",
"documentation" : "",
"simpleType" : "CreateAliasRequest",
"variableSetterType" : "CreateAliasRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreateAliasResult",
"documentation" : "Provides configuration information about a Lambda function version alias.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "ResourceConflictException",
"documentation" : "The resource already exists.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "CreateAliasResult",
"asyncReturnType" : "CreateAliasResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "createAlias"
},
"CreateEventSourceMapping" : {
"documentation" : "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.
This event source mapping is relevant only in the AWS Lambda pull model, where AWS Lambda invokes the function. For more information, go to AWS Lambda: How it Works in the AWS Lambda Developer Guide. 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 function. 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.
",
"operationName" : "CreateEventSourceMapping",
"deprecated" : false,
"input" : {
"variableName" : "createEventSourceMappingRequest",
"variableType" : "CreateEventSourceMappingRequest",
"variableDeclarationType" : "CreateEventSourceMappingRequest",
"documentation" : "",
"simpleType" : "CreateEventSourceMappingRequest",
"variableSetterType" : "CreateEventSourceMappingRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreateEventSourceMappingResult",
"documentation" : "Describes mapping between an Amazon Kinesis stream and a Lambda function.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "ResourceConflictException",
"documentation" : "The resource already exists.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "CreateEventSourceMappingResult",
"asyncReturnType" : "CreateEventSourceMappingResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "createEventSourceMapping"
},
"CreateFunction" : {
"documentation" : "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.
",
"operationName" : "CreateFunction",
"deprecated" : false,
"input" : {
"variableName" : "createFunctionRequest",
"variableType" : "CreateFunctionRequest",
"variableDeclarationType" : "CreateFunctionRequest",
"documentation" : "",
"simpleType" : "CreateFunctionRequest",
"variableSetterType" : "CreateFunctionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "CreateFunctionResult",
"documentation" : "A complex type that describes function metadata.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "ResourceConflictException",
"documentation" : "The resource already exists.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "CodeStorageExceededException",
"documentation" : "You have exceeded your maximum total code size per account. Limits
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "CreateFunctionResult",
"asyncReturnType" : "CreateFunctionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "createFunction"
},
"DeleteAlias" : {
"documentation" : "Deletes the specified Lambda function alias. For more information, see Introduction to AWS Lambda Aliases.
This requires permission for the lambda:DeleteAlias action.
",
"operationName" : "DeleteAlias",
"deprecated" : false,
"input" : {
"variableName" : "deleteAliasRequest",
"variableType" : "DeleteAliasRequest",
"variableDeclarationType" : "DeleteAliasRequest",
"documentation" : "",
"simpleType" : "DeleteAliasRequest",
"variableSetterType" : "DeleteAliasRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteAliasResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "DeleteAliasResult",
"asyncReturnType" : "DeleteAliasResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "deleteAlias"
},
"DeleteEventSourceMapping" : {
"documentation" : "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.
",
"operationName" : "DeleteEventSourceMapping",
"deprecated" : false,
"input" : {
"variableName" : "deleteEventSourceMappingRequest",
"variableType" : "DeleteEventSourceMappingRequest",
"variableDeclarationType" : "DeleteEventSourceMappingRequest",
"documentation" : "",
"simpleType" : "DeleteEventSourceMappingRequest",
"variableSetterType" : "DeleteEventSourceMappingRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteEventSourceMappingResult",
"documentation" : "Describes mapping between an Amazon Kinesis stream and a Lambda function.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "DeleteEventSourceMappingResult",
"asyncReturnType" : "DeleteEventSourceMappingResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "deleteEventSourceMapping"
},
"DeleteFunction" : {
"documentation" : "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.
",
"operationName" : "DeleteFunction",
"deprecated" : false,
"input" : {
"variableName" : "deleteFunctionRequest",
"variableType" : "DeleteFunctionRequest",
"variableDeclarationType" : "DeleteFunctionRequest",
"documentation" : "",
"simpleType" : "DeleteFunctionRequest",
"variableSetterType" : "DeleteFunctionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "DeleteFunctionResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "ResourceConflictException",
"documentation" : "The resource already exists.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "DeleteFunctionResult",
"asyncReturnType" : "DeleteFunctionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "deleteFunction"
},
"GetAlias" : {
"documentation" : "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.
",
"operationName" : "GetAlias",
"deprecated" : false,
"input" : {
"variableName" : "getAliasRequest",
"variableType" : "GetAliasRequest",
"variableDeclarationType" : "GetAliasRequest",
"documentation" : "",
"simpleType" : "GetAliasRequest",
"variableSetterType" : "GetAliasRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetAliasResult",
"documentation" : "Provides configuration information about a Lambda function version alias.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetAliasResult",
"asyncReturnType" : "GetAliasResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getAlias"
},
"GetEventSourceMapping" : {
"documentation" : "Returns configuration information for the specified event source mapping (see CreateEventSourceMapping).
This operation requires permission for the lambda:GetEventSourceMapping
action.
",
"operationName" : "GetEventSourceMapping",
"deprecated" : false,
"input" : {
"variableName" : "getEventSourceMappingRequest",
"variableType" : "GetEventSourceMappingRequest",
"variableDeclarationType" : "GetEventSourceMappingRequest",
"documentation" : "",
"simpleType" : "GetEventSourceMappingRequest",
"variableSetterType" : "GetEventSourceMappingRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetEventSourceMappingResult",
"documentation" : "Describes mapping between an Amazon Kinesis stream and a Lambda function.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetEventSourceMappingResult",
"asyncReturnType" : "GetEventSourceMappingResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getEventSourceMapping"
},
"GetFunction" : {
"documentation" : "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.
",
"operationName" : "GetFunction",
"deprecated" : false,
"input" : {
"variableName" : "getFunctionRequest",
"variableType" : "GetFunctionRequest",
"variableDeclarationType" : "GetFunctionRequest",
"documentation" : "",
"simpleType" : "GetFunctionRequest",
"variableSetterType" : "GetFunctionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetFunctionResult",
"documentation" : "This response contains the object for the Lambda function location (see API_FunctionCodeLocation.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetFunctionResult",
"asyncReturnType" : "GetFunctionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getFunction"
},
"GetFunctionConfiguration" : {
"documentation" : "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.
",
"operationName" : "GetFunctionConfiguration",
"deprecated" : false,
"input" : {
"variableName" : "getFunctionConfigurationRequest",
"variableType" : "GetFunctionConfigurationRequest",
"variableDeclarationType" : "GetFunctionConfigurationRequest",
"documentation" : "",
"simpleType" : "GetFunctionConfigurationRequest",
"variableSetterType" : "GetFunctionConfigurationRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetFunctionConfigurationResult",
"documentation" : "A complex type that describes function metadata.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetFunctionConfigurationResult",
"asyncReturnType" : "GetFunctionConfigurationResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getFunctionConfiguration"
},
"GetPolicy" : {
"documentation" : "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.
For information about adding permissions, see AddPermission.
You need permission for the lambda:GetPolicy action.
",
"operationName" : "GetPolicy",
"deprecated" : false,
"input" : {
"variableName" : "getPolicyRequest",
"variableType" : "GetPolicyRequest",
"variableDeclarationType" : "GetPolicyRequest",
"documentation" : "",
"simpleType" : "GetPolicyRequest",
"variableSetterType" : "GetPolicyRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "GetPolicyResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "GetPolicyResult",
"asyncReturnType" : "GetPolicyResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "getPolicy"
},
"Invoke" : {
"documentation" : " Invokes a specific Lambda function.
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. For information about the versioning feature, see AWS Lambda Function Versioning and Aliases.
This operation requires permission for the lambda:InvokeFunction
action.
",
"operationName" : "Invoke",
"deprecated" : false,
"input" : {
"variableName" : "invokeRequest",
"variableType" : "InvokeRequest",
"variableDeclarationType" : "InvokeRequest",
"documentation" : "",
"simpleType" : "InvokeRequest",
"variableSetterType" : "InvokeRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "InvokeResult",
"documentation" : "Upon success, returns an empty response. Otherwise, throws an exception.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidRequestContentException",
"documentation" : "The request body could not be parsed as JSON.
"
}, {
"exceptionName" : "RequestTooLargeException",
"documentation" : "The request payload exceeded the Invoke
request body JSON input limit. For more information, see Limits.
"
}, {
"exceptionName" : "UnsupportedMediaTypeException",
"documentation" : "The content type of the Invoke
request body is not JSON.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "EC2UnexpectedException",
"documentation" : "AWS Lambda received an unexpected EC2 client exception while setting up for the Lambda function.
"
}, {
"exceptionName" : "SubnetIPAddressLimitReachedException",
"documentation" : "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.
"
}, {
"exceptionName" : "ENILimitReachedException",
"documentation" : "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.
"
}, {
"exceptionName" : "EC2ThrottledException",
"documentation" : "AWS Lambda was throttled by Amazon EC2 during Lambda function initiatization using the execution role provided for the Lambda function.
"
}, {
"exceptionName" : "EC2AccessDeniedException",
"documentation" : null
}, {
"exceptionName" : "InvalidSubnetIDException",
"documentation" : "The Subnet ID provided in the Lambda function VPC configuration is invalid.
"
}, {
"exceptionName" : "InvalidSecurityGroupIDException",
"documentation" : "The Security Group ID provided in the Lambda function VPC configuration is invalid.
"
} ],
"hasBlobMemberAsPayload" : true,
"authenticated" : true,
"syncReturnType" : "InvokeResult",
"asyncReturnType" : "InvokeResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "invoke"
},
"InvokeAsync" : {
"documentation" : "This API is deprecated. We recommend you use Invoke
API (see Invoke). Submits an invocation request to AWS Lambda. Upon receiving the request, Lambda executes the specified function asynchronously. To see the logs generated by the Lambda function execution, see the CloudWatch Logs console.
This operation requires permission for the lambda:InvokeFunction
action.
",
"operationName" : "InvokeAsync",
"deprecated" : true,
"input" : {
"variableName" : "invokeAsyncRequest",
"variableType" : "InvokeAsyncRequest",
"variableDeclarationType" : "InvokeAsyncRequest",
"documentation" : "",
"simpleType" : "InvokeAsyncRequest",
"variableSetterType" : "InvokeAsyncRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "InvokeAsyncResult",
"documentation" : "Upon success, it returns empty response. Otherwise, throws an exception.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidRequestContentException",
"documentation" : "The request body could not be parsed as JSON.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "InvokeAsyncResult",
"asyncReturnType" : "InvokeAsyncResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "invokeAsync"
},
"ListAliases" : {
"documentation" : "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.
",
"operationName" : "ListAliases",
"deprecated" : false,
"input" : {
"variableName" : "listAliasesRequest",
"variableType" : "ListAliasesRequest",
"variableDeclarationType" : "ListAliasesRequest",
"documentation" : "",
"simpleType" : "ListAliasesRequest",
"variableSetterType" : "ListAliasesRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListAliasesResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "ListAliasesResult",
"asyncReturnType" : "ListAliasesResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "listAliases"
},
"ListEventSourceMappings" : {
"documentation" : "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.
",
"operationName" : "ListEventSourceMappings",
"deprecated" : false,
"input" : {
"variableName" : "listEventSourceMappingsRequest",
"variableType" : "ListEventSourceMappingsRequest",
"variableDeclarationType" : "ListEventSourceMappingsRequest",
"documentation" : "",
"simpleType" : "ListEventSourceMappingsRequest",
"variableSetterType" : "ListEventSourceMappingsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListEventSourceMappingsResult",
"documentation" : "Contains a list of event sources (see API_EventSourceMappingConfiguration)
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "ListEventSourceMappingsResult",
"asyncReturnType" : "ListEventSourceMappingsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "listEventSourceMappings"
},
"ListFunctions" : {
"documentation" : "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 versioning feature, the response returns list of $LATEST versions of your functions. For information about the versioning feature, see AWS Lambda Function Versioning and Aliases.
",
"operationName" : "ListFunctions",
"deprecated" : false,
"input" : {
"variableName" : "listFunctionsRequest",
"variableType" : "ListFunctionsRequest",
"variableDeclarationType" : "ListFunctionsRequest",
"documentation" : "",
"simpleType" : "ListFunctionsRequest",
"variableSetterType" : "ListFunctionsRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListFunctionsResult",
"documentation" : "Contains a list of AWS Lambda function configurations (see FunctionConfiguration.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "ListFunctionsResult",
"asyncReturnType" : "ListFunctionsResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "listFunctions"
},
"ListVersionsByFunction" : {
"documentation" : "List all versions of a function. For information about the versioning feature, see AWS Lambda Function Versioning and Aliases.
",
"operationName" : "ListVersionsByFunction",
"deprecated" : false,
"input" : {
"variableName" : "listVersionsByFunctionRequest",
"variableType" : "ListVersionsByFunctionRequest",
"variableDeclarationType" : "ListVersionsByFunctionRequest",
"documentation" : "",
"simpleType" : "ListVersionsByFunctionRequest",
"variableSetterType" : "ListVersionsByFunctionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "ListVersionsByFunctionResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "ListVersionsByFunctionResult",
"asyncReturnType" : "ListVersionsByFunctionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "listVersionsByFunction"
},
"PublishVersion" : {
"documentation" : "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.
",
"operationName" : "PublishVersion",
"deprecated" : false,
"input" : {
"variableName" : "publishVersionRequest",
"variableType" : "PublishVersionRequest",
"variableDeclarationType" : "PublishVersionRequest",
"documentation" : "",
"simpleType" : "PublishVersionRequest",
"variableSetterType" : "PublishVersionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "PublishVersionResult",
"documentation" : "A complex type that describes function metadata.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "CodeStorageExceededException",
"documentation" : "You have exceeded your maximum total code size per account. Limits
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "PublishVersionResult",
"asyncReturnType" : "PublishVersionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "publishVersion"
},
"RemovePermission" : {
"documentation" : "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.
",
"operationName" : "RemovePermission",
"deprecated" : false,
"input" : {
"variableName" : "removePermissionRequest",
"variableType" : "RemovePermissionRequest",
"variableDeclarationType" : "RemovePermissionRequest",
"documentation" : "",
"simpleType" : "RemovePermissionRequest",
"variableSetterType" : "RemovePermissionRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "RemovePermissionResult",
"documentation" : null
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "RemovePermissionResult",
"asyncReturnType" : "RemovePermissionResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "removePermission"
},
"UpdateAlias" : {
"documentation" : "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.
",
"operationName" : "UpdateAlias",
"deprecated" : false,
"input" : {
"variableName" : "updateAliasRequest",
"variableType" : "UpdateAliasRequest",
"variableDeclarationType" : "UpdateAliasRequest",
"documentation" : "",
"simpleType" : "UpdateAliasRequest",
"variableSetterType" : "UpdateAliasRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "UpdateAliasResult",
"documentation" : "Provides configuration information about a Lambda function version alias.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "UpdateAliasResult",
"asyncReturnType" : "UpdateAliasResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "updateAlias"
},
"UpdateEventSourceMapping" : {
"documentation" : "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.
",
"operationName" : "UpdateEventSourceMapping",
"deprecated" : false,
"input" : {
"variableName" : "updateEventSourceMappingRequest",
"variableType" : "UpdateEventSourceMappingRequest",
"variableDeclarationType" : "UpdateEventSourceMappingRequest",
"documentation" : "",
"simpleType" : "UpdateEventSourceMappingRequest",
"variableSetterType" : "UpdateEventSourceMappingRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "UpdateEventSourceMappingResult",
"documentation" : "Describes mapping between an Amazon Kinesis stream and a Lambda function.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "ResourceConflictException",
"documentation" : "The resource already exists.
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "UpdateEventSourceMappingResult",
"asyncReturnType" : "UpdateEventSourceMappingResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "updateEventSourceMapping"
},
"UpdateFunctionCode" : {
"documentation" : " 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.
",
"operationName" : "UpdateFunctionCode",
"deprecated" : false,
"input" : {
"variableName" : "updateFunctionCodeRequest",
"variableType" : "UpdateFunctionCodeRequest",
"variableDeclarationType" : "UpdateFunctionCodeRequest",
"documentation" : "",
"simpleType" : "UpdateFunctionCodeRequest",
"variableSetterType" : "UpdateFunctionCodeRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "UpdateFunctionCodeResult",
"documentation" : "A complex type that describes function metadata.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
}, {
"exceptionName" : "CodeStorageExceededException",
"documentation" : "You have exceeded your maximum total code size per account. Limits
"
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "UpdateFunctionCodeResult",
"asyncReturnType" : "UpdateFunctionCodeResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "updateFunctionCode"
},
"UpdateFunctionConfiguration" : {
"documentation" : "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.
",
"operationName" : "UpdateFunctionConfiguration",
"deprecated" : false,
"input" : {
"variableName" : "updateFunctionConfigurationRequest",
"variableType" : "UpdateFunctionConfigurationRequest",
"variableDeclarationType" : "UpdateFunctionConfigurationRequest",
"documentation" : "",
"simpleType" : "UpdateFunctionConfigurationRequest",
"variableSetterType" : "UpdateFunctionConfigurationRequest"
},
"inputStreamPropertyName" : null,
"returnType" : {
"returnType" : "UpdateFunctionConfigurationResult",
"documentation" : "A complex type that describes function metadata.
"
},
"exceptions" : [ {
"exceptionName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
"
}, {
"exceptionName" : "ResourceNotFoundException",
"documentation" : "The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
"
}, {
"exceptionName" : "InvalidParameterValueException",
"documentation" : "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.
"
}, {
"exceptionName" : "TooManyRequestsException",
"documentation" : null
} ],
"hasBlobMemberAsPayload" : false,
"authenticated" : true,
"syncReturnType" : "UpdateFunctionConfigurationResult",
"asyncReturnType" : "UpdateFunctionConfigurationResult",
"asyncFutureType" : "java.util.concurrent.Future",
"asyncCallableType" : "java.util.concurrent.Callable",
"asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler",
"methodName" : "updateFunctionConfiguration"
}
},
"shapes" : {
"UpdateFunctionCodeResult" : {
"c2jName" : "FunctionConfiguration",
"documentation" : "A complex type that describes function metadata.
",
"shapeName" : "UpdateFunctionCodeResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the function.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.*/",
"getterDocumentation" : "/**The name of the function.
\n@return The name of the function.*/",
"fluentSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@return The Amazon Resource Name (ARN) assigned to the function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The runtime environment for the Lambda function.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function.
\n@return The runtime environment for the Lambda function.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
}, {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The function Lambda calls to begin executing your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function Lambda calls to begin executing your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.*/",
"getterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@return The function Lambda calls to begin executing your function.*/",
"fluentSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"name" : "CodeSize",
"c2jName" : "CodeSize",
"c2jShape" : "Long",
"variable" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSize",
"marshallLocationName" : "CodeSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.*/",
"getterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@return The size, in bytes, of the function .zip file you uploaded.*/",
"fluentSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The user-provided description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-provided description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.*/",
"getterDocumentation" : "/**The user-provided description.
\n@return The user-provided description.*/",
"fluentSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"getterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@return The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"fluentSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The time stamp of the last time you updated the function.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The time stamp of the last time you updated the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.*/",
"getterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@return The time stamp of the last time you updated the function.*/",
"fluentSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.*/",
"getterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@return It is the SHA256 hash of your function deployment package.*/",
"fluentSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The version of the Lambda function.
",
"name" : "Version",
"c2jName" : "Version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Version",
"marshallLocationName" : "Version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.*/",
"getterDocumentation" : "/**The version of the Lambda function.
\n@return The version of the Lambda function.*/",
"fluentSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "VPC configuration associated with your Lambda function.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfigResponse",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "VPC configuration associated with your Lambda function.
",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"getterModel" : {
"returnType" : "VpcConfigResponse",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.*/",
"getterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@return VPC configuration associated with your Lambda function.*/",
"fluentSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "updateFunctionCodeResult",
"variableType" : "UpdateFunctionCodeResult",
"variableDeclarationType" : "UpdateFunctionCodeResult",
"documentation" : null,
"simpleType" : "UpdateFunctionCodeResult",
"variableSetterType" : "UpdateFunctionCodeResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"VpcConfig" : {
"documentation" : "VPC configuration associated with your Lambda function.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfigResponse",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "VPC configuration associated with your Lambda function.
",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"getterModel" : {
"returnType" : "VpcConfigResponse",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.*/",
"getterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@return VPC configuration associated with your Lambda function.*/",
"fluentSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CodeSha256" : {
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.*/",
"getterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@return It is the SHA256 hash of your function deployment package.*/",
"fluentSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "The user-provided description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-provided description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.*/",
"getterDocumentation" : "/**The user-provided description.
\n@return The user-provided description.*/",
"fluentSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Timeout" : {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Runtime" : {
"documentation" : "The runtime environment for the Lambda function.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function.
\n@return The runtime environment for the Lambda function.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
},
"CodeSize" : {
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"name" : "CodeSize",
"c2jName" : "CodeSize",
"c2jShape" : "Long",
"variable" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSize",
"marshallLocationName" : "CodeSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.*/",
"getterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@return The size, in bytes, of the function .zip file you uploaded.*/",
"fluentSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "The name of the function.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.*/",
"getterDocumentation" : "/**The name of the function.
\n@return The name of the function.*/",
"fluentSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Role" : {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MemorySize" : {
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"getterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@return The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"fluentSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionArn" : {
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@return The Amazon Resource Name (ARN) assigned to the function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastModified" : {
"documentation" : "The time stamp of the last time you updated the function.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The time stamp of the last time you updated the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.*/",
"getterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@return The time stamp of the last time you updated the function.*/",
"fluentSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Version" : {
"documentation" : "The version of the Lambda function.
",
"name" : "Version",
"c2jName" : "Version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Version",
"marshallLocationName" : "Version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.*/",
"getterDocumentation" : "/**The version of the Lambda function.
\n@return The version of the Lambda function.*/",
"fluentSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Handler" : {
"documentation" : "The function Lambda calls to begin executing your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function Lambda calls to begin executing your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.*/",
"getterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@return The function Lambda calls to begin executing your function.*/",
"fluentSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetFunctionConfigurationResult" : {
"c2jName" : "FunctionConfiguration",
"documentation" : "A complex type that describes function metadata.
",
"shapeName" : "GetFunctionConfigurationResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the function.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.*/",
"getterDocumentation" : "/**The name of the function.
\n@return The name of the function.*/",
"fluentSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@return The Amazon Resource Name (ARN) assigned to the function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The runtime environment for the Lambda function.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function.
\n@return The runtime environment for the Lambda function.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
}, {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The function Lambda calls to begin executing your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function Lambda calls to begin executing your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.*/",
"getterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@return The function Lambda calls to begin executing your function.*/",
"fluentSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"name" : "CodeSize",
"c2jName" : "CodeSize",
"c2jShape" : "Long",
"variable" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSize",
"marshallLocationName" : "CodeSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.*/",
"getterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@return The size, in bytes, of the function .zip file you uploaded.*/",
"fluentSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The user-provided description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-provided description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.*/",
"getterDocumentation" : "/**The user-provided description.
\n@return The user-provided description.*/",
"fluentSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"getterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@return The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"fluentSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The time stamp of the last time you updated the function.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The time stamp of the last time you updated the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.*/",
"getterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@return The time stamp of the last time you updated the function.*/",
"fluentSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.*/",
"getterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@return It is the SHA256 hash of your function deployment package.*/",
"fluentSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The version of the Lambda function.
",
"name" : "Version",
"c2jName" : "Version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Version",
"marshallLocationName" : "Version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.*/",
"getterDocumentation" : "/**The version of the Lambda function.
\n@return The version of the Lambda function.*/",
"fluentSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "VPC configuration associated with your Lambda function.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfigResponse",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "VPC configuration associated with your Lambda function.
",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"getterModel" : {
"returnType" : "VpcConfigResponse",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.*/",
"getterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@return VPC configuration associated with your Lambda function.*/",
"fluentSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getFunctionConfigurationResult",
"variableType" : "GetFunctionConfigurationResult",
"variableDeclarationType" : "GetFunctionConfigurationResult",
"documentation" : null,
"simpleType" : "GetFunctionConfigurationResult",
"variableSetterType" : "GetFunctionConfigurationResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"VpcConfig" : {
"documentation" : "VPC configuration associated with your Lambda function.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfigResponse",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "VPC configuration associated with your Lambda function.
",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"getterModel" : {
"returnType" : "VpcConfigResponse",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.*/",
"getterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@return VPC configuration associated with your Lambda function.*/",
"fluentSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CodeSha256" : {
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.*/",
"getterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@return It is the SHA256 hash of your function deployment package.*/",
"fluentSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "The user-provided description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-provided description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.*/",
"getterDocumentation" : "/**The user-provided description.
\n@return The user-provided description.*/",
"fluentSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Timeout" : {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Runtime" : {
"documentation" : "The runtime environment for the Lambda function.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function.
\n@return The runtime environment for the Lambda function.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
},
"CodeSize" : {
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"name" : "CodeSize",
"c2jName" : "CodeSize",
"c2jShape" : "Long",
"variable" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSize",
"marshallLocationName" : "CodeSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.*/",
"getterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@return The size, in bytes, of the function .zip file you uploaded.*/",
"fluentSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "The name of the function.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.*/",
"getterDocumentation" : "/**The name of the function.
\n@return The name of the function.*/",
"fluentSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Role" : {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MemorySize" : {
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"getterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@return The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"fluentSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionArn" : {
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@return The Amazon Resource Name (ARN) assigned to the function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastModified" : {
"documentation" : "The time stamp of the last time you updated the function.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The time stamp of the last time you updated the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.*/",
"getterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@return The time stamp of the last time you updated the function.*/",
"fluentSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Version" : {
"documentation" : "The version of the Lambda function.
",
"name" : "Version",
"c2jName" : "Version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Version",
"marshallLocationName" : "Version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.*/",
"getterDocumentation" : "/**The version of the Lambda function.
\n@return The version of the Lambda function.*/",
"fluentSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Handler" : {
"documentation" : "The function Lambda calls to begin executing your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function Lambda calls to begin executing your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.*/",
"getterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@return The function Lambda calls to begin executing your function.*/",
"fluentSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvokeAsyncRequest" : {
"c2jName" : "InvokeAsyncRequest",
"documentation" : "",
"shapeName" : "InvokeAsyncRequest",
"deprecated" : true,
"required" : [ "FunctionName", "InvokeArgs" ],
"hasPayloadMember" : true,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : true,
"wrapper" : false,
"members" : [ {
"documentation" : "The Lambda function name.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function name.
\n@param functionName The Lambda function name.*/",
"getterDocumentation" : "/**The Lambda function name.
\n@return The Lambda function name.*/",
"fluentSetterDocumentation" : "/**The Lambda function name.
\n@param functionName The Lambda function name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function name.
\n@param functionName The Lambda function name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "JSON that you want to provide to your Lambda function as input.
",
"name" : "InvokeArgs",
"c2jName" : "InvokeArgs",
"c2jShape" : "BlobStream",
"variable" : {
"variableName" : "invokeArgs",
"variableType" : "java.io.InputStream",
"variableDeclarationType" : "java.io.InputStream",
"documentation" : "JSON that you want to provide to your Lambda function as input.
",
"simpleType" : "InputStream",
"variableSetterType" : "java.io.InputStream"
},
"setterModel" : {
"variableName" : "invokeArgs",
"variableType" : "java.io.InputStream",
"variableDeclarationType" : "java.io.InputStream",
"documentation" : "",
"simpleType" : "InputStream",
"variableSetterType" : "java.io.InputStream"
},
"getterModel" : {
"returnType" : "java.io.InputStream",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "InvokeArgs",
"marshallLocationName" : "InvokeArgs",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : true,
"isStreaming" : true,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param invokeArgs JSON that you want to provide to your Lambda function as input.*/",
"getterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@return JSON that you want to provide to your Lambda function as input.*/",
"fluentSetterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param invokeArgs JSON that you want to provide to your Lambda function as input.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param invokeArgs JSON that you want to provide to your Lambda function as input.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invokeAsyncRequest",
"variableType" : "InvokeAsyncRequest",
"variableDeclarationType" : "InvokeAsyncRequest",
"documentation" : null,
"simpleType" : "InvokeAsyncRequest",
"variableSetterType" : "InvokeAsyncRequest"
},
"marshaller" : {
"action" : "InvokeAsync",
"verb" : "POST",
"target" : null,
"requestUri" : "/2014-11-13/functions/{FunctionName}/invoke-async/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"InvokeArgs" : {
"documentation" : "JSON that you want to provide to your Lambda function as input.
",
"name" : "InvokeArgs",
"c2jName" : "InvokeArgs",
"c2jShape" : "BlobStream",
"variable" : {
"variableName" : "invokeArgs",
"variableType" : "java.io.InputStream",
"variableDeclarationType" : "java.io.InputStream",
"documentation" : "JSON that you want to provide to your Lambda function as input.
",
"simpleType" : "InputStream",
"variableSetterType" : "java.io.InputStream"
},
"setterModel" : {
"variableName" : "invokeArgs",
"variableType" : "java.io.InputStream",
"variableDeclarationType" : "java.io.InputStream",
"documentation" : "",
"simpleType" : "InputStream",
"variableSetterType" : "java.io.InputStream"
},
"getterModel" : {
"returnType" : "java.io.InputStream",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "InvokeArgs",
"marshallLocationName" : "InvokeArgs",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : true,
"isStreaming" : true,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param invokeArgs JSON that you want to provide to your Lambda function as input.*/",
"getterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@return JSON that you want to provide to your Lambda function as input.*/",
"fluentSetterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param invokeArgs JSON that you want to provide to your Lambda function as input.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param invokeArgs JSON that you want to provide to your Lambda function as input.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "The Lambda function name.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function name.
\n@param functionName The Lambda function name.*/",
"getterDocumentation" : "/**The Lambda function name.
\n@return The Lambda function name.*/",
"fluentSetterDocumentation" : "/**The Lambda function name.
\n@param functionName The Lambda function name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function name.
\n@param functionName The Lambda function name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteFunctionResult" : {
"c2jName" : "DeleteFunctionResult",
"documentation" : null,
"shapeName" : "DeleteFunctionResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "deleteFunctionResult",
"variableType" : "DeleteFunctionResult",
"variableDeclarationType" : "DeleteFunctionResult",
"documentation" : null,
"simpleType" : "DeleteFunctionResult",
"variableSetterType" : "DeleteFunctionResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"InvokeAsyncResult" : {
"c2jName" : "InvokeAsyncResponse",
"documentation" : "Upon success, it returns empty response. Otherwise, throws an exception.
",
"shapeName" : "InvokeAsyncResult",
"deprecated" : true,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : true,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "It will be 202 upon success.
",
"name" : "Status",
"c2jName" : "Status",
"c2jShape" : "HttpStatus",
"variable" : {
"variableName" : "status",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "It will be 202 upon success.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "status",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Status",
"marshallLocationName" : "Status",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "statusCode",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : true,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It will be 202 upon success.
\n@param status It will be 202 upon success.*/",
"getterDocumentation" : "/**It will be 202 upon success.
\n@return It will be 202 upon success.*/",
"fluentSetterDocumentation" : "/**It will be 202 upon success.
\n@param status It will be 202 upon success.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It will be 202 upon success.
\n@param status It will be 202 upon success.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invokeAsyncResult",
"variableType" : "InvokeAsyncResult",
"variableDeclarationType" : "InvokeAsyncResult",
"documentation" : null,
"simpleType" : "InvokeAsyncResult",
"variableSetterType" : "InvokeAsyncResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Status" : {
"documentation" : "It will be 202 upon success.
",
"name" : "Status",
"c2jName" : "Status",
"c2jShape" : "HttpStatus",
"variable" : {
"variableName" : "status",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "It will be 202 upon success.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "status",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Status",
"marshallLocationName" : "Status",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "statusCode",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : true,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It will be 202 upon success.
\n@param status It will be 202 upon success.*/",
"getterDocumentation" : "/**It will be 202 upon success.
\n@return It will be 202 upon success.*/",
"fluentSetterDocumentation" : "/**It will be 202 upon success.
\n@param status It will be 202 upon success.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It will be 202 upon success.
\n@param status It will be 202 upon success.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UpdateEventSourceMappingRequest" : {
"c2jName" : "UpdateEventSourceMappingRequest",
"documentation" : "",
"shapeName" : "UpdateEventSourceMappingRequest",
"deprecated" : false,
"required" : [ "UUID" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The event source mapping identifier.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The event source mapping identifier.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The event source mapping identifier.
\n@param uUID The event source mapping identifier.*/",
"getterDocumentation" : "/**The event source mapping identifier.
\n@return The event source mapping identifier.*/",
"fluentSetterDocumentation" : "/**The event source mapping identifier.
\n@param uUID The event source mapping identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The event source mapping identifier.
\n@param uUID The event source mapping identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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
).
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.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
).
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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
).
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.
\n@param functionName 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
).
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.*/",
"getterDocumentation" : "/**
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
).
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.
\n@return 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
).
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.*/",
"fluentSetterDocumentation" : "/**
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
).
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.
\n@param functionName 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
).
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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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
).
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.
\n@param functionName 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
).
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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
",
"name" : "Enabled",
"c2jName" : "Enabled",
"c2jShape" : "Enabled",
"variable" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Enabled",
"marshallLocationName" : "Enabled",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
\n@param enabled Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.*/",
"getterDocumentation" : "/**Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
\n@return Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.*/",
"fluentSetterDocumentation" : "/**Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
\n@param enabled Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
\n@param enabled Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The maximum number of stream records that can be sent to your Lambda function for a single invocation.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of stream records that can be sent to your Lambda function for a single invocation.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of stream records that can be sent to your Lambda function for a single invocation.
\n@param batchSize The maximum number of stream records that can be sent to your Lambda function for a single invocation.*/",
"getterDocumentation" : "/**The maximum number of stream records that can be sent to your Lambda function for a single invocation.
\n@return The maximum number of stream records that can be sent to your Lambda function for a single invocation.*/",
"fluentSetterDocumentation" : "/**The maximum number of stream records that can be sent to your Lambda function for a single invocation.
\n@param batchSize The maximum number of stream records that can be sent to your Lambda function for a single invocation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of stream records that can be sent to your Lambda function for a single invocation.
\n@param batchSize The maximum number of stream records that can be sent to your Lambda function for a single invocation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "updateEventSourceMappingRequest",
"variableType" : "UpdateEventSourceMappingRequest",
"variableDeclarationType" : "UpdateEventSourceMappingRequest",
"documentation" : null,
"simpleType" : "UpdateEventSourceMappingRequest",
"variableSetterType" : "UpdateEventSourceMappingRequest"
},
"marshaller" : {
"action" : "UpdateEventSourceMapping",
"verb" : "PUT",
"target" : null,
"requestUri" : "/2015-03-31/event-source-mappings/{UUID}",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Enabled" : {
"documentation" : "Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
",
"name" : "Enabled",
"c2jName" : "Enabled",
"c2jShape" : "Enabled",
"variable" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Enabled",
"marshallLocationName" : "Enabled",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
\n@param enabled Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.*/",
"getterDocumentation" : "/**Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
\n@return Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.*/",
"fluentSetterDocumentation" : "/**Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
\n@param enabled Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
\n@param enabled Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"BatchSize" : {
"documentation" : "The maximum number of stream records that can be sent to your Lambda function for a single invocation.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The maximum number of stream records that can be sent to your Lambda function for a single invocation.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The maximum number of stream records that can be sent to your Lambda function for a single invocation.
\n@param batchSize The maximum number of stream records that can be sent to your Lambda function for a single invocation.*/",
"getterDocumentation" : "/**The maximum number of stream records that can be sent to your Lambda function for a single invocation.
\n@return The maximum number of stream records that can be sent to your Lambda function for a single invocation.*/",
"fluentSetterDocumentation" : "/**The maximum number of stream records that can be sent to your Lambda function for a single invocation.
\n@param batchSize The maximum number of stream records that can be sent to your Lambda function for a single invocation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The maximum number of stream records that can be sent to your Lambda function for a single invocation.
\n@param batchSize The maximum number of stream records that can be sent to your Lambda function for a single invocation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"UUID" : {
"documentation" : "The event source mapping identifier.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The event source mapping identifier.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The event source mapping identifier.
\n@param uUID The event source mapping identifier.*/",
"getterDocumentation" : "/**The event source mapping identifier.
\n@return The event source mapping identifier.*/",
"fluentSetterDocumentation" : "/**The event source mapping identifier.
\n@param uUID The event source mapping identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The event source mapping identifier.
\n@param uUID The event source mapping identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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
).
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.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
).
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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
).
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.
\n@param functionName 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
).
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.*/",
"getterDocumentation" : "/**
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
).
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.
\n@return 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
).
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.*/",
"fluentSetterDocumentation" : "/**
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
).
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.
\n@param functionName 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
).
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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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
).
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.
\n@param functionName 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
).
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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateFunctionRequest" : {
"c2jName" : "CreateFunctionRequest",
"documentation" : "",
"shapeName" : "CreateFunctionRequest",
"deprecated" : false,
"required" : [ "FunctionName", "Runtime", "Role", "Handler", "Code" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "
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 APIs, such as Invoke.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 APIs, such as Invoke.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 APIs, such as Invoke.
\n@param functionName 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 APIs, such as Invoke.*/",
"getterDocumentation" : "/**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 APIs, such as Invoke.
\n@return 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 APIs, such as Invoke.*/",
"fluentSetterDocumentation" : "/**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 APIs, such as Invoke.
\n@param functionName 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 APIs, such as Invoke.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 APIs, such as Invoke.
\n@param functionName 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 APIs, such as Invoke.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The runtime environment for the Lambda function you are uploading.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function you are uploading.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function you are uploading.
\n@param runtime The runtime environment for the Lambda function you are uploading.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function you are uploading.
\n@return The runtime environment for the Lambda function you are uploading.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function you are uploading.
\n@param runtime The runtime environment for the Lambda function you are uploading.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function you are uploading.
\n@param runtime The runtime environment for the Lambda function you are uploading.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
}, {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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).
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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).
\n@param handler 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).*/",
"getterDocumentation" : "/**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).
\n@return 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).*/",
"fluentSetterDocumentation" : "/**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).
\n@param handler 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).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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).
\n@param handler 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).\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The code for the Lambda function.
",
"name" : "Code",
"c2jName" : "Code",
"c2jShape" : "FunctionCode",
"variable" : {
"variableName" : "code",
"variableType" : "FunctionCode",
"variableDeclarationType" : "FunctionCode",
"documentation" : "The code for the Lambda function.
",
"simpleType" : "FunctionCode",
"variableSetterType" : "FunctionCode"
},
"setterModel" : {
"variableName" : "code",
"variableType" : "FunctionCode",
"variableDeclarationType" : "FunctionCode",
"documentation" : "",
"simpleType" : "FunctionCode",
"variableSetterType" : "FunctionCode"
},
"getterModel" : {
"returnType" : "FunctionCode",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Code",
"marshallLocationName" : "Code",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The code for the Lambda function.
\n@param code The code for the Lambda function.*/",
"getterDocumentation" : "/**The code for the Lambda function.
\n@return The code for the Lambda function.*/",
"fluentSetterDocumentation" : "/**The code for the Lambda function.
\n@param code The code for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The code for the Lambda function.
\n@param code The code for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.*/",
"getterDocumentation" : "/**A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
\n@return A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.*/",
"fluentSetterDocumentation" : "/**A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param memorySize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param memorySize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param memorySize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
",
"name" : "Publish",
"c2jName" : "Publish",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "publish",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "publish",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Publish",
"marshallLocationName" : "Publish",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.*/",
"getterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
\n@return This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.*/",
"fluentSetterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfig",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfig",
"variableDeclarationType" : "VpcConfig",
"documentation" : "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.
",
"simpleType" : "VpcConfig",
"variableSetterType" : "VpcConfig"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfig",
"variableDeclarationType" : "VpcConfig",
"documentation" : "",
"simpleType" : "VpcConfig",
"variableSetterType" : "VpcConfig"
},
"getterModel" : {
"returnType" : "VpcConfig",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param vpcConfig 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param vpcConfig 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param vpcConfig 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createFunctionRequest",
"variableType" : "CreateFunctionRequest",
"variableDeclarationType" : "CreateFunctionRequest",
"documentation" : null,
"simpleType" : "CreateFunctionRequest",
"variableSetterType" : "CreateFunctionRequest"
},
"marshaller" : {
"action" : "CreateFunction",
"verb" : "POST",
"target" : null,
"requestUri" : "/2015-03-31/functions",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"VpcConfig" : {
"documentation" : "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.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfig",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfig",
"variableDeclarationType" : "VpcConfig",
"documentation" : "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.
",
"simpleType" : "VpcConfig",
"variableSetterType" : "VpcConfig"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfig",
"variableDeclarationType" : "VpcConfig",
"documentation" : "",
"simpleType" : "VpcConfig",
"variableSetterType" : "VpcConfig"
},
"getterModel" : {
"returnType" : "VpcConfig",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param vpcConfig 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param vpcConfig 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param vpcConfig 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Publish" : {
"documentation" : "This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
",
"name" : "Publish",
"c2jName" : "Publish",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "publish",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "publish",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Publish",
"marshallLocationName" : "Publish",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.*/",
"getterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
\n@return This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.*/",
"fluentSetterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as an atomic operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Timeout" : {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.*/",
"getterDocumentation" : "/**A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
\n@return A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.*/",
"fluentSetterDocumentation" : "/**A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Runtime" : {
"documentation" : "The runtime environment for the Lambda function you are uploading.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function you are uploading.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function you are uploading.
\n@param runtime The runtime environment for the Lambda function you are uploading.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function you are uploading.
\n@return The runtime environment for the Lambda function you are uploading.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function you are uploading.
\n@param runtime The runtime environment for the Lambda function you are uploading.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function you are uploading.
\n@param runtime The runtime environment for the Lambda function you are uploading.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
},
"Role" : {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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 APIs, such as Invoke.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 APIs, such as Invoke.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 APIs, such as Invoke.
\n@param functionName 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 APIs, such as Invoke.*/",
"getterDocumentation" : "/**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 APIs, such as Invoke.
\n@return 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 APIs, such as Invoke.*/",
"fluentSetterDocumentation" : "/**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 APIs, such as Invoke.
\n@param functionName 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 APIs, such as Invoke.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 APIs, such as Invoke.
\n@param functionName 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 APIs, such as Invoke.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MemorySize" : {
"documentation" : "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.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param memorySize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param memorySize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param memorySize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Code" : {
"documentation" : "The code for the Lambda function.
",
"name" : "Code",
"c2jName" : "Code",
"c2jShape" : "FunctionCode",
"variable" : {
"variableName" : "code",
"variableType" : "FunctionCode",
"variableDeclarationType" : "FunctionCode",
"documentation" : "The code for the Lambda function.
",
"simpleType" : "FunctionCode",
"variableSetterType" : "FunctionCode"
},
"setterModel" : {
"variableName" : "code",
"variableType" : "FunctionCode",
"variableDeclarationType" : "FunctionCode",
"documentation" : "",
"simpleType" : "FunctionCode",
"variableSetterType" : "FunctionCode"
},
"getterModel" : {
"returnType" : "FunctionCode",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Code",
"marshallLocationName" : "Code",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The code for the Lambda function.
\n@param code The code for the Lambda function.*/",
"getterDocumentation" : "/**The code for the Lambda function.
\n@return The code for the Lambda function.*/",
"fluentSetterDocumentation" : "/**The code for the Lambda function.
\n@param code The code for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The code for the Lambda function.
\n@param code The code for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Handler" : {
"documentation" : "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).
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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).
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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).
\n@param handler 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).*/",
"getterDocumentation" : "/**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).
\n@return 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).*/",
"fluentSetterDocumentation" : "/**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).
\n@param handler 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).\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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).
\n@param handler 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).\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ResourceConflictException" : {
"c2jName" : "ResourceConflictException",
"documentation" : "The resource already exists.
",
"shapeName" : "ResourceConflictException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "resourceConflictException",
"variableType" : "ResourceConflictException",
"variableDeclarationType" : "ResourceConflictException",
"documentation" : null,
"simpleType" : "ResourceConflictException",
"variableSetterType" : "ResourceConflictException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "ResourceConflictException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"RemovePermissionRequest" : {
"c2jName" : "RemovePermissionRequest",
"documentation" : "",
"shapeName" : "RemovePermissionRequest",
"deprecated" : false,
"required" : [ "FunctionName", "StatementId" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
Statement ID of the permission to remove.
",
"name" : "StatementId",
"c2jName" : "StatementId",
"c2jShape" : "StatementId",
"variable" : {
"variableName" : "statementId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Statement ID of the permission to remove.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "statementId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StatementId",
"marshallLocationName" : "StatementId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Statement ID of the permission to remove.
\n@param statementId Statement ID of the permission to remove.*/",
"getterDocumentation" : "/**Statement ID of the permission to remove.
\n@return Statement ID of the permission to remove.*/",
"fluentSetterDocumentation" : "/**Statement ID of the permission to remove.
\n@param statementId Statement ID of the permission to remove.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Statement ID of the permission to remove.
\n@param statementId Statement ID of the permission to remove.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "removePermissionRequest",
"variableType" : "RemovePermissionRequest",
"variableDeclarationType" : "RemovePermissionRequest",
"documentation" : null,
"simpleType" : "RemovePermissionRequest",
"variableSetterType" : "RemovePermissionRequest"
},
"marshaller" : {
"action" : "RemovePermission",
"verb" : "DELETE",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/policy/{StatementId}",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StatementId" : {
"documentation" : "Statement ID of the permission to remove.
",
"name" : "StatementId",
"c2jName" : "StatementId",
"c2jShape" : "StatementId",
"variable" : {
"variableName" : "statementId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Statement ID of the permission to remove.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "statementId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StatementId",
"marshallLocationName" : "StatementId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Statement ID of the permission to remove.
\n@param statementId Statement ID of the permission to remove.*/",
"getterDocumentation" : "/**Statement ID of the permission to remove.
\n@return Statement ID of the permission to remove.*/",
"fluentSetterDocumentation" : "/**Statement ID of the permission to remove.
\n@param statementId Statement ID of the permission to remove.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Statement ID of the permission to remove.
\n@param statementId Statement ID of the permission to remove.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Qualifier" : {
"documentation" : "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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteEventSourceMappingRequest" : {
"c2jName" : "DeleteEventSourceMappingRequest",
"documentation" : "",
"shapeName" : "DeleteEventSourceMappingRequest",
"deprecated" : false,
"required" : [ "UUID" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "
The event source mapping ID.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The event source mapping ID.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The event source mapping ID.
\n@param uUID The event source mapping ID.*/",
"getterDocumentation" : "/**The event source mapping ID.
\n@return The event source mapping ID.*/",
"fluentSetterDocumentation" : "/**The event source mapping ID.
\n@param uUID The event source mapping ID.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The event source mapping ID.
\n@param uUID The event source mapping ID.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "deleteEventSourceMappingRequest",
"variableType" : "DeleteEventSourceMappingRequest",
"variableDeclarationType" : "DeleteEventSourceMappingRequest",
"documentation" : null,
"simpleType" : "DeleteEventSourceMappingRequest",
"variableSetterType" : "DeleteEventSourceMappingRequest"
},
"marshaller" : {
"action" : "DeleteEventSourceMapping",
"verb" : "DELETE",
"target" : null,
"requestUri" : "/2015-03-31/event-source-mappings/{UUID}",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"UUID" : {
"documentation" : "The event source mapping ID.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The event source mapping ID.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The event source mapping ID.
\n@param uUID The event source mapping ID.*/",
"getterDocumentation" : "/**The event source mapping ID.
\n@return The event source mapping ID.*/",
"fluentSetterDocumentation" : "/**The event source mapping ID.
\n@param uUID The event source mapping ID.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The event source mapping ID.
\n@param uUID The event source mapping ID.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CodeStorageExceededException" : {
"c2jName" : "CodeStorageExceededException",
"documentation" : "You have exceeded your maximum total code size per account. Limits
",
"shapeName" : "CodeStorageExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "codeStorageExceededException",
"variableType" : "CodeStorageExceededException",
"variableDeclarationType" : "CodeStorageExceededException",
"documentation" : null,
"simpleType" : "CodeStorageExceededException",
"variableSetterType" : "CodeStorageExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "CodeStorageExceededException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetFunctionConfigurationRequest" : {
"c2jName" : "GetFunctionConfigurationRequest",
"documentation" : "",
"shapeName" : "GetFunctionConfigurationRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getFunctionConfigurationRequest",
"variableType" : "GetFunctionConfigurationRequest",
"variableDeclarationType" : "GetFunctionConfigurationRequest",
"documentation" : null,
"simpleType" : "GetFunctionConfigurationRequest",
"variableSetterType" : "GetFunctionConfigurationRequest"
},
"marshaller" : {
"action" : "GetFunctionConfiguration",
"verb" : "GET",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/configuration",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Qualifier" : {
"documentation" : "
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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "
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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"VpcConfigResponse" : {
"c2jName" : "VpcConfigResponse",
"documentation" : "
VPC configuration associated with your Lambda function.
",
"shapeName" : "VpcConfigResponse",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of subnet IDs associated with the Lambda function.
",
"name" : "SubnetIds",
"c2jName" : "SubnetIds",
"c2jShape" : "SubnetIds",
"variable" : {
"variableName" : "subnetIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of subnet IDs associated with the Lambda function.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "subnetIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SubnetIds",
"marshallLocationName" : "SubnetIds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of subnet IDs associated with the Lambda function.
\n@param subnetIds A list of subnet IDs associated with the Lambda function.*/",
"getterDocumentation" : "/**A list of subnet IDs associated with the Lambda function.
\n@return A list of subnet IDs associated with the Lambda function.*/",
"fluentSetterDocumentation" : "/**A list of subnet IDs associated with the Lambda function.
\n@param subnetIds A list of subnet IDs associated with the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of subnet IDs associated with the Lambda function.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSubnetIds(java.util.Collection)} or {@link #withSubnetIds(java.util.Collection)} if you want to override the existing values.
\n@param subnetIds A list of subnet IDs associated with the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of security group IDs associated with the Lambda function.
",
"name" : "SecurityGroupIds",
"c2jName" : "SecurityGroupIds",
"c2jShape" : "SecurityGroupIds",
"variable" : {
"variableName" : "securityGroupIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of security group IDs associated with the Lambda function.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "securityGroupIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SecurityGroupIds",
"marshallLocationName" : "SecurityGroupIds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SecurityGroupId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of security group IDs associated with the Lambda function.
\n@param securityGroupIds A list of security group IDs associated with the Lambda function.*/",
"getterDocumentation" : "/**A list of security group IDs associated with the Lambda function.
\n@return A list of security group IDs associated with the Lambda function.*/",
"fluentSetterDocumentation" : "/**A list of security group IDs associated with the Lambda function.
\n@param securityGroupIds A list of security group IDs associated with the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of security group IDs associated with the Lambda function.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you want to override the existing values.
\n@param securityGroupIds A list of security group IDs associated with the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The VPC ID associated with you Lambda function.
",
"name" : "VpcId",
"c2jName" : "VpcId",
"c2jShape" : "VpcId",
"variable" : {
"variableName" : "vpcId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The VPC ID associated with you Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "vpcId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcId",
"marshallLocationName" : "VpcId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The VPC ID associated with you Lambda function.
\n@param vpcId The VPC ID associated with you Lambda function.*/",
"getterDocumentation" : "/**The VPC ID associated with you Lambda function.
\n@return The VPC ID associated with you Lambda function.*/",
"fluentSetterDocumentation" : "/**The VPC ID associated with you Lambda function.
\n@param vpcId The VPC ID associated with you Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The VPC ID associated with you Lambda function.
\n@param vpcId The VPC ID associated with you Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "vpcConfigResponse",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : null,
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"SecurityGroupIds" : {
"documentation" : "A list of security group IDs associated with the Lambda function.
",
"name" : "SecurityGroupIds",
"c2jName" : "SecurityGroupIds",
"c2jShape" : "SecurityGroupIds",
"variable" : {
"variableName" : "securityGroupIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of security group IDs associated with the Lambda function.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "securityGroupIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SecurityGroupIds",
"marshallLocationName" : "SecurityGroupIds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SecurityGroupId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of security group IDs associated with the Lambda function.
\n@param securityGroupIds A list of security group IDs associated with the Lambda function.*/",
"getterDocumentation" : "/**A list of security group IDs associated with the Lambda function.
\n@return A list of security group IDs associated with the Lambda function.*/",
"fluentSetterDocumentation" : "/**A list of security group IDs associated with the Lambda function.
\n@param securityGroupIds A list of security group IDs associated with the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of security group IDs associated with the Lambda function.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you want to override the existing values.
\n@param securityGroupIds A list of security group IDs associated with the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"SubnetIds" : {
"documentation" : "A list of subnet IDs associated with the Lambda function.
",
"name" : "SubnetIds",
"c2jName" : "SubnetIds",
"c2jShape" : "SubnetIds",
"variable" : {
"variableName" : "subnetIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of subnet IDs associated with the Lambda function.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "subnetIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SubnetIds",
"marshallLocationName" : "SubnetIds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of subnet IDs associated with the Lambda function.
\n@param subnetIds A list of subnet IDs associated with the Lambda function.*/",
"getterDocumentation" : "/**A list of subnet IDs associated with the Lambda function.
\n@return A list of subnet IDs associated with the Lambda function.*/",
"fluentSetterDocumentation" : "/**A list of subnet IDs associated with the Lambda function.
\n@param subnetIds A list of subnet IDs associated with the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of subnet IDs associated with the Lambda function.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSubnetIds(java.util.Collection)} or {@link #withSubnetIds(java.util.Collection)} if you want to override the existing values.
\n@param subnetIds A list of subnet IDs associated with the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"VpcId" : {
"documentation" : "The VPC ID associated with you Lambda function.
",
"name" : "VpcId",
"c2jName" : "VpcId",
"c2jShape" : "VpcId",
"variable" : {
"variableName" : "vpcId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The VPC ID associated with you Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "vpcId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcId",
"marshallLocationName" : "VpcId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The VPC ID associated with you Lambda function.
\n@param vpcId The VPC ID associated with you Lambda function.*/",
"getterDocumentation" : "/**The VPC ID associated with you Lambda function.
\n@return The VPC ID associated with you Lambda function.*/",
"fluentSetterDocumentation" : "/**The VPC ID associated with you Lambda function.
\n@param vpcId The VPC ID associated with you Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The VPC ID associated with you Lambda function.
\n@param vpcId The VPC ID associated with you Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateFunctionResult" : {
"c2jName" : "FunctionConfiguration",
"documentation" : "A complex type that describes function metadata.
",
"shapeName" : "CreateFunctionResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the function.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.*/",
"getterDocumentation" : "/**The name of the function.
\n@return The name of the function.*/",
"fluentSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@return The Amazon Resource Name (ARN) assigned to the function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The runtime environment for the Lambda function.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function.
\n@return The runtime environment for the Lambda function.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
}, {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The function Lambda calls to begin executing your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function Lambda calls to begin executing your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.*/",
"getterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@return The function Lambda calls to begin executing your function.*/",
"fluentSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"name" : "CodeSize",
"c2jName" : "CodeSize",
"c2jShape" : "Long",
"variable" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSize",
"marshallLocationName" : "CodeSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.*/",
"getterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@return The size, in bytes, of the function .zip file you uploaded.*/",
"fluentSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The user-provided description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-provided description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.*/",
"getterDocumentation" : "/**The user-provided description.
\n@return The user-provided description.*/",
"fluentSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"getterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@return The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"fluentSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The time stamp of the last time you updated the function.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The time stamp of the last time you updated the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.*/",
"getterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@return The time stamp of the last time you updated the function.*/",
"fluentSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.*/",
"getterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@return It is the SHA256 hash of your function deployment package.*/",
"fluentSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The version of the Lambda function.
",
"name" : "Version",
"c2jName" : "Version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Version",
"marshallLocationName" : "Version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.*/",
"getterDocumentation" : "/**The version of the Lambda function.
\n@return The version of the Lambda function.*/",
"fluentSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "VPC configuration associated with your Lambda function.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfigResponse",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "VPC configuration associated with your Lambda function.
",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"getterModel" : {
"returnType" : "VpcConfigResponse",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.*/",
"getterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@return VPC configuration associated with your Lambda function.*/",
"fluentSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createFunctionResult",
"variableType" : "CreateFunctionResult",
"variableDeclarationType" : "CreateFunctionResult",
"documentation" : null,
"simpleType" : "CreateFunctionResult",
"variableSetterType" : "CreateFunctionResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"VpcConfig" : {
"documentation" : "VPC configuration associated with your Lambda function.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfigResponse",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "VPC configuration associated with your Lambda function.
",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"getterModel" : {
"returnType" : "VpcConfigResponse",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.*/",
"getterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@return VPC configuration associated with your Lambda function.*/",
"fluentSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CodeSha256" : {
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.*/",
"getterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@return It is the SHA256 hash of your function deployment package.*/",
"fluentSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "The user-provided description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-provided description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.*/",
"getterDocumentation" : "/**The user-provided description.
\n@return The user-provided description.*/",
"fluentSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Timeout" : {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Runtime" : {
"documentation" : "The runtime environment for the Lambda function.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function.
\n@return The runtime environment for the Lambda function.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
},
"CodeSize" : {
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"name" : "CodeSize",
"c2jName" : "CodeSize",
"c2jShape" : "Long",
"variable" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSize",
"marshallLocationName" : "CodeSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.*/",
"getterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@return The size, in bytes, of the function .zip file you uploaded.*/",
"fluentSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "The name of the function.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.*/",
"getterDocumentation" : "/**The name of the function.
\n@return The name of the function.*/",
"fluentSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Role" : {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MemorySize" : {
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"getterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@return The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"fluentSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionArn" : {
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@return The Amazon Resource Name (ARN) assigned to the function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastModified" : {
"documentation" : "The time stamp of the last time you updated the function.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The time stamp of the last time you updated the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.*/",
"getterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@return The time stamp of the last time you updated the function.*/",
"fluentSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Version" : {
"documentation" : "The version of the Lambda function.
",
"name" : "Version",
"c2jName" : "Version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Version",
"marshallLocationName" : "Version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.*/",
"getterDocumentation" : "/**The version of the Lambda function.
\n@return The version of the Lambda function.*/",
"fluentSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Handler" : {
"documentation" : "The function Lambda calls to begin executing your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function Lambda calls to begin executing your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.*/",
"getterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@return The function Lambda calls to begin executing your function.*/",
"fluentSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvokeRequest" : {
"c2jName" : "InvocationRequest",
"documentation" : "",
"shapeName" : "InvokeRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : true,
"hasHeaderMember" : true,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
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.
",
"name" : "InvocationType",
"c2jName" : "InvocationType",
"c2jShape" : "InvocationType",
"variable" : {
"variableName" : "invocationType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "invocationType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "X-Amz-Invocation-Type",
"marshallLocationName" : "X-Amz-Invocation-Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "header",
"flattened" : false,
"header" : true,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "InvocationType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param invocationType 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.\n@see InvocationType*/",
"getterDocumentation" : "/**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.
\n@return 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.\n@see InvocationType*/",
"fluentSetterDocumentation" : "/**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.
\n@param invocationType 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.\n@return Returns a reference to this object so that method calls can be chained together.\n@see InvocationType*/",
"varargSetterDocumentation" : "/**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.
\n@param invocationType 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.\n@return Returns a reference to this object so that method calls can be chained together.\n@see InvocationType*/"
}, {
"documentation" : "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-results
header.
",
"name" : "LogType",
"c2jName" : "LogType",
"c2jShape" : "LogType",
"variable" : {
"variableName" : "logType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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-results
header.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "logType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "X-Amz-Log-Type",
"marshallLocationName" : "X-Amz-Log-Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "header",
"flattened" : false,
"header" : true,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LogType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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-results
header.
\n@param logType 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-results
header.\n@see LogType*/",
"getterDocumentation" : "/**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-results
header.
\n@return 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-results
header.\n@see LogType*/",
"fluentSetterDocumentation" : "/**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-results
header.
\n@param logType 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-results
header.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LogType*/",
"varargSetterDocumentation" : "/**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-results
header.
\n@param logType 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-results
header.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LogType*/"
}, {
"documentation" : "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.
",
"name" : "ClientContext",
"c2jName" : "ClientContext",
"c2jShape" : "String",
"variable" : {
"variableName" : "clientContext",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "clientContext",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "X-Amz-Client-Context",
"marshallLocationName" : "X-Amz-Client-Context",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "header",
"flattened" : false,
"header" : true,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param clientContext 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param clientContext 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param clientContext 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
JSON that you want to provide to your Lambda function as input.
",
"name" : "Payload",
"c2jName" : "Payload",
"c2jShape" : "Blob",
"variable" : {
"variableName" : "payload",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "JSON that you want to provide to your Lambda function as input.
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "payload",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Payload",
"marshallLocationName" : "Payload",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : true,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param payload JSON that you want to provide to your Lambda function as input.*/",
"getterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return JSON that you want to provide to your Lambda function as input.*/",
"fluentSetterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param payload JSON that you want to provide to your Lambda function as input.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param payload JSON that you want to provide to your Lambda function as input.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invokeRequest",
"variableType" : "InvokeRequest",
"variableDeclarationType" : "InvokeRequest",
"documentation" : null,
"simpleType" : "InvokeRequest",
"variableSetterType" : "InvokeRequest"
},
"marshaller" : {
"action" : "Invoke",
"verb" : "POST",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/invocations",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Payload" : {
"documentation" : "
JSON that you want to provide to your Lambda function as input.
",
"name" : "Payload",
"c2jName" : "Payload",
"c2jShape" : "Blob",
"variable" : {
"variableName" : "payload",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "JSON that you want to provide to your Lambda function as input.
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "payload",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Payload",
"marshallLocationName" : "Payload",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : true,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param payload JSON that you want to provide to your Lambda function as input.*/",
"getterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return JSON that you want to provide to your Lambda function as input.*/",
"fluentSetterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param payload JSON that you want to provide to your Lambda function as input.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**JSON that you want to provide to your Lambda function as input.
\n@param payload JSON that you want to provide to your Lambda function as input.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ClientContext" : {
"documentation" : "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.
",
"name" : "ClientContext",
"c2jName" : "ClientContext",
"c2jShape" : "String",
"variable" : {
"variableName" : "clientContext",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "clientContext",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "X-Amz-Client-Context",
"marshallLocationName" : "X-Amz-Client-Context",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "header",
"flattened" : false,
"header" : true,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param clientContext 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param clientContext 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param clientContext 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Qualifier" : {
"documentation" : "
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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "
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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LogType" : {
"documentation" : "
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-results
header.
",
"name" : "LogType",
"c2jName" : "LogType",
"c2jShape" : "LogType",
"variable" : {
"variableName" : "logType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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-results
header.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "logType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "X-Amz-Log-Type",
"marshallLocationName" : "X-Amz-Log-Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "header",
"flattened" : false,
"header" : true,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "LogType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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-results
header.
\n@param logType 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-results
header.\n@see LogType*/",
"getterDocumentation" : "/**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-results
header.
\n@return 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-results
header.\n@see LogType*/",
"fluentSetterDocumentation" : "/**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-results
header.
\n@param logType 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-results
header.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LogType*/",
"varargSetterDocumentation" : "/**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-results
header.
\n@param logType 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-results
header.\n@return Returns a reference to this object so that method calls can be chained together.\n@see LogType*/"
},
"InvocationType" : {
"documentation" : "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.
",
"name" : "InvocationType",
"c2jName" : "InvocationType",
"c2jShape" : "InvocationType",
"variable" : {
"variableName" : "invocationType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "invocationType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "X-Amz-Invocation-Type",
"marshallLocationName" : "X-Amz-Invocation-Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "header",
"flattened" : false,
"header" : true,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "InvocationType",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param invocationType 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.\n@see InvocationType*/",
"getterDocumentation" : "/**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.
\n@return 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.\n@see InvocationType*/",
"fluentSetterDocumentation" : "/**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.
\n@param invocationType 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.\n@return Returns a reference to this object so that method calls can be chained together.\n@see InvocationType*/",
"varargSetterDocumentation" : "/**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.
\n@param invocationType 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.\n@return Returns a reference to this object so that method calls can be chained together.\n@see InvocationType*/"
}
}
},
"ServiceException" : {
"c2jName" : "ServiceException",
"documentation" : "The AWS Lambda service encountered an internal error.
",
"shapeName" : "ServiceException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "serviceException",
"variableType" : "ServiceException",
"variableDeclarationType" : "ServiceException",
"documentation" : null,
"simpleType" : "ServiceException",
"variableSetterType" : "ServiceException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "ServiceException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UpdateFunctionConfigurationRequest" : {
"c2jName" : "UpdateFunctionConfigurationRequest",
"documentation" : "",
"shapeName" : "UpdateFunctionConfigurationRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param functionName 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param functionName 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param functionName 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
\n@param role The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
\n@return The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
\n@param role The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
\n@param role The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
\n@param handler The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.*/",
"getterDocumentation" : "/**The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
\n@return The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.*/",
"fluentSetterDocumentation" : "/**The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
\n@param handler The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
\n@param handler The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.*/",
"getterDocumentation" : "/**A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
\n@return A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.*/",
"fluentSetterDocumentation" : "/**A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param memorySize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param memorySize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param memorySize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfig",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfig",
"variableDeclarationType" : "VpcConfig",
"documentation" : "",
"simpleType" : "VpcConfig",
"variableSetterType" : "VpcConfig"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfig",
"variableDeclarationType" : "VpcConfig",
"documentation" : "",
"simpleType" : "VpcConfig",
"variableSetterType" : "VpcConfig"
},
"getterModel" : {
"returnType" : "VpcConfig",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param vpcConfig */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param vpcConfig \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param vpcConfig \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param runtime \n@see Runtime*/",
"getterDocumentation" : "/**\n@return \n@see Runtime*/",
"fluentSetterDocumentation" : "/**\n@param runtime \n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**\n@param runtime \n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "updateFunctionConfigurationRequest",
"variableType" : "UpdateFunctionConfigurationRequest",
"variableDeclarationType" : "UpdateFunctionConfigurationRequest",
"documentation" : null,
"simpleType" : "UpdateFunctionConfigurationRequest",
"variableSetterType" : "UpdateFunctionConfigurationRequest"
},
"marshaller" : {
"action" : "UpdateFunctionConfiguration",
"verb" : "PUT",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/configuration",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"VpcConfig" : {
"documentation" : "",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfig",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfig",
"variableDeclarationType" : "VpcConfig",
"documentation" : "",
"simpleType" : "VpcConfig",
"variableSetterType" : "VpcConfig"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfig",
"variableDeclarationType" : "VpcConfig",
"documentation" : "",
"simpleType" : "VpcConfig",
"variableSetterType" : "VpcConfig"
},
"getterModel" : {
"returnType" : "VpcConfig",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param vpcConfig */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param vpcConfig \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param vpcConfig \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Timeout" : {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.*/",
"getterDocumentation" : "/**A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
\n@return A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.*/",
"fluentSetterDocumentation" : "/**A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
\n@param description A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Runtime" : {
"documentation" : "",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param runtime \n@see Runtime*/",
"getterDocumentation" : "/**\n@return \n@see Runtime*/",
"fluentSetterDocumentation" : "/**\n@param runtime \n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**\n@param runtime \n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
},
"Role" : {
"documentation" : "The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
\n@param role The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
\n@return The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
\n@param role The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
\n@param role The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param functionName 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param functionName 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param functionName 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MemorySize" : {
"documentation" : "
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.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param memorySize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param memorySize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param memorySize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Handler" : {
"documentation" : "The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
\n@param handler The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.*/",
"getterDocumentation" : "/**The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
\n@return The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.*/",
"fluentSetterDocumentation" : "/**The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
\n@param handler The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.
\n@param handler The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export
value in your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"RequestTooLargeException" : {
"c2jName" : "RequestTooLargeException",
"documentation" : "The request payload exceeded the Invoke
request body JSON input limit. For more information, see Limits.
",
"shapeName" : "RequestTooLargeException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "requestTooLargeException",
"variableType" : "RequestTooLargeException",
"variableDeclarationType" : "RequestTooLargeException",
"documentation" : null,
"simpleType" : "RequestTooLargeException",
"variableSetterType" : "RequestTooLargeException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "RequestTooLargeException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteAliasRequest" : {
"c2jName" : "DeleteAliasRequest",
"documentation" : "",
"shapeName" : "DeleteAliasRequest",
"deprecated" : false,
"required" : [ "FunctionName", "Name" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
\n@param functionName The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.*/",
"getterDocumentation" : "/**The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
\n@return The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.*/",
"fluentSetterDocumentation" : "/**The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
\n@param functionName The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
\n@param functionName The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Name of the alias to delete.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Name of the alias to delete.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Name of the alias to delete.
\n@param name Name of the alias to delete.*/",
"getterDocumentation" : "/**Name of the alias to delete.
\n@return Name of the alias to delete.*/",
"fluentSetterDocumentation" : "/**Name of the alias to delete.
\n@param name Name of the alias to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Name of the alias to delete.
\n@param name Name of the alias to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "deleteAliasRequest",
"variableType" : "DeleteAliasRequest",
"variableDeclarationType" : "DeleteAliasRequest",
"documentation" : null,
"simpleType" : "DeleteAliasRequest",
"variableSetterType" : "DeleteAliasRequest"
},
"marshaller" : {
"action" : "DeleteAlias",
"verb" : "DELETE",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/aliases/{Name}",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Name" : {
"documentation" : "Name of the alias to delete.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Name of the alias to delete.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Name of the alias to delete.
\n@param name Name of the alias to delete.*/",
"getterDocumentation" : "/**Name of the alias to delete.
\n@return Name of the alias to delete.*/",
"fluentSetterDocumentation" : "/**Name of the alias to delete.
\n@param name Name of the alias to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Name of the alias to delete.
\n@param name Name of the alias to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
\n@param functionName The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.*/",
"getterDocumentation" : "/**The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
\n@return The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.*/",
"fluentSetterDocumentation" : "/**The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
\n@param functionName The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.
\n@param functionName The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateEventSourceMappingResult" : {
"c2jName" : "EventSourceMappingConfiguration",
"documentation" : "Describes mapping between an Amazon Kinesis stream and a Lambda function.
",
"shapeName" : "CreateEventSourceMappingResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@return The AWS Lambda assigned opaque identifier for the mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"getterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@return The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"fluentSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Date",
"variable" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.*/",
"getterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@return The UTC time string indicating the last time the event mapping was updated.*/",
"fluentSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"name" : "LastProcessingResult",
"c2jName" : "LastProcessingResult",
"c2jShape" : "String",
"variable" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastProcessingResult",
"marshallLocationName" : "LastProcessingResult",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.*/",
"getterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@return The result of the last AWS Lambda invocation of your Lambda function.*/",
"fluentSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"name" : "State",
"c2jName" : "State",
"c2jShape" : "String",
"variable" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "State",
"marshallLocationName" : "State",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"getterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@return The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"fluentSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"name" : "StateTransitionReason",
"c2jName" : "StateTransitionReason",
"c2jShape" : "String",
"variable" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StateTransitionReason",
"marshallLocationName" : "StateTransitionReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"getterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@return The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"fluentSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createEventSourceMappingResult",
"variableType" : "CreateEventSourceMappingResult",
"variableDeclarationType" : "CreateEventSourceMappingResult",
"documentation" : null,
"simpleType" : "CreateEventSourceMappingResult",
"variableSetterType" : "CreateEventSourceMappingResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StateTransitionReason" : {
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"name" : "StateTransitionReason",
"c2jName" : "StateTransitionReason",
"c2jShape" : "String",
"variable" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StateTransitionReason",
"marshallLocationName" : "StateTransitionReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"getterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@return The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"fluentSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"State" : {
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"name" : "State",
"c2jName" : "State",
"c2jShape" : "String",
"variable" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "State",
"marshallLocationName" : "State",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"getterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@return The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"fluentSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"BatchSize" : {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"UUID" : {
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@return The AWS Lambda assigned opaque identifier for the mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastModified" : {
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Date",
"variable" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.*/",
"getterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@return The UTC time string indicating the last time the event mapping was updated.*/",
"fluentSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionArn" : {
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"getterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@return The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"fluentSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastProcessingResult" : {
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"name" : "LastProcessingResult",
"c2jName" : "LastProcessingResult",
"c2jShape" : "String",
"variable" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastProcessingResult",
"marshallLocationName" : "LastProcessingResult",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.*/",
"getterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@return The result of the last AWS Lambda invocation of your Lambda function.*/",
"fluentSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EventSourceArn" : {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetEventSourceMappingRequest" : {
"c2jName" : "GetEventSourceMappingRequest",
"documentation" : "",
"shapeName" : "GetEventSourceMappingRequest",
"deprecated" : false,
"required" : [ "UUID" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The AWS Lambda assigned ID of the event source mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned ID of the event source mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned ID of the event source mapping.
\n@param uUID The AWS Lambda assigned ID of the event source mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned ID of the event source mapping.
\n@return The AWS Lambda assigned ID of the event source mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned ID of the event source mapping.
\n@param uUID The AWS Lambda assigned ID of the event source mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned ID of the event source mapping.
\n@param uUID The AWS Lambda assigned ID of the event source mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getEventSourceMappingRequest",
"variableType" : "GetEventSourceMappingRequest",
"variableDeclarationType" : "GetEventSourceMappingRequest",
"documentation" : null,
"simpleType" : "GetEventSourceMappingRequest",
"variableSetterType" : "GetEventSourceMappingRequest"
},
"marshaller" : {
"action" : "GetEventSourceMapping",
"verb" : "GET",
"target" : null,
"requestUri" : "/2015-03-31/event-source-mappings/{UUID}",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"UUID" : {
"documentation" : "The AWS Lambda assigned ID of the event source mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned ID of the event source mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned ID of the event source mapping.
\n@param uUID The AWS Lambda assigned ID of the event source mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned ID of the event source mapping.
\n@return The AWS Lambda assigned ID of the event source mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned ID of the event source mapping.
\n@param uUID The AWS Lambda assigned ID of the event source mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned ID of the event source mapping.
\n@param uUID The AWS Lambda assigned ID of the event source mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListEventSourceMappingsResult" : {
"c2jName" : "ListEventSourceMappingsResponse",
"documentation" : "Contains a list of event sources (see API_EventSourceMappingConfiguration)
",
"shapeName" : "ListEventSourceMappingsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A string, present if there are more event source mappings.
",
"name" : "NextMarker",
"c2jName" : "NextMarker",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string, present if there are more event source mappings.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextMarker",
"marshallLocationName" : "NextMarker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if there are more event source mappings.
\n@param nextMarker A string, present if there are more event source mappings.*/",
"getterDocumentation" : "/**A string, present if there are more event source mappings.
\n@return A string, present if there are more event source mappings.*/",
"fluentSetterDocumentation" : "/**A string, present if there are more event source mappings.
\n@param nextMarker A string, present if there are more event source mappings.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string, present if there are more event source mappings.
\n@param nextMarker A string, present if there are more event source mappings.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "An array of EventSourceMappingConfiguration
objects.
",
"name" : "EventSourceMappings",
"c2jName" : "EventSourceMappings",
"c2jShape" : "EventSourceMappingsList",
"variable" : {
"variableName" : "eventSourceMappings",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "An array of EventSourceMappingConfiguration
objects.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "eventSourceMappings",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceMappings",
"marshallLocationName" : "EventSourceMappings",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "EventSourceMappingConfiguration",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "EventSourceMappingConfiguration",
"variable" : {
"variableName" : "member",
"variableType" : "EventSourceMappingConfiguration",
"variableDeclarationType" : "EventSourceMappingConfiguration",
"documentation" : "",
"simpleType" : "EventSourceMappingConfiguration",
"variableSetterType" : "EventSourceMappingConfiguration"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "EventSourceMappingConfiguration",
"variableDeclarationType" : "EventSourceMappingConfiguration",
"documentation" : "",
"simpleType" : "EventSourceMappingConfiguration",
"variableSetterType" : "EventSourceMappingConfiguration"
},
"getterModel" : {
"returnType" : "EventSourceMappingConfiguration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "EventSourceMappingConfiguration"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**An array of EventSourceMappingConfiguration
objects.
\n@param eventSourceMappings An array of EventSourceMappingConfiguration
objects.*/",
"getterDocumentation" : "/**An array of EventSourceMappingConfiguration
objects.
\n@return An array of EventSourceMappingConfiguration
objects.*/",
"fluentSetterDocumentation" : "/**An array of EventSourceMappingConfiguration
objects.
\n@param eventSourceMappings An array of EventSourceMappingConfiguration
objects.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An array of EventSourceMappingConfiguration
objects.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setEventSourceMappings(java.util.Collection)} or {@link #withEventSourceMappings(java.util.Collection)} if you want to override the existing values.
\n@param eventSourceMappings An array of EventSourceMappingConfiguration
objects.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listEventSourceMappingsResult",
"variableType" : "ListEventSourceMappingsResult",
"variableDeclarationType" : "ListEventSourceMappingsResult",
"documentation" : null,
"simpleType" : "ListEventSourceMappingsResult",
"variableSetterType" : "ListEventSourceMappingsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"EventSourceMappings" : {
"documentation" : "An array of EventSourceMappingConfiguration
objects.
",
"name" : "EventSourceMappings",
"c2jName" : "EventSourceMappings",
"c2jShape" : "EventSourceMappingsList",
"variable" : {
"variableName" : "eventSourceMappings",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "An array of EventSourceMappingConfiguration
objects.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "eventSourceMappings",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceMappings",
"marshallLocationName" : "EventSourceMappings",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "EventSourceMappingConfiguration",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "EventSourceMappingConfiguration",
"variable" : {
"variableName" : "member",
"variableType" : "EventSourceMappingConfiguration",
"variableDeclarationType" : "EventSourceMappingConfiguration",
"documentation" : "",
"simpleType" : "EventSourceMappingConfiguration",
"variableSetterType" : "EventSourceMappingConfiguration"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "EventSourceMappingConfiguration",
"variableDeclarationType" : "EventSourceMappingConfiguration",
"documentation" : "",
"simpleType" : "EventSourceMappingConfiguration",
"variableSetterType" : "EventSourceMappingConfiguration"
},
"getterModel" : {
"returnType" : "EventSourceMappingConfiguration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "EventSourceMappingConfiguration"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**An array of EventSourceMappingConfiguration
objects.
\n@param eventSourceMappings An array of EventSourceMappingConfiguration
objects.*/",
"getterDocumentation" : "/**An array of EventSourceMappingConfiguration
objects.
\n@return An array of EventSourceMappingConfiguration
objects.*/",
"fluentSetterDocumentation" : "/**An array of EventSourceMappingConfiguration
objects.
\n@param eventSourceMappings An array of EventSourceMappingConfiguration
objects.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**An array of EventSourceMappingConfiguration
objects.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setEventSourceMappings(java.util.Collection)} or {@link #withEventSourceMappings(java.util.Collection)} if you want to override the existing values.
\n@param eventSourceMappings An array of EventSourceMappingConfiguration
objects.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"NextMarker" : {
"documentation" : "A string, present if there are more event source mappings.
",
"name" : "NextMarker",
"c2jName" : "NextMarker",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string, present if there are more event source mappings.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextMarker",
"marshallLocationName" : "NextMarker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if there are more event source mappings.
\n@param nextMarker A string, present if there are more event source mappings.*/",
"getterDocumentation" : "/**A string, present if there are more event source mappings.
\n@return A string, present if there are more event source mappings.*/",
"fluentSetterDocumentation" : "/**A string, present if there are more event source mappings.
\n@param nextMarker A string, present if there are more event source mappings.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string, present if there are more event source mappings.
\n@param nextMarker A string, present if there are more event source mappings.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidSecurityGroupIDException" : {
"c2jName" : "InvalidSecurityGroupIDException",
"documentation" : "The Security Group ID provided in the Lambda function VPC configuration is invalid.
",
"shapeName" : "InvalidSecurityGroupIDException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invalidSecurityGroupIDException",
"variableType" : "InvalidSecurityGroupIDException",
"variableDeclarationType" : "InvalidSecurityGroupIDException",
"documentation" : null,
"simpleType" : "InvalidSecurityGroupIDException",
"variableSetterType" : "InvalidSecurityGroupIDException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidSecurityGroupIDException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"Runtime" : {
"c2jName" : "Runtime",
"documentation" : "",
"shapeName" : "Runtime",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "Nodejs",
"value" : "nodejs"
}, {
"name" : "Nodejs43",
"value" : "nodejs4.3"
}, {
"name" : "Java8",
"value" : "java8"
}, {
"name" : "Python27",
"value" : "python2.7"
} ],
"variable" : {
"variableName" : "runtime",
"variableType" : "Runtime",
"variableDeclarationType" : "Runtime",
"documentation" : null,
"simpleType" : "Runtime",
"variableSetterType" : "Runtime"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ListAliasesResult" : {
"c2jName" : "ListAliasesResponse",
"documentation" : "",
"shapeName" : "ListAliasesResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A string, present if there are more aliases.
",
"name" : "NextMarker",
"c2jName" : "NextMarker",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string, present if there are more aliases.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextMarker",
"marshallLocationName" : "NextMarker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if there are more aliases.
\n@param nextMarker A string, present if there are more aliases.*/",
"getterDocumentation" : "/**A string, present if there are more aliases.
\n@return A string, present if there are more aliases.*/",
"fluentSetterDocumentation" : "/**A string, present if there are more aliases.
\n@param nextMarker A string, present if there are more aliases.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string, present if there are more aliases.
\n@param nextMarker A string, present if there are more aliases.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of aliases.
",
"name" : "Aliases",
"c2jName" : "Aliases",
"c2jShape" : "AliasList",
"variable" : {
"variableName" : "aliases",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of aliases.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "aliases",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Aliases",
"marshallLocationName" : "Aliases",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "AliasConfiguration",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "AliasConfiguration",
"variable" : {
"variableName" : "member",
"variableType" : "AliasConfiguration",
"variableDeclarationType" : "AliasConfiguration",
"documentation" : "",
"simpleType" : "AliasConfiguration",
"variableSetterType" : "AliasConfiguration"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "AliasConfiguration",
"variableDeclarationType" : "AliasConfiguration",
"documentation" : "",
"simpleType" : "AliasConfiguration",
"variableSetterType" : "AliasConfiguration"
},
"getterModel" : {
"returnType" : "AliasConfiguration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "AliasConfiguration"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of aliases.
\n@param aliases A list of aliases.*/",
"getterDocumentation" : "/**A list of aliases.
\n@return A list of aliases.*/",
"fluentSetterDocumentation" : "/**A list of aliases.
\n@param aliases A list of aliases.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of aliases.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAliases(java.util.Collection)} or {@link #withAliases(java.util.Collection)} if you want to override the existing values.
\n@param aliases A list of aliases.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listAliasesResult",
"variableType" : "ListAliasesResult",
"variableDeclarationType" : "ListAliasesResult",
"documentation" : null,
"simpleType" : "ListAliasesResult",
"variableSetterType" : "ListAliasesResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Aliases" : {
"documentation" : "A list of aliases.
",
"name" : "Aliases",
"c2jName" : "Aliases",
"c2jShape" : "AliasList",
"variable" : {
"variableName" : "aliases",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of aliases.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "aliases",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Aliases",
"marshallLocationName" : "Aliases",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "AliasConfiguration",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "AliasConfiguration",
"variable" : {
"variableName" : "member",
"variableType" : "AliasConfiguration",
"variableDeclarationType" : "AliasConfiguration",
"documentation" : "",
"simpleType" : "AliasConfiguration",
"variableSetterType" : "AliasConfiguration"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "AliasConfiguration",
"variableDeclarationType" : "AliasConfiguration",
"documentation" : "",
"simpleType" : "AliasConfiguration",
"variableSetterType" : "AliasConfiguration"
},
"getterModel" : {
"returnType" : "AliasConfiguration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "AliasConfiguration"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of aliases.
\n@param aliases A list of aliases.*/",
"getterDocumentation" : "/**A list of aliases.
\n@return A list of aliases.*/",
"fluentSetterDocumentation" : "/**A list of aliases.
\n@param aliases A list of aliases.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of aliases.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setAliases(java.util.Collection)} or {@link #withAliases(java.util.Collection)} if you want to override the existing values.
\n@param aliases A list of aliases.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"NextMarker" : {
"documentation" : "A string, present if there are more aliases.
",
"name" : "NextMarker",
"c2jName" : "NextMarker",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string, present if there are more aliases.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextMarker",
"marshallLocationName" : "NextMarker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if there are more aliases.
\n@param nextMarker A string, present if there are more aliases.*/",
"getterDocumentation" : "/**A string, present if there are more aliases.
\n@return A string, present if there are more aliases.*/",
"fluentSetterDocumentation" : "/**A string, present if there are more aliases.
\n@param nextMarker A string, present if there are more aliases.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string, present if there are more aliases.
\n@param nextMarker A string, present if there are more aliases.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidParameterValueException" : {
"c2jName" : "InvalidParameterValueException",
"documentation" : "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.
",
"shapeName" : "InvalidParameterValueException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invalidParameterValueException",
"variableType" : "InvalidParameterValueException",
"variableDeclarationType" : "InvalidParameterValueException",
"documentation" : null,
"simpleType" : "InvalidParameterValueException",
"variableSetterType" : "InvalidParameterValueException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidParameterValueException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvocationType" : {
"c2jName" : "InvocationType",
"documentation" : "",
"shapeName" : "InvocationType",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "Event",
"value" : "Event"
}, {
"name" : "RequestResponse",
"value" : "RequestResponse"
}, {
"name" : "DryRun",
"value" : "DryRun"
} ],
"variable" : {
"variableName" : "invocationType",
"variableType" : "InvocationType",
"variableDeclarationType" : "InvocationType",
"documentation" : null,
"simpleType" : "InvocationType",
"variableSetterType" : "InvocationType"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"EC2AccessDeniedException" : {
"c2jName" : "EC2AccessDeniedException",
"documentation" : "",
"shapeName" : "EC2AccessDeniedException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "eC2AccessDeniedException",
"variableType" : "EC2AccessDeniedException",
"variableDeclarationType" : "EC2AccessDeniedException",
"documentation" : null,
"simpleType" : "EC2AccessDeniedException",
"variableSetterType" : "EC2AccessDeniedException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "EC2AccessDeniedException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetPolicyResult" : {
"c2jName" : "GetPolicyResponse",
"documentation" : "",
"shapeName" : "GetPolicyResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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.
",
"name" : "Policy",
"c2jName" : "Policy",
"c2jShape" : "String",
"variable" : {
"variableName" : "policy",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "policy",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Policy",
"marshallLocationName" : "Policy",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param policy 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param policy 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param policy 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getPolicyResult",
"variableType" : "GetPolicyResult",
"variableDeclarationType" : "GetPolicyResult",
"documentation" : null,
"simpleType" : "GetPolicyResult",
"variableSetterType" : "GetPolicyResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Policy" : {
"documentation" : "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.
",
"name" : "Policy",
"c2jName" : "Policy",
"c2jShape" : "String",
"variable" : {
"variableName" : "policy",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "policy",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Policy",
"marshallLocationName" : "Policy",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param policy 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param policy 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param policy 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"EventSourceMappingConfiguration" : {
"c2jName" : "EventSourceMappingConfiguration",
"documentation" : "Describes mapping between an Amazon Kinesis stream and a Lambda function.
",
"shapeName" : "EventSourceMappingConfiguration",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@return The AWS Lambda assigned opaque identifier for the mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"getterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@return The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"fluentSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Date",
"variable" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.*/",
"getterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@return The UTC time string indicating the last time the event mapping was updated.*/",
"fluentSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"name" : "LastProcessingResult",
"c2jName" : "LastProcessingResult",
"c2jShape" : "String",
"variable" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastProcessingResult",
"marshallLocationName" : "LastProcessingResult",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.*/",
"getterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@return The result of the last AWS Lambda invocation of your Lambda function.*/",
"fluentSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"name" : "State",
"c2jName" : "State",
"c2jShape" : "String",
"variable" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "State",
"marshallLocationName" : "State",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"getterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@return The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"fluentSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"name" : "StateTransitionReason",
"c2jName" : "StateTransitionReason",
"c2jShape" : "String",
"variable" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StateTransitionReason",
"marshallLocationName" : "StateTransitionReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"getterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@return The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"fluentSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "eventSourceMappingConfiguration",
"variableType" : "EventSourceMappingConfiguration",
"variableDeclarationType" : "EventSourceMappingConfiguration",
"documentation" : null,
"simpleType" : "EventSourceMappingConfiguration",
"variableSetterType" : "EventSourceMappingConfiguration"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StateTransitionReason" : {
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"name" : "StateTransitionReason",
"c2jName" : "StateTransitionReason",
"c2jShape" : "String",
"variable" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StateTransitionReason",
"marshallLocationName" : "StateTransitionReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"getterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@return The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"fluentSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"State" : {
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"name" : "State",
"c2jName" : "State",
"c2jShape" : "String",
"variable" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "State",
"marshallLocationName" : "State",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"getterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@return The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"fluentSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"BatchSize" : {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"UUID" : {
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@return The AWS Lambda assigned opaque identifier for the mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastModified" : {
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Date",
"variable" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.*/",
"getterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@return The UTC time string indicating the last time the event mapping was updated.*/",
"fluentSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionArn" : {
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"getterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@return The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"fluentSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastProcessingResult" : {
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"name" : "LastProcessingResult",
"c2jName" : "LastProcessingResult",
"c2jShape" : "String",
"variable" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastProcessingResult",
"marshallLocationName" : "LastProcessingResult",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.*/",
"getterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@return The result of the last AWS Lambda invocation of your Lambda function.*/",
"fluentSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EventSourceArn" : {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UpdateEventSourceMappingResult" : {
"c2jName" : "EventSourceMappingConfiguration",
"documentation" : "Describes mapping between an Amazon Kinesis stream and a Lambda function.
",
"shapeName" : "UpdateEventSourceMappingResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@return The AWS Lambda assigned opaque identifier for the mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"getterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@return The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"fluentSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Date",
"variable" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.*/",
"getterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@return The UTC time string indicating the last time the event mapping was updated.*/",
"fluentSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"name" : "LastProcessingResult",
"c2jName" : "LastProcessingResult",
"c2jShape" : "String",
"variable" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastProcessingResult",
"marshallLocationName" : "LastProcessingResult",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.*/",
"getterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@return The result of the last AWS Lambda invocation of your Lambda function.*/",
"fluentSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"name" : "State",
"c2jName" : "State",
"c2jShape" : "String",
"variable" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "State",
"marshallLocationName" : "State",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"getterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@return The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"fluentSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"name" : "StateTransitionReason",
"c2jName" : "StateTransitionReason",
"c2jShape" : "String",
"variable" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StateTransitionReason",
"marshallLocationName" : "StateTransitionReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"getterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@return The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"fluentSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "updateEventSourceMappingResult",
"variableType" : "UpdateEventSourceMappingResult",
"variableDeclarationType" : "UpdateEventSourceMappingResult",
"documentation" : null,
"simpleType" : "UpdateEventSourceMappingResult",
"variableSetterType" : "UpdateEventSourceMappingResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StateTransitionReason" : {
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"name" : "StateTransitionReason",
"c2jName" : "StateTransitionReason",
"c2jShape" : "String",
"variable" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StateTransitionReason",
"marshallLocationName" : "StateTransitionReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"getterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@return The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"fluentSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"State" : {
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"name" : "State",
"c2jName" : "State",
"c2jShape" : "String",
"variable" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "State",
"marshallLocationName" : "State",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"getterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@return The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"fluentSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"BatchSize" : {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"UUID" : {
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@return The AWS Lambda assigned opaque identifier for the mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastModified" : {
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Date",
"variable" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.*/",
"getterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@return The UTC time string indicating the last time the event mapping was updated.*/",
"fluentSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionArn" : {
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"getterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@return The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"fluentSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastProcessingResult" : {
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"name" : "LastProcessingResult",
"c2jName" : "LastProcessingResult",
"c2jShape" : "String",
"variable" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastProcessingResult",
"marshallLocationName" : "LastProcessingResult",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.*/",
"getterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@return The result of the last AWS Lambda invocation of your Lambda function.*/",
"fluentSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EventSourceArn" : {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"AddPermissionResult" : {
"c2jName" : "AddPermissionResponse",
"documentation" : "",
"shapeName" : "AddPermissionResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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.
",
"name" : "Statement",
"c2jName" : "Statement",
"c2jShape" : "String",
"variable" : {
"variableName" : "statement",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "statement",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Statement",
"marshallLocationName" : "Statement",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param statement 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param statement 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param statement 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "addPermissionResult",
"variableType" : "AddPermissionResult",
"variableDeclarationType" : "AddPermissionResult",
"documentation" : null,
"simpleType" : "AddPermissionResult",
"variableSetterType" : "AddPermissionResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Statement" : {
"documentation" : "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.
",
"name" : "Statement",
"c2jName" : "Statement",
"c2jShape" : "String",
"variable" : {
"variableName" : "statement",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "statement",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Statement",
"marshallLocationName" : "Statement",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param statement 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param statement 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param statement 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PolicyLengthExceededException" : {
"c2jName" : "PolicyLengthExceededException",
"documentation" : "Lambda function access policy is limited to 20 KB.
",
"shapeName" : "PolicyLengthExceededException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "policyLengthExceededException",
"variableType" : "PolicyLengthExceededException",
"variableDeclarationType" : "PolicyLengthExceededException",
"documentation" : null,
"simpleType" : "PolicyLengthExceededException",
"variableSetterType" : "PolicyLengthExceededException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "PolicyLengthExceededException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"FunctionConfiguration" : {
"c2jName" : "FunctionConfiguration",
"documentation" : "A complex type that describes function metadata.
",
"shapeName" : "FunctionConfiguration",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The name of the function.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.*/",
"getterDocumentation" : "/**The name of the function.
\n@return The name of the function.*/",
"fluentSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@return The Amazon Resource Name (ARN) assigned to the function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The runtime environment for the Lambda function.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function.
\n@return The runtime environment for the Lambda function.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
}, {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The function Lambda calls to begin executing your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function Lambda calls to begin executing your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.*/",
"getterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@return The function Lambda calls to begin executing your function.*/",
"fluentSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"name" : "CodeSize",
"c2jName" : "CodeSize",
"c2jShape" : "Long",
"variable" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSize",
"marshallLocationName" : "CodeSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.*/",
"getterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@return The size, in bytes, of the function .zip file you uploaded.*/",
"fluentSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The user-provided description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-provided description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.*/",
"getterDocumentation" : "/**The user-provided description.
\n@return The user-provided description.*/",
"fluentSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"getterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@return The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"fluentSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The time stamp of the last time you updated the function.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The time stamp of the last time you updated the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.*/",
"getterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@return The time stamp of the last time you updated the function.*/",
"fluentSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.*/",
"getterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@return It is the SHA256 hash of your function deployment package.*/",
"fluentSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The version of the Lambda function.
",
"name" : "Version",
"c2jName" : "Version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Version",
"marshallLocationName" : "Version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.*/",
"getterDocumentation" : "/**The version of the Lambda function.
\n@return The version of the Lambda function.*/",
"fluentSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "VPC configuration associated with your Lambda function.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfigResponse",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "VPC configuration associated with your Lambda function.
",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"getterModel" : {
"returnType" : "VpcConfigResponse",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.*/",
"getterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@return VPC configuration associated with your Lambda function.*/",
"fluentSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "functionConfiguration",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : null,
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"VpcConfig" : {
"documentation" : "VPC configuration associated with your Lambda function.
",
"name" : "VpcConfig",
"c2jName" : "VpcConfig",
"c2jShape" : "VpcConfigResponse",
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "VPC configuration associated with your Lambda function.
",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"setterModel" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfigResponse",
"variableDeclarationType" : "VpcConfigResponse",
"documentation" : "",
"simpleType" : "VpcConfigResponse",
"variableSetterType" : "VpcConfigResponse"
},
"getterModel" : {
"returnType" : "VpcConfigResponse",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "VpcConfig",
"marshallLocationName" : "VpcConfig",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.*/",
"getterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@return VPC configuration associated with your Lambda function.*/",
"fluentSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**VPC configuration associated with your Lambda function.
\n@param vpcConfig VPC configuration associated with your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"CodeSha256" : {
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "It is the SHA256 hash of your function deployment package.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.*/",
"getterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@return It is the SHA256 hash of your function deployment package.*/",
"fluentSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**It is the SHA256 hash of your function deployment package.
\n@param codeSha256 It is the SHA256 hash of your function deployment package.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "The user-provided description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The user-provided description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.*/",
"getterDocumentation" : "/**The user-provided description.
\n@return The user-provided description.*/",
"fluentSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The user-provided description.
\n@param description The user-provided description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Timeout" : {
"documentation" : "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.
",
"name" : "Timeout",
"c2jName" : "Timeout",
"c2jShape" : "Timeout",
"variable" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "timeout",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Timeout",
"marshallLocationName" : "Timeout",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param timeout 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param timeout 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Runtime" : {
"documentation" : "The runtime environment for the Lambda function.
",
"name" : "Runtime",
"c2jName" : "Runtime",
"c2jShape" : "Runtime",
"variable" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The runtime environment for the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "runtime",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Runtime",
"marshallLocationName" : "Runtime",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "Runtime",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@see Runtime*/",
"getterDocumentation" : "/**The runtime environment for the Lambda function.
\n@return The runtime environment for the Lambda function.\n@see Runtime*/",
"fluentSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/",
"varargSetterDocumentation" : "/**The runtime environment for the Lambda function.
\n@param runtime The runtime environment for the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.\n@see Runtime*/"
},
"CodeSize" : {
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"name" : "CodeSize",
"c2jName" : "CodeSize",
"c2jShape" : "Long",
"variable" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "The size, in bytes, of the function .zip file you uploaded.
",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"setterModel" : {
"variableName" : "codeSize",
"variableType" : "Long",
"variableDeclarationType" : "Long",
"documentation" : "",
"simpleType" : "Long",
"variableSetterType" : "Long"
},
"getterModel" : {
"returnType" : "Long",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSize",
"marshallLocationName" : "CodeSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.*/",
"getterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@return The size, in bytes, of the function .zip file you uploaded.*/",
"fluentSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The size, in bytes, of the function .zip file you uploaded.
\n@param codeSize The size, in bytes, of the function .zip file you uploaded.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "The name of the function.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The name of the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.*/",
"getterDocumentation" : "/**The name of the function.
\n@return The name of the function.*/",
"fluentSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The name of the function.
\n@param functionName The name of the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Role" : {
"documentation" : "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.
",
"name" : "Role",
"c2jName" : "Role",
"c2jShape" : "RoleArn",
"variable" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "role",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Role",
"marshallLocationName" : "Role",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param role 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param role 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"MemorySize" : {
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"name" : "MemorySize",
"c2jName" : "MemorySize",
"c2jShape" : "MemorySize",
"variable" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "memorySize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MemorySize",
"marshallLocationName" : "MemorySize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"getterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@return The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.*/",
"fluentSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
\n@param memorySize The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionArn" : {
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) assigned to the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@return The Amazon Resource Name (ARN) assigned to the function.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) assigned to the function.
\n@param functionArn The Amazon Resource Name (ARN) assigned to the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastModified" : {
"documentation" : "The time stamp of the last time you updated the function.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Timestamp",
"variable" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The time stamp of the last time you updated the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.*/",
"getterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@return The time stamp of the last time you updated the function.*/",
"fluentSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The time stamp of the last time you updated the function.
\n@param lastModified The time stamp of the last time you updated the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Version" : {
"documentation" : "The version of the Lambda function.
",
"name" : "Version",
"c2jName" : "Version",
"c2jShape" : "Version",
"variable" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The version of the Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "version",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Version",
"marshallLocationName" : "Version",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.*/",
"getterDocumentation" : "/**The version of the Lambda function.
\n@return The version of the Lambda function.*/",
"fluentSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The version of the Lambda function.
\n@param version The version of the Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Handler" : {
"documentation" : "The function Lambda calls to begin executing your function.
",
"name" : "Handler",
"c2jName" : "Handler",
"c2jShape" : "Handler",
"variable" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The function Lambda calls to begin executing your function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "handler",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Handler",
"marshallLocationName" : "Handler",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.*/",
"getterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@return The function Lambda calls to begin executing your function.*/",
"fluentSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The function Lambda calls to begin executing your function.
\n@param handler The function Lambda calls to begin executing your function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"FunctionCodeLocation" : {
"c2jName" : "FunctionCodeLocation",
"documentation" : "The object for the Lambda function location.
",
"shapeName" : "FunctionCodeLocation",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The repository from which you can download the function.
",
"name" : "RepositoryType",
"c2jName" : "RepositoryType",
"c2jShape" : "String",
"variable" : {
"variableName" : "repositoryType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The repository from which you can download the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "RepositoryType",
"marshallLocationName" : "RepositoryType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The repository from which you can download the function.
\n@param repositoryType The repository from which you can download the function.*/",
"getterDocumentation" : "/**The repository from which you can download the function.
\n@return The repository from which you can download the function.*/",
"fluentSetterDocumentation" : "/**The repository from which you can download the function.
\n@param repositoryType The repository from which you can download the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The repository from which you can download the function.
\n@param repositoryType The repository from which you can download the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Location",
"c2jName" : "Location",
"c2jShape" : "String",
"variable" : {
"variableName" : "location",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "location",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Location",
"marshallLocationName" : "Location",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param location 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param location 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param location 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "functionCodeLocation",
"variableType" : "FunctionCodeLocation",
"variableDeclarationType" : "FunctionCodeLocation",
"documentation" : null,
"simpleType" : "FunctionCodeLocation",
"variableSetterType" : "FunctionCodeLocation"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Location" : {
"documentation" : "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.
",
"name" : "Location",
"c2jName" : "Location",
"c2jShape" : "String",
"variable" : {
"variableName" : "location",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "location",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Location",
"marshallLocationName" : "Location",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param location 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param location 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param location 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"RepositoryType" : {
"documentation" : "The repository from which you can download the function.
",
"name" : "RepositoryType",
"c2jName" : "RepositoryType",
"c2jShape" : "String",
"variable" : {
"variableName" : "repositoryType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The repository from which you can download the function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "repositoryType",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "RepositoryType",
"marshallLocationName" : "RepositoryType",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The repository from which you can download the function.
\n@param repositoryType The repository from which you can download the function.*/",
"getterDocumentation" : "/**The repository from which you can download the function.
\n@return The repository from which you can download the function.*/",
"fluentSetterDocumentation" : "/**The repository from which you can download the function.
\n@param repositoryType The repository from which you can download the function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The repository from which you can download the function.
\n@param repositoryType The repository from which you can download the function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"VpcConfig" : {
"c2jName" : "VpcConfig",
"documentation" : "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.
",
"shapeName" : "VpcConfig",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A list of one or more subnet IDs in your VPC.
",
"name" : "SubnetIds",
"c2jName" : "SubnetIds",
"c2jShape" : "SubnetIds",
"variable" : {
"variableName" : "subnetIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of one or more subnet IDs in your VPC.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "subnetIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SubnetIds",
"marshallLocationName" : "SubnetIds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of one or more subnet IDs in your VPC.
\n@param subnetIds A list of one or more subnet IDs in your VPC.*/",
"getterDocumentation" : "/**A list of one or more subnet IDs in your VPC.
\n@return A list of one or more subnet IDs in your VPC.*/",
"fluentSetterDocumentation" : "/**A list of one or more subnet IDs in your VPC.
\n@param subnetIds A list of one or more subnet IDs in your VPC.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of one or more subnet IDs in your VPC.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSubnetIds(java.util.Collection)} or {@link #withSubnetIds(java.util.Collection)} if you want to override the existing values.
\n@param subnetIds A list of one or more subnet IDs in your VPC.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of one or more security groups IDs in your VPC.
",
"name" : "SecurityGroupIds",
"c2jName" : "SecurityGroupIds",
"c2jShape" : "SecurityGroupIds",
"variable" : {
"variableName" : "securityGroupIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of one or more security groups IDs in your VPC.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "securityGroupIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SecurityGroupIds",
"marshallLocationName" : "SecurityGroupIds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SecurityGroupId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of one or more security groups IDs in your VPC.
\n@param securityGroupIds A list of one or more security groups IDs in your VPC.*/",
"getterDocumentation" : "/**A list of one or more security groups IDs in your VPC.
\n@return A list of one or more security groups IDs in your VPC.*/",
"fluentSetterDocumentation" : "/**A list of one or more security groups IDs in your VPC.
\n@param securityGroupIds A list of one or more security groups IDs in your VPC.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of one or more security groups IDs in your VPC.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you want to override the existing values.
\n@param securityGroupIds A list of one or more security groups IDs in your VPC.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "vpcConfig",
"variableType" : "VpcConfig",
"variableDeclarationType" : "VpcConfig",
"documentation" : null,
"simpleType" : "VpcConfig",
"variableSetterType" : "VpcConfig"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"SecurityGroupIds" : {
"documentation" : "A list of one or more security groups IDs in your VPC.
",
"name" : "SecurityGroupIds",
"c2jName" : "SecurityGroupIds",
"c2jShape" : "SecurityGroupIds",
"variable" : {
"variableName" : "securityGroupIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of one or more security groups IDs in your VPC.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "securityGroupIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SecurityGroupIds",
"marshallLocationName" : "SecurityGroupIds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SecurityGroupId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of one or more security groups IDs in your VPC.
\n@param securityGroupIds A list of one or more security groups IDs in your VPC.*/",
"getterDocumentation" : "/**A list of one or more security groups IDs in your VPC.
\n@return A list of one or more security groups IDs in your VPC.*/",
"fluentSetterDocumentation" : "/**A list of one or more security groups IDs in your VPC.
\n@param securityGroupIds A list of one or more security groups IDs in your VPC.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of one or more security groups IDs in your VPC.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you want to override the existing values.
\n@param securityGroupIds A list of one or more security groups IDs in your VPC.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"SubnetIds" : {
"documentation" : "A list of one or more subnet IDs in your VPC.
",
"name" : "SubnetIds",
"c2jName" : "SubnetIds",
"c2jShape" : "SubnetIds",
"variable" : {
"variableName" : "subnetIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of one or more subnet IDs in your VPC.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "subnetIds",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SubnetIds",
"marshallLocationName" : "SubnetIds",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "String",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "SubnetId",
"variable" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : true,
"map" : false,
"simpleType" : "String"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of one or more subnet IDs in your VPC.
\n@param subnetIds A list of one or more subnet IDs in your VPC.*/",
"getterDocumentation" : "/**A list of one or more subnet IDs in your VPC.
\n@return A list of one or more subnet IDs in your VPC.*/",
"fluentSetterDocumentation" : "/**A list of one or more subnet IDs in your VPC.
\n@param subnetIds A list of one or more subnet IDs in your VPC.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of one or more subnet IDs in your VPC.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setSubnetIds(java.util.Collection)} or {@link #withSubnetIds(java.util.Collection)} if you want to override the existing values.
\n@param subnetIds A list of one or more subnet IDs in your VPC.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UpdateAliasResult" : {
"c2jName" : "AliasConfiguration",
"documentation" : "Provides configuration information about a Lambda function version alias.
",
"shapeName" : "UpdateAliasResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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
.
",
"name" : "AliasArn",
"c2jName" : "AliasArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AliasArn",
"marshallLocationName" : "AliasArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
.
\n@param aliasArn 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
.*/",
"getterDocumentation" : "/**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
.
\n@return 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
.*/",
"fluentSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Alias name.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias name.
\n@param name Alias name.*/",
"getterDocumentation" : "/**Alias name.
\n@return Alias name.*/",
"fluentSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Function version to which the alias points.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Function version to which the alias points.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.*/",
"getterDocumentation" : "/**Function version to which the alias points.
\n@return Function version to which the alias points.*/",
"fluentSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Alias description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias description.
\n@param description Alias description.*/",
"getterDocumentation" : "/**Alias description.
\n@return Alias description.*/",
"fluentSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "updateAliasResult",
"variableType" : "UpdateAliasResult",
"variableDeclarationType" : "UpdateAliasResult",
"documentation" : null,
"simpleType" : "UpdateAliasResult",
"variableSetterType" : "UpdateAliasResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"FunctionVersion" : {
"documentation" : "Function version to which the alias points.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Function version to which the alias points.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.*/",
"getterDocumentation" : "/**Function version to which the alias points.
\n@return Function version to which the alias points.*/",
"fluentSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "Alias name.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias name.
\n@param name Alias name.*/",
"getterDocumentation" : "/**Alias name.
\n@return Alias name.*/",
"fluentSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "Alias description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias description.
\n@param description Alias description.*/",
"getterDocumentation" : "/**Alias description.
\n@return Alias description.*/",
"fluentSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AliasArn" : {
"documentation" : "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
.
",
"name" : "AliasArn",
"c2jName" : "AliasArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AliasArn",
"marshallLocationName" : "AliasArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
.
\n@param aliasArn 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
.*/",
"getterDocumentation" : "/**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
.
\n@return 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
.*/",
"fluentSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"InvalidSubnetIDException" : {
"c2jName" : "InvalidSubnetIDException",
"documentation" : "The Subnet ID provided in the Lambda function VPC configuration is invalid.
",
"shapeName" : "InvalidSubnetIDException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "invalidSubnetIDException",
"variableType" : "InvalidSubnetIDException",
"variableDeclarationType" : "InvalidSubnetIDException",
"documentation" : null,
"simpleType" : "InvalidSubnetIDException",
"variableSetterType" : "InvalidSubnetIDException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "InvalidSubnetIDException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ENILimitReachedException" : {
"c2jName" : "ENILimitReachedException",
"documentation" : "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.
",
"shapeName" : "ENILimitReachedException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "eNILimitReachedException",
"variableType" : "ENILimitReachedException",
"variableDeclarationType" : "ENILimitReachedException",
"documentation" : null,
"simpleType" : "ENILimitReachedException",
"variableSetterType" : "ENILimitReachedException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "ENILimitReachedException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListFunctionsResult" : {
"c2jName" : "ListFunctionsResponse",
"documentation" : "Contains a list of AWS Lambda function configurations (see FunctionConfiguration.
",
"shapeName" : "ListFunctionsResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A string, present if there are more functions.
",
"name" : "NextMarker",
"c2jName" : "NextMarker",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string, present if there are more functions.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextMarker",
"marshallLocationName" : "NextMarker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if there are more functions.
\n@param nextMarker A string, present if there are more functions.*/",
"getterDocumentation" : "/**A string, present if there are more functions.
\n@return A string, present if there are more functions.*/",
"fluentSetterDocumentation" : "/**A string, present if there are more functions.
\n@param nextMarker A string, present if there are more functions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string, present if there are more functions.
\n@param nextMarker A string, present if there are more functions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of Lambda functions.
",
"name" : "Functions",
"c2jName" : "Functions",
"c2jShape" : "FunctionList",
"variable" : {
"variableName" : "functions",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of Lambda functions.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "functions",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Functions",
"marshallLocationName" : "Functions",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "FunctionConfiguration",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "FunctionConfiguration",
"variable" : {
"variableName" : "member",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"getterModel" : {
"returnType" : "FunctionConfiguration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "FunctionConfiguration"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of Lambda functions.
\n@param functions A list of Lambda functions.*/",
"getterDocumentation" : "/**A list of Lambda functions.
\n@return A list of Lambda functions.*/",
"fluentSetterDocumentation" : "/**A list of Lambda functions.
\n@param functions A list of Lambda functions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of Lambda functions.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setFunctions(java.util.Collection)} or {@link #withFunctions(java.util.Collection)} if you want to override the existing values.
\n@param functions A list of Lambda functions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listFunctionsResult",
"variableType" : "ListFunctionsResult",
"variableDeclarationType" : "ListFunctionsResult",
"documentation" : null,
"simpleType" : "ListFunctionsResult",
"variableSetterType" : "ListFunctionsResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Functions" : {
"documentation" : "A list of Lambda functions.
",
"name" : "Functions",
"c2jName" : "Functions",
"c2jShape" : "FunctionList",
"variable" : {
"variableName" : "functions",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of Lambda functions.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "functions",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Functions",
"marshallLocationName" : "Functions",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "FunctionConfiguration",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "FunctionConfiguration",
"variable" : {
"variableName" : "member",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"getterModel" : {
"returnType" : "FunctionConfiguration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "FunctionConfiguration"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of Lambda functions.
\n@param functions A list of Lambda functions.*/",
"getterDocumentation" : "/**A list of Lambda functions.
\n@return A list of Lambda functions.*/",
"fluentSetterDocumentation" : "/**A list of Lambda functions.
\n@param functions A list of Lambda functions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of Lambda functions.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setFunctions(java.util.Collection)} or {@link #withFunctions(java.util.Collection)} if you want to override the existing values.
\n@param functions A list of Lambda functions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"NextMarker" : {
"documentation" : "A string, present if there are more functions.
",
"name" : "NextMarker",
"c2jName" : "NextMarker",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string, present if there are more functions.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextMarker",
"marshallLocationName" : "NextMarker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if there are more functions.
\n@param nextMarker A string, present if there are more functions.*/",
"getterDocumentation" : "/**A string, present if there are more functions.
\n@return A string, present if there are more functions.*/",
"fluentSetterDocumentation" : "/**A string, present if there are more functions.
\n@param nextMarker A string, present if there are more functions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string, present if there are more functions.
\n@param nextMarker A string, present if there are more functions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"EC2ThrottledException" : {
"c2jName" : "EC2ThrottledException",
"documentation" : "AWS Lambda was throttled by Amazon EC2 during Lambda function initiatization using the execution role provided for the Lambda function.
",
"shapeName" : "EC2ThrottledException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "eC2ThrottledException",
"variableType" : "EC2ThrottledException",
"variableDeclarationType" : "EC2ThrottledException",
"documentation" : null,
"simpleType" : "EC2ThrottledException",
"variableSetterType" : "EC2ThrottledException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "EC2ThrottledException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetPolicyRequest" : {
"c2jName" : "GetPolicyRequest",
"documentation" : "",
"shapeName" : "GetPolicyRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getPolicyRequest",
"variableType" : "GetPolicyRequest",
"variableDeclarationType" : "GetPolicyRequest",
"documentation" : null,
"simpleType" : "GetPolicyRequest",
"variableSetterType" : "GetPolicyRequest"
},
"marshaller" : {
"action" : "GetPolicy",
"verb" : "GET",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/policy",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Qualifier" : {
"documentation" : "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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"AliasConfiguration" : {
"c2jName" : "AliasConfiguration",
"documentation" : "
Provides configuration information about a Lambda function version alias.
",
"shapeName" : "AliasConfiguration",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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
.
",
"name" : "AliasArn",
"c2jName" : "AliasArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AliasArn",
"marshallLocationName" : "AliasArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
.
\n@param aliasArn 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
.*/",
"getterDocumentation" : "/**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
.
\n@return 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
.*/",
"fluentSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Alias name.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias name.
\n@param name Alias name.*/",
"getterDocumentation" : "/**Alias name.
\n@return Alias name.*/",
"fluentSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Function version to which the alias points.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Function version to which the alias points.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.*/",
"getterDocumentation" : "/**Function version to which the alias points.
\n@return Function version to which the alias points.*/",
"fluentSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Alias description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias description.
\n@param description Alias description.*/",
"getterDocumentation" : "/**Alias description.
\n@return Alias description.*/",
"fluentSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "aliasConfiguration",
"variableType" : "AliasConfiguration",
"variableDeclarationType" : "AliasConfiguration",
"documentation" : null,
"simpleType" : "AliasConfiguration",
"variableSetterType" : "AliasConfiguration"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"FunctionVersion" : {
"documentation" : "Function version to which the alias points.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Function version to which the alias points.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.*/",
"getterDocumentation" : "/**Function version to which the alias points.
\n@return Function version to which the alias points.*/",
"fluentSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "Alias name.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias name.
\n@param name Alias name.*/",
"getterDocumentation" : "/**Alias name.
\n@return Alias name.*/",
"fluentSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "Alias description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias description.
\n@param description Alias description.*/",
"getterDocumentation" : "/**Alias description.
\n@return Alias description.*/",
"fluentSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AliasArn" : {
"documentation" : "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
.
",
"name" : "AliasArn",
"c2jName" : "AliasArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AliasArn",
"marshallLocationName" : "AliasArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
.
\n@param aliasArn 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
.*/",
"getterDocumentation" : "/**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
.
\n@return 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
.*/",
"fluentSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteFunctionRequest" : {
"c2jName" : "DeleteFunctionRequest",
"documentation" : "",
"shapeName" : "DeleteFunctionRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "deleteFunctionRequest",
"variableType" : "DeleteFunctionRequest",
"variableDeclarationType" : "DeleteFunctionRequest",
"documentation" : null,
"simpleType" : "DeleteFunctionRequest",
"variableSetterType" : "DeleteFunctionRequest"
},
"marshaller" : {
"action" : "DeleteFunction",
"verb" : "DELETE",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Qualifier" : {
"documentation" : "
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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param qualifier 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.*/",
"getterDocumentation" : "/**
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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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.
\n@param qualifier 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "
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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetFunctionRequest" : {
"c2jName" : "GetFunctionRequest",
"documentation" : "",
"shapeName" : "GetFunctionRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "
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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
Using 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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Using 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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Using 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.
\n@param qualifier Using 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.*/",
"getterDocumentation" : "/**Using 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.
\n@return Using 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.*/",
"fluentSetterDocumentation" : "/**Using 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.
\n@param qualifier Using 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Using 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.
\n@param qualifier Using 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getFunctionRequest",
"variableType" : "GetFunctionRequest",
"variableDeclarationType" : "GetFunctionRequest",
"documentation" : null,
"simpleType" : "GetFunctionRequest",
"variableSetterType" : "GetFunctionRequest"
},
"marshaller" : {
"action" : "GetFunction",
"verb" : "GET",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Qualifier" : {
"documentation" : "Using 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.
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Using 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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Using 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.
\n@param qualifier Using 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.*/",
"getterDocumentation" : "/**Using 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.
\n@return Using 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.*/",
"fluentSetterDocumentation" : "/**Using 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.
\n@param qualifier Using 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Using 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.
\n@param qualifier Using 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"LogType" : {
"c2jName" : "LogType",
"documentation" : "",
"shapeName" : "LogType",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : [ {
"name" : "None",
"value" : "None"
}, {
"name" : "Tail",
"value" : "Tail"
} ],
"variable" : {
"variableName" : "logType",
"variableType" : "LogType",
"variableDeclarationType" : "LogType",
"documentation" : null,
"simpleType" : "LogType",
"variableSetterType" : "LogType"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"ListVersionsByFunctionRequest" : {
"c2jName" : "ListVersionsByFunctionRequest",
"documentation" : "",
"shapeName" : "ListVersionsByFunctionRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "
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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : " Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "String",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : " Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Marker",
"marshallLocationName" : "Marker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.*/",
"getterDocumentation" : "/** Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
\n@return Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.*/",
"fluentSetterDocumentation" : "/** Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : " Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
",
"name" : "MaxItems",
"c2jName" : "MaxItems",
"c2jShape" : "MaxListItems",
"variable" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : " Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxItems",
"marshallLocationName" : "MaxItems",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.*/",
"getterDocumentation" : "/** Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
\n@return Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.*/",
"fluentSetterDocumentation" : "/** Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listVersionsByFunctionRequest",
"variableType" : "ListVersionsByFunctionRequest",
"variableDeclarationType" : "ListVersionsByFunctionRequest",
"documentation" : null,
"simpleType" : "ListVersionsByFunctionRequest",
"variableSetterType" : "ListVersionsByFunctionRequest"
},
"marshaller" : {
"action" : "ListVersionsByFunction",
"verb" : "GET",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/versions",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"MaxItems" : {
"documentation" : " Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
",
"name" : "MaxItems",
"c2jName" : "MaxItems",
"c2jShape" : "MaxListItems",
"variable" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : " Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxItems",
"marshallLocationName" : "MaxItems",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.*/",
"getterDocumentation" : "/** Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
\n@return Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.*/",
"fluentSetterDocumentation" : "/** Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Marker" : {
"documentation" : " Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "String",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : " Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Marker",
"marshallLocationName" : "Marker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.*/",
"getterDocumentation" : "/** Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
\n@return Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.*/",
"fluentSetterDocumentation" : "/** Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateAliasResult" : {
"c2jName" : "AliasConfiguration",
"documentation" : "Provides configuration information about a Lambda function version alias.
",
"shapeName" : "CreateAliasResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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
.
",
"name" : "AliasArn",
"c2jName" : "AliasArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AliasArn",
"marshallLocationName" : "AliasArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
.
\n@param aliasArn 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
.*/",
"getterDocumentation" : "/**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
.
\n@return 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
.*/",
"fluentSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Alias name.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias name.
\n@param name Alias name.*/",
"getterDocumentation" : "/**Alias name.
\n@return Alias name.*/",
"fluentSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Function version to which the alias points.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Function version to which the alias points.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.*/",
"getterDocumentation" : "/**Function version to which the alias points.
\n@return Function version to which the alias points.*/",
"fluentSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Alias description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias description.
\n@param description Alias description.*/",
"getterDocumentation" : "/**Alias description.
\n@return Alias description.*/",
"fluentSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createAliasResult",
"variableType" : "CreateAliasResult",
"variableDeclarationType" : "CreateAliasResult",
"documentation" : null,
"simpleType" : "CreateAliasResult",
"variableSetterType" : "CreateAliasResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"FunctionVersion" : {
"documentation" : "Function version to which the alias points.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Function version to which the alias points.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.*/",
"getterDocumentation" : "/**Function version to which the alias points.
\n@return Function version to which the alias points.*/",
"fluentSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "Alias name.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias name.
\n@param name Alias name.*/",
"getterDocumentation" : "/**Alias name.
\n@return Alias name.*/",
"fluentSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "Alias description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias description.
\n@param description Alias description.*/",
"getterDocumentation" : "/**Alias description.
\n@return Alias description.*/",
"fluentSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AliasArn" : {
"documentation" : "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
.
",
"name" : "AliasArn",
"c2jName" : "AliasArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AliasArn",
"marshallLocationName" : "AliasArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
.
\n@param aliasArn 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
.*/",
"getterDocumentation" : "/**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
.
\n@return 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
.*/",
"fluentSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"AddPermissionRequest" : {
"c2jName" : "AddPermissionRequest",
"documentation" : "",
"shapeName" : "AddPermissionRequest",
"deprecated" : false,
"required" : [ "FunctionName", "StatementId", "Action", "Principal" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
A unique statement identifier.
",
"name" : "StatementId",
"c2jName" : "StatementId",
"c2jShape" : "StatementId",
"variable" : {
"variableName" : "statementId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A unique statement identifier.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "statementId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StatementId",
"marshallLocationName" : "StatementId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A unique statement identifier.
\n@param statementId A unique statement identifier.*/",
"getterDocumentation" : "/**A unique statement identifier.
\n@return A unique statement identifier.*/",
"fluentSetterDocumentation" : "/**A unique statement identifier.
\n@param statementId A unique statement identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A unique statement identifier.
\n@param statementId A unique statement identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
",
"name" : "Action",
"c2jName" : "Action",
"c2jShape" : "Action",
"variable" : {
"variableName" : "action",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "action",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Action",
"marshallLocationName" : "Action",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
\n@param action 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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.*/",
"getterDocumentation" : "/**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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
\n@return 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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.*/",
"fluentSetterDocumentation" : "/**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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
\n@param action 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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
\n@param action 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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "Principal",
"c2jName" : "Principal",
"c2jShape" : "Principal",
"variable" : {
"variableName" : "principal",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "principal",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Principal",
"marshallLocationName" : "Principal",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param principal 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param principal 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param principal 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. ",
"name" : "SourceArn",
"c2jName" : "SourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "sourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. ",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "sourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SourceArn",
"marshallLocationName" : "SourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. \n@param sourceArn This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function. If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3.*/",
"getterDocumentation" : "/**This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. \n@return This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function. If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3.*/",
"fluentSetterDocumentation" : "/**This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. \n@param sourceArn This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function. If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. \n@param sourceArn This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function. If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "SourceAccount",
"c2jName" : "SourceAccount",
"c2jShape" : "SourceOwner",
"variable" : {
"variableName" : "sourceAccount",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "sourceAccount",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SourceAccount",
"marshallLocationName" : "SourceAccount",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param sourceAccount 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param sourceAccount 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param sourceAccount 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "EventSourceToken",
"c2jName" : "EventSourceToken",
"c2jShape" : "EventSourceToken",
"variable" : {
"variableName" : "eventSourceToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceToken",
"marshallLocationName" : "EventSourceToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param eventSourceToken */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param eventSourceToken \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param eventSourceToken \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
\n@param qualifier 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
*/",
"getterDocumentation" : "/**
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
\n@return 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
*/",
"fluentSetterDocumentation" : "/**
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
\n@param qualifier 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
\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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
\n@param qualifier 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
\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "addPermissionRequest",
"variableType" : "AddPermissionRequest",
"variableDeclarationType" : "AddPermissionRequest",
"documentation" : null,
"simpleType" : "AddPermissionRequest",
"variableSetterType" : "AddPermissionRequest"
},
"marshaller" : {
"action" : "AddPermission",
"verb" : "POST",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/policy",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"SourceAccount" : {
"documentation" : "
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.
",
"name" : "SourceAccount",
"c2jName" : "SourceAccount",
"c2jShape" : "SourceOwner",
"variable" : {
"variableName" : "sourceAccount",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "sourceAccount",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SourceAccount",
"marshallLocationName" : "SourceAccount",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param sourceAccount 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param sourceAccount 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param sourceAccount 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"SourceArn" : {
"documentation" : "This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. ",
"name" : "SourceArn",
"c2jName" : "SourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "sourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. ",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "sourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "SourceArn",
"marshallLocationName" : "SourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. \n@param sourceArn This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function. If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3.*/",
"getterDocumentation" : "/**This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. \n@return This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function. If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3.*/",
"fluentSetterDocumentation" : "/**This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. \n@param sourceArn This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function. If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function.
If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3. \n@param sourceArn This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function. If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StatementId" : {
"documentation" : "A unique statement identifier.
",
"name" : "StatementId",
"c2jName" : "StatementId",
"c2jShape" : "StatementId",
"variable" : {
"variableName" : "statementId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A unique statement identifier.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "statementId",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StatementId",
"marshallLocationName" : "StatementId",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A unique statement identifier.
\n@param statementId A unique statement identifier.*/",
"getterDocumentation" : "/**A unique statement identifier.
\n@return A unique statement identifier.*/",
"fluentSetterDocumentation" : "/**A unique statement identifier.
\n@param statementId A unique statement identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A unique statement identifier.
\n@param statementId A unique statement identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Principal" : {
"documentation" : "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.
",
"name" : "Principal",
"c2jName" : "Principal",
"c2jShape" : "Principal",
"variable" : {
"variableName" : "principal",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "principal",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Principal",
"marshallLocationName" : "Principal",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param principal 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param principal 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param principal 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Action" : {
"documentation" : "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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
",
"name" : "Action",
"c2jName" : "Action",
"c2jShape" : "Action",
"variable" : {
"variableName" : "action",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "action",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Action",
"marshallLocationName" : "Action",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
\n@param action 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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.*/",
"getterDocumentation" : "/**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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
\n@return 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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.*/",
"fluentSetterDocumentation" : "/**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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
\n@param action 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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.
\n@param action 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 (see Operations). For example, lambda:CreateFunction
. You can use wildcard (lambda:*
) to grant permission for all AWS Lambda actions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Qualifier" : {
"documentation" : "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
",
"name" : "Qualifier",
"c2jName" : "Qualifier",
"c2jShape" : "Qualifier",
"variable" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "qualifier",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Qualifier",
"marshallLocationName" : "Qualifier",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
\n@param qualifier 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
*/",
"getterDocumentation" : "/**
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
\n@return 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
*/",
"fluentSetterDocumentation" : "/**
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
\n@param qualifier 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
\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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
\n@param qualifier 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
\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "
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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EventSourceToken" : {
"documentation" : "",
"name" : "EventSourceToken",
"c2jName" : "EventSourceToken",
"c2jShape" : "EventSourceToken",
"variable" : {
"variableName" : "eventSourceToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceToken",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceToken",
"marshallLocationName" : "EventSourceToken",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param eventSourceToken */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param eventSourceToken \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param eventSourceToken \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"GetFunctionResult" : {
"c2jName" : "GetFunctionResponse",
"documentation" : "
This response contains the object for the Lambda function location (see API_FunctionCodeLocation.
",
"shapeName" : "GetFunctionResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Configuration",
"c2jName" : "Configuration",
"c2jShape" : "FunctionConfiguration",
"variable" : {
"variableName" : "configuration",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"setterModel" : {
"variableName" : "configuration",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"getterModel" : {
"returnType" : "FunctionConfiguration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Configuration",
"marshallLocationName" : "Configuration",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param configuration */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param configuration \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param configuration \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "Code",
"c2jName" : "Code",
"c2jShape" : "FunctionCodeLocation",
"variable" : {
"variableName" : "code",
"variableType" : "FunctionCodeLocation",
"variableDeclarationType" : "FunctionCodeLocation",
"documentation" : "",
"simpleType" : "FunctionCodeLocation",
"variableSetterType" : "FunctionCodeLocation"
},
"setterModel" : {
"variableName" : "code",
"variableType" : "FunctionCodeLocation",
"variableDeclarationType" : "FunctionCodeLocation",
"documentation" : "",
"simpleType" : "FunctionCodeLocation",
"variableSetterType" : "FunctionCodeLocation"
},
"getterModel" : {
"returnType" : "FunctionCodeLocation",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Code",
"marshallLocationName" : "Code",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param code */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param code \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param code \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getFunctionResult",
"variableType" : "GetFunctionResult",
"variableDeclarationType" : "GetFunctionResult",
"documentation" : null,
"simpleType" : "GetFunctionResult",
"variableSetterType" : "GetFunctionResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Configuration" : {
"documentation" : "",
"name" : "Configuration",
"c2jName" : "Configuration",
"c2jShape" : "FunctionConfiguration",
"variable" : {
"variableName" : "configuration",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"setterModel" : {
"variableName" : "configuration",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"getterModel" : {
"returnType" : "FunctionConfiguration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Configuration",
"marshallLocationName" : "Configuration",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param configuration */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param configuration \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param configuration \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Code" : {
"documentation" : "",
"name" : "Code",
"c2jName" : "Code",
"c2jShape" : "FunctionCodeLocation",
"variable" : {
"variableName" : "code",
"variableType" : "FunctionCodeLocation",
"variableDeclarationType" : "FunctionCodeLocation",
"documentation" : "",
"simpleType" : "FunctionCodeLocation",
"variableSetterType" : "FunctionCodeLocation"
},
"setterModel" : {
"variableName" : "code",
"variableType" : "FunctionCodeLocation",
"variableDeclarationType" : "FunctionCodeLocation",
"documentation" : "",
"simpleType" : "FunctionCodeLocation",
"variableSetterType" : "FunctionCodeLocation"
},
"getterModel" : {
"returnType" : "FunctionCodeLocation",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Code",
"marshallLocationName" : "Code",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param code */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param code \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param code \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateEventSourceMappingRequest" : {
"c2jName" : "CreateEventSourceMappingRequest",
"documentation" : "",
"shapeName" : "CreateEventSourceMappingRequest",
"deprecated" : false,
"required" : [ "EventSourceArn", "FunctionName", "StartingPosition" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param eventSourceArn 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param eventSourceArn 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param eventSourceArn 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
",
"name" : "Enabled",
"c2jName" : "Enabled",
"c2jShape" : "Enabled",
"variable" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Enabled",
"marshallLocationName" : "Enabled",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
\n@param enabled Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.*/",
"getterDocumentation" : "/**Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
\n@return Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.*/",
"fluentSetterDocumentation" : "/**Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
\n@param enabled Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
\n@param enabled Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
",
"name" : "StartingPosition",
"c2jName" : "StartingPosition",
"c2jShape" : "EventSourcePosition",
"variable" : {
"variableName" : "startingPosition",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "startingPosition",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StartingPosition",
"marshallLocationName" : "StartingPosition",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "EventSourcePosition",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
\n@param startingPosition The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.\n@see EventSourcePosition*/",
"getterDocumentation" : "/**The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
\n@return The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.\n@see EventSourcePosition*/",
"fluentSetterDocumentation" : "/**The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
\n@param startingPosition The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EventSourcePosition*/",
"varargSetterDocumentation" : "/**The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
\n@param startingPosition The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EventSourcePosition*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createEventSourceMappingRequest",
"variableType" : "CreateEventSourceMappingRequest",
"variableDeclarationType" : "CreateEventSourceMappingRequest",
"documentation" : null,
"simpleType" : "CreateEventSourceMappingRequest",
"variableSetterType" : "CreateEventSourceMappingRequest"
},
"marshaller" : {
"action" : "CreateEventSourceMapping",
"verb" : "POST",
"target" : null,
"requestUri" : "/2015-03-31/event-source-mappings/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Enabled" : {
"documentation" : "Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
",
"name" : "Enabled",
"c2jName" : "Enabled",
"c2jShape" : "Enabled",
"variable" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "enabled",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Enabled",
"marshallLocationName" : "Enabled",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
\n@param enabled Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.*/",
"getterDocumentation" : "/**Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
\n@return Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.*/",
"fluentSetterDocumentation" : "/**Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
\n@param enabled Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.
\n@param enabled Indicates whether AWS Lambda should begin polling the event source. By default, Enabled
is true.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"StartingPosition" : {
"documentation" : "The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
",
"name" : "StartingPosition",
"c2jName" : "StartingPosition",
"c2jShape" : "EventSourcePosition",
"variable" : {
"variableName" : "startingPosition",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "startingPosition",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StartingPosition",
"marshallLocationName" : "StartingPosition",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : "EventSourcePosition",
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
\n@param startingPosition The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.\n@see EventSourcePosition*/",
"getterDocumentation" : "/**The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
\n@return The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.\n@see EventSourcePosition*/",
"fluentSetterDocumentation" : "/**The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
\n@param startingPosition The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EventSourcePosition*/",
"varargSetterDocumentation" : "/**The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.
\n@param startingPosition The position in the stream where AWS Lambda should start reading. For more information, go to ShardIteratorType in the Amazon Kinesis API Reference.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EventSourcePosition*/"
},
"BatchSize" : {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EventSourceArn" : {
"documentation" : "
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.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param eventSourceArn 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param eventSourceArn 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param eventSourceArn 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListEventSourceMappingsRequest" : {
"c2jName" : "ListEventSourceMappingsRequest",
"documentation" : "",
"shapeName" : "ListEventSourceMappingsRequest",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
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.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "String",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Marker",
"marshallLocationName" : "Marker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param marker 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param marker 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param marker 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
",
"name" : "MaxItems",
"c2jName" : "MaxItems",
"c2jShape" : "MaxListItems",
"variable" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxItems",
"marshallLocationName" : "MaxItems",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.*/",
"getterDocumentation" : "/**Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
\n@return Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.*/",
"fluentSetterDocumentation" : "/**Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listEventSourceMappingsRequest",
"variableType" : "ListEventSourceMappingsRequest",
"variableDeclarationType" : "ListEventSourceMappingsRequest",
"documentation" : null,
"simpleType" : "ListEventSourceMappingsRequest",
"variableSetterType" : "ListEventSourceMappingsRequest"
},
"marshaller" : {
"action" : "ListEventSourceMappings",
"verb" : "GET",
"target" : null,
"requestUri" : "/2015-03-31/event-source-mappings/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"MaxItems" : {
"documentation" : "Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
",
"name" : "MaxItems",
"c2jName" : "MaxItems",
"c2jShape" : "MaxListItems",
"variable" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxItems",
"marshallLocationName" : "MaxItems",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.*/",
"getterDocumentation" : "/**Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
\n@return Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.*/",
"fluentSetterDocumentation" : "/**Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Marker" : {
"documentation" : "
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.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "String",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Marker",
"marshallLocationName" : "Marker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param marker 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param marker 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param marker 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EventSourceArn" : {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteEventSourceMappingResult" : {
"c2jName" : "EventSourceMappingConfiguration",
"documentation" : "Describes mapping between an Amazon Kinesis stream and a Lambda function.
",
"shapeName" : "DeleteEventSourceMappingResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@return The AWS Lambda assigned opaque identifier for the mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"getterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@return The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"fluentSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Date",
"variable" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.*/",
"getterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@return The UTC time string indicating the last time the event mapping was updated.*/",
"fluentSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"name" : "LastProcessingResult",
"c2jName" : "LastProcessingResult",
"c2jShape" : "String",
"variable" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastProcessingResult",
"marshallLocationName" : "LastProcessingResult",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.*/",
"getterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@return The result of the last AWS Lambda invocation of your Lambda function.*/",
"fluentSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"name" : "State",
"c2jName" : "State",
"c2jShape" : "String",
"variable" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "State",
"marshallLocationName" : "State",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"getterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@return The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"fluentSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"name" : "StateTransitionReason",
"c2jName" : "StateTransitionReason",
"c2jShape" : "String",
"variable" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StateTransitionReason",
"marshallLocationName" : "StateTransitionReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"getterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@return The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"fluentSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "deleteEventSourceMappingResult",
"variableType" : "DeleteEventSourceMappingResult",
"variableDeclarationType" : "DeleteEventSourceMappingResult",
"documentation" : null,
"simpleType" : "DeleteEventSourceMappingResult",
"variableSetterType" : "DeleteEventSourceMappingResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"StateTransitionReason" : {
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"name" : "StateTransitionReason",
"c2jName" : "StateTransitionReason",
"c2jShape" : "String",
"variable" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "stateTransitionReason",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "StateTransitionReason",
"marshallLocationName" : "StateTransitionReason",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"getterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@return The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.*/",
"fluentSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
\n@param stateTransitionReason The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"State" : {
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"name" : "State",
"c2jName" : "State",
"c2jShape" : "String",
"variable" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "state",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "State",
"marshallLocationName" : "State",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"getterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@return The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.*/",
"fluentSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.
\n@param state The state of the event source mapping. It can be Creating
, Enabled
, Disabled
, Enabling
, Disabling
, Updating
, or Deleting
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"BatchSize" : {
"documentation" : "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.
",
"name" : "BatchSize",
"c2jName" : "BatchSize",
"c2jShape" : "BatchSize",
"variable" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "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.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "batchSize",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "BatchSize",
"marshallLocationName" : "BatchSize",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param batchSize 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param batchSize 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"UUID" : {
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"name" : "UUID",
"c2jName" : "UUID",
"c2jShape" : "String",
"variable" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The AWS Lambda assigned opaque identifier for the mapping.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "uUID",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "UUID",
"marshallLocationName" : "UUID",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.*/",
"getterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@return The AWS Lambda assigned opaque identifier for the mapping.*/",
"fluentSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The AWS Lambda assigned opaque identifier for the mapping.
\n@param uUID The AWS Lambda assigned opaque identifier for the mapping.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastModified" : {
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"name" : "LastModified",
"c2jName" : "LastModified",
"c2jShape" : "Date",
"variable" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "The UTC time string indicating the last time the event mapping was updated.
",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"setterModel" : {
"variableName" : "lastModified",
"variableType" : "java.util.Date",
"variableDeclarationType" : "java.util.Date",
"documentation" : "",
"simpleType" : "Date",
"variableSetterType" : "java.util.Date"
},
"getterModel" : {
"returnType" : "java.util.Date",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastModified",
"marshallLocationName" : "LastModified",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.*/",
"getterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@return The UTC time string indicating the last time the event mapping was updated.*/",
"fluentSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The UTC time string indicating the last time the event mapping was updated.
\n@param lastModified The UTC time string indicating the last time the event mapping was updated.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionArn" : {
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"name" : "FunctionArn",
"c2jName" : "FunctionArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Lambda function to invoke when AWS Lambda detects an event on the stream.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionArn",
"marshallLocationName" : "FunctionArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"getterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@return The Lambda function to invoke when AWS Lambda detects an event on the stream.*/",
"fluentSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Lambda function to invoke when AWS Lambda detects an event on the stream.
\n@param functionArn The Lambda function to invoke when AWS Lambda detects an event on the stream.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"LastProcessingResult" : {
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"name" : "LastProcessingResult",
"c2jName" : "LastProcessingResult",
"c2jShape" : "String",
"variable" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The result of the last AWS Lambda invocation of your Lambda function.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "lastProcessingResult",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "LastProcessingResult",
"marshallLocationName" : "LastProcessingResult",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.*/",
"getterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@return The result of the last AWS Lambda invocation of your Lambda function.*/",
"fluentSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The result of the last AWS Lambda invocation of your Lambda function.
\n@param lastProcessingResult The result of the last AWS Lambda invocation of your Lambda function.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"EventSourceArn" : {
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"name" : "EventSourceArn",
"c2jName" : "EventSourceArn",
"c2jShape" : "Arn",
"variable" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eventSourceArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EventSourceArn",
"marshallLocationName" : "EventSourceArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"getterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@return The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.*/",
"fluentSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.
\n@param eventSourceArn The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"EC2UnexpectedException" : {
"c2jName" : "EC2UnexpectedException",
"documentation" : "AWS Lambda received an unexpected EC2 client exception while setting up for the Lambda function.
",
"shapeName" : "EC2UnexpectedException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "",
"name" : "EC2ErrorCode",
"c2jName" : "EC2ErrorCode",
"c2jShape" : "String",
"variable" : {
"variableName" : "eC2ErrorCode",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eC2ErrorCode",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EC2ErrorCode",
"marshallLocationName" : "EC2ErrorCode",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param eC2ErrorCode */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param eC2ErrorCode \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param eC2ErrorCode \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "eC2UnexpectedException",
"variableType" : "EC2UnexpectedException",
"variableDeclarationType" : "EC2UnexpectedException",
"documentation" : null,
"simpleType" : "EC2UnexpectedException",
"variableSetterType" : "EC2UnexpectedException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "EC2UnexpectedException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"EC2ErrorCode" : {
"documentation" : "",
"name" : "EC2ErrorCode",
"c2jName" : "EC2ErrorCode",
"c2jShape" : "String",
"variable" : {
"variableName" : "eC2ErrorCode",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "eC2ErrorCode",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "EC2ErrorCode",
"marshallLocationName" : "EC2ErrorCode",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param eC2ErrorCode */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param eC2ErrorCode \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param eC2ErrorCode \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UnsupportedMediaTypeException" : {
"c2jName" : "UnsupportedMediaTypeException",
"documentation" : "The content type of the Invoke
request body is not JSON.
",
"shapeName" : "UnsupportedMediaTypeException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "unsupportedMediaTypeException",
"variableType" : "UnsupportedMediaTypeException",
"variableDeclarationType" : "UnsupportedMediaTypeException",
"documentation" : null,
"simpleType" : "UnsupportedMediaTypeException",
"variableSetterType" : "UnsupportedMediaTypeException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "UnsupportedMediaTypeException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"SubnetIPAddressLimitReachedException" : {
"c2jName" : "SubnetIPAddressLimitReachedException",
"documentation" : "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.
",
"shapeName" : "SubnetIPAddressLimitReachedException",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "subnetIPAddressLimitReachedException",
"variableType" : "SubnetIPAddressLimitReachedException",
"variableDeclarationType" : "SubnetIPAddressLimitReachedException",
"documentation" : null,
"simpleType" : "SubnetIPAddressLimitReachedException",
"variableSetterType" : "SubnetIPAddressLimitReachedException"
},
"marshaller" : null,
"unmarshaller" : null,
"errorCode" : "SubnetIPAddressLimitReachedException",
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Type" : {
"documentation" : "",
"name" : "Type",
"c2jName" : "Type",
"c2jShape" : "String",
"variable" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "type",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Type",
"marshallLocationName" : "Type",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param type */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param type \n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListFunctionsRequest" : {
"c2jName" : "ListFunctionsRequest",
"documentation" : "",
"shapeName" : "ListFunctionsRequest",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "String",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Marker",
"marshallLocationName" : "Marker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.*/",
"getterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
\n@return Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.*/",
"fluentSetterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
",
"name" : "MaxItems",
"c2jName" : "MaxItems",
"c2jShape" : "MaxListItems",
"variable" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxItems",
"marshallLocationName" : "MaxItems",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.*/",
"getterDocumentation" : "/**Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
\n@return Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.*/",
"fluentSetterDocumentation" : "/**Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listFunctionsRequest",
"variableType" : "ListFunctionsRequest",
"variableDeclarationType" : "ListFunctionsRequest",
"documentation" : null,
"simpleType" : "ListFunctionsRequest",
"variableSetterType" : "ListFunctionsRequest"
},
"marshaller" : {
"action" : "ListFunctions",
"verb" : "GET",
"target" : null,
"requestUri" : "/2015-03-31/functions/",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"MaxItems" : {
"documentation" : "Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
",
"name" : "MaxItems",
"c2jName" : "MaxItems",
"c2jShape" : "MaxListItems",
"variable" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxItems",
"marshallLocationName" : "MaxItems",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.*/",
"getterDocumentation" : "/**Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
\n@return Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.*/",
"fluentSetterDocumentation" : "/**Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Marker" : {
"documentation" : "Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "String",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Marker",
"marshallLocationName" : "Marker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.*/",
"getterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
\n@return Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.*/",
"fluentSetterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"DeleteAliasResult" : {
"c2jName" : "DeleteAliasResult",
"documentation" : null,
"shapeName" : "DeleteAliasResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : null,
"enums" : null,
"variable" : {
"variableName" : "deleteAliasResult",
"variableType" : "DeleteAliasResult",
"variableDeclarationType" : "DeleteAliasResult",
"documentation" : null,
"simpleType" : "DeleteAliasResult",
"variableSetterType" : "DeleteAliasResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : { }
},
"GetAliasResult" : {
"c2jName" : "AliasConfiguration",
"documentation" : "Provides configuration information about a Lambda function version alias.
",
"shapeName" : "GetAliasResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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
.
",
"name" : "AliasArn",
"c2jName" : "AliasArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AliasArn",
"marshallLocationName" : "AliasArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
.
\n@param aliasArn 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
.*/",
"getterDocumentation" : "/**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
.
\n@return 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
.*/",
"fluentSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Alias name.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias name.
\n@param name Alias name.*/",
"getterDocumentation" : "/**Alias name.
\n@return Alias name.*/",
"fluentSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Function version to which the alias points.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Function version to which the alias points.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.*/",
"getterDocumentation" : "/**Function version to which the alias points.
\n@return Function version to which the alias points.*/",
"fluentSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Alias description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias description.
\n@param description Alias description.*/",
"getterDocumentation" : "/**Alias description.
\n@return Alias description.*/",
"fluentSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "getAliasResult",
"variableType" : "GetAliasResult",
"variableDeclarationType" : "GetAliasResult",
"documentation" : null,
"simpleType" : "GetAliasResult",
"variableSetterType" : "GetAliasResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"FunctionVersion" : {
"documentation" : "Function version to which the alias points.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Function version to which the alias points.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.*/",
"getterDocumentation" : "/**Function version to which the alias points.
\n@return Function version to which the alias points.*/",
"fluentSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Function version to which the alias points.
\n@param functionVersion Function version to which the alias points.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "Alias name.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias name.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias name.
\n@param name Alias name.*/",
"getterDocumentation" : "/**Alias name.
\n@return Alias name.*/",
"fluentSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias name.
\n@param name Alias name.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "Alias description.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Alias description.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Alias description.
\n@param description Alias description.*/",
"getterDocumentation" : "/**Alias description.
\n@return Alias description.*/",
"fluentSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Alias description.
\n@param description Alias description.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"AliasArn" : {
"documentation" : "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
.
",
"name" : "AliasArn",
"c2jName" : "AliasArn",
"c2jShape" : "FunctionArn",
"variable" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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
.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "aliasArn",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "AliasArn",
"marshallLocationName" : "AliasArn",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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
.
\n@param aliasArn 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
.*/",
"getterDocumentation" : "/**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
.
\n@return 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
.*/",
"fluentSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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
.
\n@param aliasArn 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
.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"UpdateFunctionCodeRequest" : {
"c2jName" : "UpdateFunctionCodeRequest",
"documentation" : "",
"shapeName" : "UpdateFunctionCodeRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "
Based64-encoded .zip file containing your packaged source code.
",
"name" : "ZipFile",
"c2jName" : "ZipFile",
"c2jShape" : "Blob",
"variable" : {
"variableName" : "zipFile",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "Based64-encoded .zip file containing your packaged source code.
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "zipFile",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ZipFile",
"marshallLocationName" : "ZipFile",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Based64-encoded .zip file containing your packaged source code.
\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param zipFile Based64-encoded .zip file containing your packaged source code.*/",
"getterDocumentation" : "/**Based64-encoded .zip file containing your packaged source code.
\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return Based64-encoded .zip file containing your packaged source code.*/",
"fluentSetterDocumentation" : "/**Based64-encoded .zip file containing your packaged source code.
\n@param zipFile Based64-encoded .zip file containing your packaged source code.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Based64-encoded .zip file containing your packaged source code.
\n@param zipFile Based64-encoded .zip file containing your packaged source code.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "S3Bucket",
"c2jName" : "S3Bucket",
"c2jShape" : "S3Bucket",
"variable" : {
"variableName" : "s3Bucket",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "s3Bucket",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "S3Bucket",
"marshallLocationName" : "S3Bucket",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param s3Bucket 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param s3Bucket 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param s3Bucket 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon S3 object (the deployment package) key name you want to upload.
",
"name" : "S3Key",
"c2jName" : "S3Key",
"c2jShape" : "S3Key",
"variable" : {
"variableName" : "s3Key",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon S3 object (the deployment package) key name you want to upload.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "s3Key",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "S3Key",
"marshallLocationName" : "S3Key",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon S3 object (the deployment package) key name you want to upload.
\n@param s3Key The Amazon S3 object (the deployment package) key name you want to upload.*/",
"getterDocumentation" : "/**The Amazon S3 object (the deployment package) key name you want to upload.
\n@return The Amazon S3 object (the deployment package) key name you want to upload.*/",
"fluentSetterDocumentation" : "/**The Amazon S3 object (the deployment package) key name you want to upload.
\n@param s3Key The Amazon S3 object (the deployment package) key name you want to upload.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon S3 object (the deployment package) key name you want to upload.
\n@param s3Key The Amazon S3 object (the deployment package) key name you want to upload.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "The Amazon S3 object (the deployment package) version you want to upload.
",
"name" : "S3ObjectVersion",
"c2jName" : "S3ObjectVersion",
"c2jShape" : "S3ObjectVersion",
"variable" : {
"variableName" : "s3ObjectVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon S3 object (the deployment package) version you want to upload.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "s3ObjectVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "S3ObjectVersion",
"marshallLocationName" : "S3ObjectVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon S3 object (the deployment package) version you want to upload.
\n@param s3ObjectVersion The Amazon S3 object (the deployment package) version you want to upload.*/",
"getterDocumentation" : "/**The Amazon S3 object (the deployment package) version you want to upload.
\n@return The Amazon S3 object (the deployment package) version you want to upload.*/",
"fluentSetterDocumentation" : "/**The Amazon S3 object (the deployment package) version you want to upload.
\n@param s3ObjectVersion The Amazon S3 object (the deployment package) version you want to upload.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon S3 object (the deployment package) version you want to upload.
\n@param s3ObjectVersion The Amazon S3 object (the deployment package) version you want to upload.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
",
"name" : "Publish",
"c2jName" : "Publish",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "publish",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "publish",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Publish",
"marshallLocationName" : "Publish",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.*/",
"getterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
\n@return This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.*/",
"fluentSetterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "updateFunctionCodeRequest",
"variableType" : "UpdateFunctionCodeRequest",
"variableDeclarationType" : "UpdateFunctionCodeRequest",
"documentation" : null,
"simpleType" : "UpdateFunctionCodeRequest",
"variableSetterType" : "UpdateFunctionCodeRequest"
},
"marshaller" : {
"action" : "UpdateFunctionCode",
"verb" : "PUT",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/code",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Publish" : {
"documentation" : "This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
",
"name" : "Publish",
"c2jName" : "Publish",
"c2jShape" : "Boolean",
"variable" : {
"variableName" : "publish",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"setterModel" : {
"variableName" : "publish",
"variableType" : "Boolean",
"variableDeclarationType" : "Boolean",
"documentation" : "",
"simpleType" : "Boolean",
"variableSetterType" : "Boolean"
},
"getterModel" : {
"returnType" : "Boolean",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Publish",
"marshallLocationName" : "Publish",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.*/",
"getterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
\n@return This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.*/",
"fluentSetterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
\n@param publish This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"ZipFile" : {
"documentation" : "Based64-encoded .zip file containing your packaged source code.
",
"name" : "ZipFile",
"c2jName" : "ZipFile",
"c2jShape" : "Blob",
"variable" : {
"variableName" : "zipFile",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "Based64-encoded .zip file containing your packaged source code.
",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"setterModel" : {
"variableName" : "zipFile",
"variableType" : "java.nio.ByteBuffer",
"variableDeclarationType" : "java.nio.ByteBuffer",
"documentation" : "",
"simpleType" : "ByteBuffer",
"variableSetterType" : "java.nio.ByteBuffer"
},
"getterModel" : {
"returnType" : "java.nio.ByteBuffer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "ZipFile",
"marshallLocationName" : "ZipFile",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Based64-encoded .zip file containing your packaged source code.
\nAWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.\n
\n\nWarning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.\n
\n\n@param zipFile Based64-encoded .zip file containing your packaged source code.*/",
"getterDocumentation" : "/**Based64-encoded .zip file containing your packaged source code.
\n\n{@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the {@code position}.\n
\n@return Based64-encoded .zip file containing your packaged source code.*/",
"fluentSetterDocumentation" : "/**Based64-encoded .zip file containing your packaged source code.
\n@param zipFile Based64-encoded .zip file containing your packaged source code.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Based64-encoded .zip file containing your packaged source code.
\n@param zipFile Based64-encoded .zip file containing your packaged source code.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"S3Bucket" : {
"documentation" : "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.
",
"name" : "S3Bucket",
"c2jName" : "S3Bucket",
"c2jShape" : "S3Bucket",
"variable" : {
"variableName" : "s3Bucket",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "s3Bucket",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "S3Bucket",
"marshallLocationName" : "S3Bucket",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param s3Bucket 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param s3Bucket 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param s3Bucket 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**
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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**
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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"S3Key" : {
"documentation" : "
The Amazon S3 object (the deployment package) key name you want to upload.
",
"name" : "S3Key",
"c2jName" : "S3Key",
"c2jShape" : "S3Key",
"variable" : {
"variableName" : "s3Key",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon S3 object (the deployment package) key name you want to upload.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "s3Key",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "S3Key",
"marshallLocationName" : "S3Key",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon S3 object (the deployment package) key name you want to upload.
\n@param s3Key The Amazon S3 object (the deployment package) key name you want to upload.*/",
"getterDocumentation" : "/**The Amazon S3 object (the deployment package) key name you want to upload.
\n@return The Amazon S3 object (the deployment package) key name you want to upload.*/",
"fluentSetterDocumentation" : "/**The Amazon S3 object (the deployment package) key name you want to upload.
\n@param s3Key The Amazon S3 object (the deployment package) key name you want to upload.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon S3 object (the deployment package) key name you want to upload.
\n@param s3Key The Amazon S3 object (the deployment package) key name you want to upload.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"S3ObjectVersion" : {
"documentation" : "The Amazon S3 object (the deployment package) version you want to upload.
",
"name" : "S3ObjectVersion",
"c2jName" : "S3ObjectVersion",
"c2jShape" : "S3ObjectVersion",
"variable" : {
"variableName" : "s3ObjectVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "The Amazon S3 object (the deployment package) version you want to upload.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "s3ObjectVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "S3ObjectVersion",
"marshallLocationName" : "S3ObjectVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**The Amazon S3 object (the deployment package) version you want to upload.
\n@param s3ObjectVersion The Amazon S3 object (the deployment package) version you want to upload.*/",
"getterDocumentation" : "/**The Amazon S3 object (the deployment package) version you want to upload.
\n@return The Amazon S3 object (the deployment package) version you want to upload.*/",
"fluentSetterDocumentation" : "/**The Amazon S3 object (the deployment package) version you want to upload.
\n@param s3ObjectVersion The Amazon S3 object (the deployment package) version you want to upload.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**The Amazon S3 object (the deployment package) version you want to upload.
\n@param s3ObjectVersion The Amazon S3 object (the deployment package) version you want to upload.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListAliasesRequest" : {
"c2jName" : "ListAliasesRequest",
"documentation" : "",
"shapeName" : "ListAliasesRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Lambda function name for which the alias is created.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Lambda function name for which the alias is created.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Lambda function name for which the alias is created.
\n@param functionName Lambda function name for which the alias is created.*/",
"getterDocumentation" : "/**Lambda function name for which the alias is created.
\n@return Lambda function name for which the alias is created.*/",
"fluentSetterDocumentation" : "/**Lambda function name for which the alias is created.
\n@param functionName Lambda function name for which the alias is created.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Lambda function name for which the alias is created.
\n@param functionName Lambda function name for which the alias is created.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param functionVersion 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param functionVersion 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param functionVersion 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "String",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Marker",
"marshallLocationName" : "Marker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.*/",
"getterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
\n@return Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.*/",
"fluentSetterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
",
"name" : "MaxItems",
"c2jName" : "MaxItems",
"c2jShape" : "MaxListItems",
"variable" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxItems",
"marshallLocationName" : "MaxItems",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.*/",
"getterDocumentation" : "/**Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
\n@return Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.*/",
"fluentSetterDocumentation" : "/**Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listAliasesRequest",
"variableType" : "ListAliasesRequest",
"variableDeclarationType" : "ListAliasesRequest",
"documentation" : null,
"simpleType" : "ListAliasesRequest",
"variableSetterType" : "ListAliasesRequest"
},
"marshaller" : {
"action" : "ListAliases",
"verb" : "GET",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/aliases",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"MaxItems" : {
"documentation" : "Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
",
"name" : "MaxItems",
"c2jName" : "MaxItems",
"c2jShape" : "MaxListItems",
"variable" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"setterModel" : {
"variableName" : "maxItems",
"variableType" : "Integer",
"variableDeclarationType" : "Integer",
"documentation" : "",
"simpleType" : "Integer",
"variableSetterType" : "Integer"
},
"getterModel" : {
"returnType" : "Integer",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "MaxItems",
"marshallLocationName" : "MaxItems",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.*/",
"getterDocumentation" : "/**Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
\n@return Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.*/",
"fluentSetterDocumentation" : "/**Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.
\n@param maxItems Optional integer. Specifies the maximum number of aliases to return in response. This parameter value must be greater than 0.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionVersion" : {
"documentation" : "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.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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.
\n@param functionVersion 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.*/",
"getterDocumentation" : "/**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.
\n@return 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.*/",
"fluentSetterDocumentation" : "/**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.
\n@param functionVersion 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.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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.
\n@param functionVersion 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.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "Lambda function name for which the alias is created.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Lambda function name for which the alias is created.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Lambda function name for which the alias is created.
\n@param functionName Lambda function name for which the alias is created.*/",
"getterDocumentation" : "/**Lambda function name for which the alias is created.
\n@return Lambda function name for which the alias is created.*/",
"fluentSetterDocumentation" : "/**Lambda function name for which the alias is created.
\n@param functionName Lambda function name for which the alias is created.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Lambda function name for which the alias is created.
\n@param functionName Lambda function name for which the alias is created.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Marker" : {
"documentation" : "Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
",
"name" : "Marker",
"c2jName" : "Marker",
"c2jShape" : "String",
"variable" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "marker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Marker",
"marshallLocationName" : "Marker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "querystring",
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : true
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.*/",
"getterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
\n@return Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.*/",
"fluentSetterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.
\n@param marker Optional string. An opaque pagination token returned from a previous ListAliases
operation. If present, indicates where to continue the listing.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"PublishVersionRequest" : {
"c2jName" : "PublishVersionRequest",
"documentation" : "",
"shapeName" : "PublishVersionRequest",
"deprecated" : false,
"required" : [ "FunctionName" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "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 value must match the SHA256 of the $LATEST version for the publication to succeed.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 value must match the SHA256 of the $LATEST version for the publication to succeed.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 value must match the SHA256 of the $LATEST version for the publication to succeed.
\n@param codeSha256 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 value must match the SHA256 of the $LATEST version for the publication to succeed.*/",
"getterDocumentation" : "/**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 value must match the SHA256 of the $LATEST version for the publication to succeed.
\n@return 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 value must match the SHA256 of the $LATEST version for the publication to succeed.*/",
"fluentSetterDocumentation" : "/**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 value must match the SHA256 of the $LATEST version for the publication to succeed.
\n@param codeSha256 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 value must match the SHA256 of the $LATEST version for the publication to succeed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 value must match the SHA256 of the $LATEST version for the publication to succeed.
\n@param codeSha256 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 value must match the SHA256 of the $LATEST version for the publication to succeed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : " The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : " The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
\n@param description The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.*/",
"getterDocumentation" : "/** The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
\n@return The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.*/",
"fluentSetterDocumentation" : "/** The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
\n@param description The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
\n@param description The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "publishVersionRequest",
"variableType" : "PublishVersionRequest",
"variableDeclarationType" : "PublishVersionRequest",
"documentation" : null,
"simpleType" : "PublishVersionRequest",
"variableSetterType" : "PublishVersionRequest"
},
"marshaller" : {
"action" : "PublishVersion",
"verb" : "POST",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/versions",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"CodeSha256" : {
"documentation" : "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 value must match the SHA256 of the $LATEST version for the publication to succeed.
",
"name" : "CodeSha256",
"c2jName" : "CodeSha256",
"c2jShape" : "String",
"variable" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 value must match the SHA256 of the $LATEST version for the publication to succeed.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "codeSha256",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "CodeSha256",
"marshallLocationName" : "CodeSha256",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 value must match the SHA256 of the $LATEST version for the publication to succeed.
\n@param codeSha256 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 value must match the SHA256 of the $LATEST version for the publication to succeed.*/",
"getterDocumentation" : "/**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 value must match the SHA256 of the $LATEST version for the publication to succeed.
\n@return 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 value must match the SHA256 of the $LATEST version for the publication to succeed.*/",
"fluentSetterDocumentation" : "/**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 value must match the SHA256 of the $LATEST version for the publication to succeed.
\n@param codeSha256 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 value must match the SHA256 of the $LATEST version for the publication to succeed.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 value must match the SHA256 of the $LATEST version for the publication to succeed.
\n@param codeSha256 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 value must match the SHA256 of the $LATEST version for the publication to succeed.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : " The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : " The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/** The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
\n@param description The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.*/",
"getterDocumentation" : "/** The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
\n@return The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.*/",
"fluentSetterDocumentation" : "/** The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
\n@param description The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/** The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
\n@param description The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "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 character in length.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "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 character in length.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.*/",
"getterDocumentation" : "/**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 character in length.
\n@return 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 character in length.*/",
"fluentSetterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**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 character in length.
\n@param functionName 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 character in length.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"CreateAliasRequest" : {
"c2jName" : "CreateAliasRequest",
"documentation" : "",
"shapeName" : "CreateAliasRequest",
"deprecated" : false,
"required" : [ "FunctionName", "Name", "FunctionVersion" ],
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "Name of the Lambda function for which you want to create an alias.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Name of the Lambda function for which you want to create an alias.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Name of the Lambda function for which you want to create an alias.
\n@param functionName Name of the Lambda function for which you want to create an alias.*/",
"getterDocumentation" : "/**Name of the Lambda function for which you want to create an alias.
\n@return Name of the Lambda function for which you want to create an alias.*/",
"fluentSetterDocumentation" : "/**Name of the Lambda function for which you want to create an alias.
\n@param functionName Name of the Lambda function for which you want to create an alias.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Name of the Lambda function for which you want to create an alias.
\n@param functionName Name of the Lambda function for which you want to create an alias.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Name for the alias you are creating.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Name for the alias you are creating.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Name for the alias you are creating.
\n@param name Name for the alias you are creating.*/",
"getterDocumentation" : "/**Name for the alias you are creating.
\n@return Name for the alias you are creating.*/",
"fluentSetterDocumentation" : "/**Name for the alias you are creating.
\n@param name Name for the alias you are creating.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Name for the alias you are creating.
\n@param name Name for the alias you are creating.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Lambda function version for which you are creating the alias.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Lambda function version for which you are creating the alias.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Lambda function version for which you are creating the alias.
\n@param functionVersion Lambda function version for which you are creating the alias.*/",
"getterDocumentation" : "/**Lambda function version for which you are creating the alias.
\n@return Lambda function version for which you are creating the alias.*/",
"fluentSetterDocumentation" : "/**Lambda function version for which you are creating the alias.
\n@param functionVersion Lambda function version for which you are creating the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Lambda function version for which you are creating the alias.
\n@param functionVersion Lambda function version for which you are creating the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "Description of the alias.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Description of the alias.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Description of the alias.
\n@param description Description of the alias.*/",
"getterDocumentation" : "/**Description of the alias.
\n@return Description of the alias.*/",
"fluentSetterDocumentation" : "/**Description of the alias.
\n@param description Description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Description of the alias.
\n@param description Description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "createAliasRequest",
"variableType" : "CreateAliasRequest",
"variableDeclarationType" : "CreateAliasRequest",
"documentation" : null,
"simpleType" : "CreateAliasRequest",
"variableSetterType" : "CreateAliasRequest"
},
"marshaller" : {
"action" : "CreateAlias",
"verb" : "POST",
"target" : null,
"requestUri" : "/2015-03-31/functions/{FunctionName}/aliases",
"locationName" : null,
"xmlNameSpaceUri" : null
},
"unmarshaller" : null,
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"FunctionVersion" : {
"documentation" : "Lambda function version for which you are creating the alias.
",
"name" : "FunctionVersion",
"c2jName" : "FunctionVersion",
"c2jShape" : "Version",
"variable" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Lambda function version for which you are creating the alias.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionVersion",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionVersion",
"marshallLocationName" : "FunctionVersion",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Lambda function version for which you are creating the alias.
\n@param functionVersion Lambda function version for which you are creating the alias.*/",
"getterDocumentation" : "/**Lambda function version for which you are creating the alias.
\n@return Lambda function version for which you are creating the alias.*/",
"fluentSetterDocumentation" : "/**Lambda function version for which you are creating the alias.
\n@param functionVersion Lambda function version for which you are creating the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Lambda function version for which you are creating the alias.
\n@param functionVersion Lambda function version for which you are creating the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Name" : {
"documentation" : "Name for the alias you are creating.
",
"name" : "Name",
"c2jName" : "Name",
"c2jShape" : "Alias",
"variable" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Name for the alias you are creating.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "name",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Name",
"marshallLocationName" : "Name",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Name for the alias you are creating.
\n@param name Name for the alias you are creating.*/",
"getterDocumentation" : "/**Name for the alias you are creating.
\n@return Name for the alias you are creating.*/",
"fluentSetterDocumentation" : "/**Name for the alias you are creating.
\n@param name Name for the alias you are creating.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Name for the alias you are creating.
\n@param name Name for the alias you are creating.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"Description" : {
"documentation" : "Description of the alias.
",
"name" : "Description",
"c2jName" : "Description",
"c2jShape" : "Description",
"variable" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Description of the alias.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "description",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Description",
"marshallLocationName" : "Description",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Description of the alias.
\n@param description Description of the alias.*/",
"getterDocumentation" : "/**Description of the alias.
\n@return Description of the alias.*/",
"fluentSetterDocumentation" : "/**Description of the alias.
\n@param description Description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Description of the alias.
\n@param description Description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"FunctionName" : {
"documentation" : "Name of the Lambda function for which you want to create an alias.
",
"name" : "FunctionName",
"c2jName" : "FunctionName",
"c2jShape" : "FunctionName",
"variable" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "Name of the Lambda function for which you want to create an alias.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "functionName",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "FunctionName",
"marshallLocationName" : "FunctionName",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : "uri",
"flattened" : false,
"header" : false,
"uri" : true,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**Name of the Lambda function for which you want to create an alias.
\n@param functionName Name of the Lambda function for which you want to create an alias.*/",
"getterDocumentation" : "/**Name of the Lambda function for which you want to create an alias.
\n@return Name of the Lambda function for which you want to create an alias.*/",
"fluentSetterDocumentation" : "/**Name of the Lambda function for which you want to create an alias.
\n@param functionName Name of the Lambda function for which you want to create an alias.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**Name of the Lambda function for which you want to create an alias.
\n@param functionName Name of the Lambda function for which you want to create an alias.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}
}
},
"ListVersionsByFunctionResult" : {
"c2jName" : "ListVersionsByFunctionResponse",
"documentation" : "",
"shapeName" : "ListVersionsByFunctionResult",
"deprecated" : false,
"required" : null,
"hasPayloadMember" : false,
"hasHeaderMember" : false,
"hasStatusCodeMember" : false,
"hasStreamingMember" : false,
"wrapper" : false,
"members" : [ {
"documentation" : "A string, present if there are more function versions.
",
"name" : "NextMarker",
"c2jName" : "NextMarker",
"c2jShape" : "String",
"variable" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "A string, present if there are more function versions.
",
"simpleType" : "String",
"variableSetterType" : "String"
},
"setterModel" : {
"variableName" : "nextMarker",
"variableType" : "String",
"variableDeclarationType" : "String",
"documentation" : "",
"simpleType" : "String",
"variableSetterType" : "String"
},
"getterModel" : {
"returnType" : "String",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "NextMarker",
"marshallLocationName" : "NextMarker",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : true,
"list" : false,
"map" : false,
"setterDocumentation" : "/**A string, present if there are more function versions.
\n@param nextMarker A string, present if there are more function versions.*/",
"getterDocumentation" : "/**A string, present if there are more function versions.
\n@return A string, present if there are more function versions.*/",
"fluentSetterDocumentation" : "/**A string, present if there are more function versions.
\n@param nextMarker A string, present if there are more function versions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A string, present if there are more function versions.
\n@param nextMarker A string, present if there are more function versions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
}, {
"documentation" : "A list of Lambda function versions.
",
"name" : "Versions",
"c2jName" : "Versions",
"c2jShape" : "FunctionList",
"variable" : {
"variableName" : "versions",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of Lambda function versions.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "versions",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"getterModel" : {
"returnType" : "java.util.List",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "Versions",
"marshallLocationName" : "Versions",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : {
"memberType" : "FunctionConfiguration",
"memberLocationName" : null,
"implType" : "com.amazonaws.internal.SdkInternalList",
"interfaceType" : "java.util.List",
"listMemberModel" : {
"documentation" : "",
"name" : "Member",
"c2jName" : "member",
"c2jShape" : "FunctionConfiguration",
"variable" : {
"variableName" : "member",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"setterModel" : {
"variableName" : "member",
"variableType" : "FunctionConfiguration",
"variableDeclarationType" : "FunctionConfiguration",
"documentation" : "",
"simpleType" : "FunctionConfiguration",
"variableSetterType" : "FunctionConfiguration"
},
"getterModel" : {
"returnType" : "FunctionConfiguration",
"documentation" : null
},
"http" : {
"unmarshallLocationName" : "member",
"marshallLocationName" : "member",
"additionalUnmarshallingPath" : null,
"additionalMarshallingPath" : null,
"isPayload" : false,
"isStreaming" : false,
"location" : null,
"flattened" : false,
"header" : false,
"uri" : false,
"statusCode" : false,
"queryString" : false
},
"deprecated" : false,
"listModel" : null,
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : false,
"map" : false,
"setterDocumentation" : "/**\n@param member */",
"getterDocumentation" : "/**\n@return */",
"fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/"
},
"memberAdditionalMarshallingPath" : null,
"memberAdditionalUnmarshallingPath" : null,
"sendEmptyQueryString" : false,
"templateType" : "java.util.List",
"templateImplType" : "com.amazonaws.internal.SdkInternalList",
"simple" : false,
"map" : false,
"simpleType" : "FunctionConfiguration"
},
"mapModel" : null,
"enumType" : null,
"xmlNameSpaceUri" : null,
"idempotencyToken" : false,
"simple" : false,
"list" : true,
"map" : false,
"setterDocumentation" : "/**A list of Lambda function versions.
\n@param versions A list of Lambda function versions.*/",
"getterDocumentation" : "/**A list of Lambda function versions.
\n@return A list of Lambda function versions.*/",
"fluentSetterDocumentation" : "/**A list of Lambda function versions.
\n@param versions A list of Lambda function versions.\n@return Returns a reference to this object so that method calls can be chained together.*/",
"varargSetterDocumentation" : "/**A list of Lambda function versions.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setVersions(java.util.Collection)} or {@link #withVersions(java.util.Collection)} if you want to override the existing values.
\n@param versions A list of Lambda function versions.\n@return Returns a reference to this object so that method calls can be chained together.*/"
} ],
"enums" : null,
"variable" : {
"variableName" : "listVersionsByFunctionResult",
"variableType" : "ListVersionsByFunctionResult",
"variableDeclarationType" : "ListVersionsByFunctionResult",
"documentation" : null,
"simpleType" : "ListVersionsByFunctionResult",
"variableSetterType" : "ListVersionsByFunctionResult"
},
"marshaller" : null,
"unmarshaller" : {
"resultWrapper" : null,
"flattened" : false
},
"errorCode" : null,
"customization" : {
"artificialResultWrapper" : null,
"skipGeneratingModelClass" : false,
"skipGeneratingMarshaller" : false,
"skipGeneratingUnmarshaller" : false
},
"membersAsMap" : {
"Versions" : {
"documentation" : "A list of Lambda function versions.
",
"name" : "Versions",
"c2jName" : "Versions",
"c2jShape" : "FunctionList",
"variable" : {
"variableName" : "versions",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList",
"documentation" : "A list of Lambda function versions.
",
"simpleType" : "List",
"variableSetterType" : "java.util.Collection"
},
"setterModel" : {
"variableName" : "versions",
"variableType" : "java.util.List",
"variableDeclarationType" : "com.amazonaws.internal.SdkInternalList