cloudformation-cli
cloudformation-cli copied to clipboard
The CloudFormation Provider Development Toolkit allows you to author your own resource providers and modules that can be used by CloudFormation.
When a new resource type is being registered, the backend automation runs the contract test suite. The `cfn submit` waiter has no handle to adjust the operation timeout. Hence, if...
I'm working on a provider that will require access to resources within a VPC. The current case is that I have an RDS database within a private VPC. I can...
I'm following the instructions in the readme file to set up a virtual environment. As below and I am getting errors. ``` python3 -m venv env source env/bin/activate pip install...
Currently, any stdout in Handler code is pushed to CFN service account, which is why [CW EMF metrics](https://github.com/awslabs/aws-embedded-metrics-java/blob/master/src/main/java/software/amazon/cloudwatchlogs/emf/sinks/ConsoleSink.java) won't work. It would be great to support emitting CW EMF metrics...
This is a 'customer cost reduction' issue. A user should be able to optionally to use the the aws/s3 kms key, and to configure it as the default key for...
I implemented the list handler for resource AWS::CodeGuruReviewer::RepositoryAssociation. Our service uses DynamoDB and the list handler will call the api as long as the nextToken is not null. In our...
from model (jsonschema): ``` "value":{ "oneOf":[ { "type":"string" }, { "type":"integer" }, { "$ref":"https://apigateway.amazonaws.com/restapis/{RestApiId}/models/Emails" }, { "$ref":"https://apigateway.amazonaws.com/restapis/{RestApiId}/models/Phones" }, { "type":"integer" }, { "type":"null" } ] } ``` generated OpenAPI3.0: ```...
Hello - my resource, AWS::ApiGateway::UsagePlan throttles UpdateUsagePlan APIs to 1 every 20 seconds. I handle this in the code using the following `handleError` block - ``` } else if (sdkException...
can we have a lambda function with gets the template as input and during the run time it initialise it as cfn modules and register it to cfn registry ?
while trying to run `cfn submit` creating the CloudFormationManagedUploadInfrastructure stack fails as my companies enforced role boundaries require a specific PermissionBoundary and ManagedPolicy be present. If i manually create the...