Destroy resources created via Serverless without destroying Lambda endpoints
问题 I have the following resource defined in my serverless.yml file. Its working great to create the resource for all my different stages of development. resources: Resources: uploadBucket: Type: AWS::S3::Bucket Properties: BucketName: ${self:service}-${self:custom.stage}-uploads visitsTable: Type: AWS::DynamoDB::Table Properties: TableName: ${self:custom.visitsTable} AttributeDefinitions: - AttributeName: userId AttributeType: S - AttributeName: visitId AttributeType: S KeySchema: -