![]() |
![]()
| ![]() |
![]()
NAMEPaws::ServerlessRepo - Perl Interface to AWS AWSServerlessApplicationRepository SYNOPSISuse Paws; my $obj = Paws->service('ServerlessRepo'); my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); DESCRIPTIONThe AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find and deploy serverless applications in the AWS Cloud. For more information about serverless applications, see Serverless Computing and Applications on the AWS website. The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of all levels can get started with serverless computing without needing to learn anything new. You can use category keywords to browse for applications such as web and mobile backends, data processing applications, or chatbots. You can also search for applications by name, publisher, or event source. To use an application, you simply choose it, configure any required fields, and deploy it with a few clicks. You can also easily publish applications, sharing them publicly with the community at large, or privately within your team or across your organization. To publish a serverless application (or app), you can use the AWS Management Console, AWS Command Line Interface (AWS CLI), or AWS SDKs to upload the code. Along with the code, you upload a simple manifest file, also known as the AWS Serverless Application Model (AWS SAM) template. For more information about AWS SAM, see AWS Serverless Application Model (AWS SAM) on the AWS Labs GitHub repository. The AWS Serverless Application Repository Developer Guide contains more information about the two developer experiences available:
For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08> METHODSCreateApplication
Each argument is described in detail in: Paws::ServerlessRepo::CreateApplication Returns: a Paws::ServerlessRepo::CreateApplicationResponse instance Creates an application, optionally including an AWS SAM file to create the first application version in the same call. CreateApplicationVersion
Each argument is described in detail in: Paws::ServerlessRepo::CreateApplicationVersion Returns: a Paws::ServerlessRepo::CreateApplicationVersionResponse instance Creates an application version. CreateCloudFormationChangeSet
Each argument is described in detail in: Paws::ServerlessRepo::CreateCloudFormationChangeSet Returns: a Paws::ServerlessRepo::CreateCloudFormationChangeSetResponse instance Creates an AWS CloudFormation change set for the given application. CreateCloudFormationTemplate
Each argument is described in detail in: Paws::ServerlessRepo::CreateCloudFormationTemplate Returns: a Paws::ServerlessRepo::CreateCloudFormationTemplateResponse instance Creates an AWS CloudFormation template. DeleteApplicationEach argument is described in detail in: Paws::ServerlessRepo::DeleteApplication Returns: nothing Deletes the specified application. GetApplication
Each argument is described in detail in: Paws::ServerlessRepo::GetApplication Returns: a Paws::ServerlessRepo::GetApplicationResponse instance Gets the specified application. GetApplicationPolicyEach argument is described in detail in: Paws::ServerlessRepo::GetApplicationPolicy Returns: a Paws::ServerlessRepo::GetApplicationPolicyResponse instance Retrieves the policy for the application. GetCloudFormationTemplateEach argument is described in detail in: Paws::ServerlessRepo::GetCloudFormationTemplate Returns: a Paws::ServerlessRepo::GetCloudFormationTemplateResponse instance Gets the specified AWS CloudFormation template. ListApplicationDependencies
Each argument is described in detail in: Paws::ServerlessRepo::ListApplicationDependencies Returns: a Paws::ServerlessRepo::ListApplicationDependenciesResponse instance Retrieves the list of applications nested in the containing application. ListApplications
Each argument is described in detail in: Paws::ServerlessRepo::ListApplications Returns: a Paws::ServerlessRepo::ListApplicationsResponse instance Lists applications owned by the requester. ListApplicationVersions
Each argument is described in detail in: Paws::ServerlessRepo::ListApplicationVersions Returns: a Paws::ServerlessRepo::ListApplicationVersionsResponse instance Lists versions for the specified application. PutApplicationPolicyEach argument is described in detail in: Paws::ServerlessRepo::PutApplicationPolicy Returns: a Paws::ServerlessRepo::PutApplicationPolicyResponse instance Sets the permission policy for an application. For the list of actions supported for this operation, see Application Permissions (https://docs.aws.amazon.com/serverlessrepo/latest/devguide/access-control-resource-based.html#application-permissions) . UnshareApplicationEach argument is described in detail in: Paws::ServerlessRepo::UnshareApplication Returns: nothing Unshares an application from an AWS Organization. This operation can be called only from the organization's master account. UpdateApplication
Each argument is described in detail in: Paws::ServerlessRepo::UpdateApplication Returns: a Paws::ServerlessRepo::UpdateApplicationResponse instance Updates the specified application. PAGINATORSPaginator methods are helpers that repetively call methods that return partial results ListAllApplicationDependencies(sub { },ApplicationId => Str, [MaxItems => Int, NextToken => Str, SemanticVersion => Str])ListAllApplicationDependencies(ApplicationId => Str, [MaxItems => Int, NextToken => Str, SemanticVersion => Str])If passed a sub as first parameter, it will call the sub for each element found in : - Dependencies, passing the object as the first parameter, and the string 'Dependencies' as the second parameter If not, it will return a a Paws::ServerlessRepo::ListApplicationDependenciesResponse instance with all the "param"s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. ListAllApplications(sub { },[MaxItems => Int, NextToken => Str])ListAllApplications([MaxItems => Int, NextToken => Str])If passed a sub as first parameter, it will call the sub for each element found in : - Applications, passing the object as the first parameter, and the string 'Applications' as the second parameter If not, it will return a a Paws::ServerlessRepo::ListApplicationsResponse instance with all the "param"s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. ListAllApplicationVersions(sub { },ApplicationId => Str, [MaxItems => Int, NextToken => Str])ListAllApplicationVersions(ApplicationId => Str, [MaxItems => Int, NextToken => Str])If passed a sub as first parameter, it will call the sub for each element found in : - Versions, passing the object as the first parameter, and the string 'Versions' as the second parameter If not, it will return a a Paws::ServerlessRepo::ListApplicationVersionsResponse instance with all the "param"s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. SEE ALSOThis service class forms part of Paws BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|