Chris/0

Results 32 comments of Chris/0

Hi, @normj. I imagine _probably_ that you’re still slammed, what with .NET 6 coming. But do you have an idea as to when this can be looked at (without revealing...

@awsstudygroup2021 It's not any universal CloudFormation thing. It's a named [Condition][] from the template referenced in the original post: ```yaml Conditions: PrivateSubnetsCondition: !Equals [!Ref 'CreatePrivateSubnets', 'true'] ``` [Condition]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/conditions-section-structure.html

> Then associate it with your API stage by using the API arn (by using `!Ref MyApi.Stage`) [...] @keetonian Doesn't `!Ref MyApi.Stage` give the _name_ of the stage? In order...

Perhaps that's the first small value SAM could provide in this area, then. Moving the relationship into the `AWS::Serverless::Api` so that the Stage ARN construction is abstracted away, that is....

@dave-kennedy It's the other way around. As one of the `Targets` of the `AWS::Events::Rule`, specify the Lambda Function. ```yaml ExampleRule: Type: AWS::Events::Rule Properties: EventBusName: !Ref ExampleEventBus EventPattern: # the pattern...

I'm afraid I must not understand your question correctly. Are you asking whether you can use a rule to subscribe to a topic? SNS doesn't emit messages onto EventBridge buses,...

I re-implemented this, having failed to find this ticket and its PR beforehand. Oops! I am also eager to see this done – there are linting tools (including AWS' own...

For reasons of backwards compatibility, the extra stage must continue to be created by default. However, the SAM team [determined][] – once the new version of Open API became available...

Viewing this diff while ignoring whitespace differences will better illustrate how small this change truly is.

Looks as though this was fixed for SQS in #991. I don't know if there's any interest in what I think is a more complete solution. If not, please do...