npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@aws-lite/cloudformation

v0.1.3

Published

Official `aws-lite` plugin for CloudFormation

Downloads

8,477

Readme

@aws-lite/cloudformation

Official aws-lite plugin for CloudFormation

Maintained by: @architect

Install

npm i @aws-lite/cloudformation

Optionally install types:

npm i -D @aws-lite/cloudformation-types

Reference

Reference documentation with examples at aws-lite.org

Reference

Reference documentation with examples at aws-lite.org

Methods

CreateStack

Canonical AWS API doc

Properties:

  • StackName (string) [required]
    • Stack name or ID
  • Capabilities (array)
    • Array of CloudFormation capabilities necessary for stack creation; can be any of: CAPABILITY_IAM, CAPABILITY_NAMED_IAM, CAPABILITY_AUTO_EXPAND
  • ClientRequestToken (string)
    • Unique identifier for this request; from 1 - 128b matching [a-zA-Z0-9][-a-zA-Z0-9]*
  • DisableRollback (boolean)
    • Set to true to disable rollback of the stack if stack creation failed
  • EnableTerminationProtection (boolean)
  • NotificationARNs (array)
    • Array of SNS topic ARNs to publish stack related events
  • OnFailure (string)
    • Action to be taken if stack creation failes; can be one of: DO_NOTHING, ROLLBACK, DELETE
  • Parameters (array)
  • ResourceTypes (array)
    • Array of CloudFormation template resource types with permissions for this create stack action
    • More details (AWS)
  • RetainExceptOnCreate (boolean)
    • Set to true to ensure newly created resources are deleted if the operation rolls back, even if marked with a deletion policy of Retain
  • RoleARN (string)
    • IAM role ARN CloudFormation assumes to create the stack
  • RollbackConfiguration (object)
  • StackPolicyBody (string, object)
    • Stack policy document; an object will be automatically serialized to JSON, or supply pre-serialized JSON
    • More details (AWS)
  • StackPolicyURL (string)
    • Stack policy url
  • Tags (array)
  • TemplateBody (string, object)
    • CloudFormation template object (which will be automatically serialized to JSON for you), or pre-serialized JSON or YAML; can be up to 51,200 b
  • TemplateURL (string)
    • S3 location of CloudFormation template; can be up to 460,800 b
  • TimeoutInMinutes (number)
    • Amount of time before the stack status becomes CREATE_FAILED

DeleteStack

Canonical AWS API doc

Properties:

  • StackName (string) [required]
    • Stack name or ID
  • ClientRequestToken (string)
    • Unique identifier for this request; from 1 - 128b matching [a-zA-Z0-9][-a-zA-Z0-9]*
  • RetainResources (array)
    • List of logical resource IDs to retain after stack deletion
  • RoleARN (string)
    • IAM role ARN to assume during deletion

DescribeStackResources

Canonical AWS API doc

Properties:

  • StackName (string)
    • Stack name or ID
  • LogicalResourceId (string)
    • Logical name of a resource
  • PhysicalResourceId (string)
    • Physical name or ID of a resource; if you do not specify PhysicalResourceId, you must specify StackName

DescribeStacks

Canonical AWS API doc

Properties:

  • StackName (string)
    • Stack name or ID
  • NextToken (string)
    • Pagination cursor token to be used if NextToken was returned in a previous response
  • paginate (boolean, string)
    • Enable automatic result pagination; use this instead of making your own individual pagination requests

ListStackResources

Canonical AWS API doc

Properties:

  • StackName (string) [required]
    • Stack name or ID
  • NextToken (string)
    • Pagination cursor token to be used if NextToken was returned in a previous response
  • paginate (boolean, string)
    • Enable automatic result pagination; use this instead of making your own individual pagination requests

UpdateStack

Canonical AWS API doc

Properties:

  • StackName (string) [required]
    • Stack name or ID
  • Capabilities (array)
    • Array of CloudFormation capabilities necessary for stack creation; can be any of: CAPABILITY_IAM, CAPABILITY_NAMED_IAM, CAPABILITY_AUTO_EXPAND
  • ClientRequestToken (string)
    • Unique identifier for this request; from 1 - 128b matching [a-zA-Z0-9][-a-zA-Z0-9]*
  • DisableRollback (boolean)
    • Set to true to disable rollback of the stack if stack creation failed
  • NotificationARNs (array)
    • Array of SNS topic ARNs to publish stack related events
  • Parameters (array)
  • ResourceTypes (array)
    • Array of CloudFormation template resource types with permissions for this create stack action
    • More details (AWS)
  • RetainExceptOnCreate (boolean)
    • Set to true to ensure newly created resources are deleted if the operation rolls back, even if marked with a deletion policy of Retain
  • RoleARN (string)
    • IAM role ARN CloudFormation assumes to create the stack
  • RollbackConfiguration (object)
  • StackPolicyBody (string, object)
    • Stack policy document; an object will be automatically serialized to JSON, or supply pre-serialized JSON
    • More details (AWS)
  • StackPolicyURL (string)
    • Stack policy url
  • Tags (array)
  • TemplateBody (string, object)
    • CloudFormation template object (which will be automatically serialized to JSON for you), or pre-serialized JSON or YAML; can be up to 51,200 b
  • TemplateURL (string)
    • S3 location of CloudFormation template; can be up to 460,800 b

UpdateTerminationProtection

Canonical AWS API doc

Properties:

  • StackName (string) [required]
    • Stack name or ID
  • EnableTerminationProtection (boolean) [required]
    • Enable termination protection on the specified stack

Methods yet to be implemented

Please help out by opening a PR!

Learn more