Skip to content

Commit

Permalink
[autosync] Make generateDeserializePayloadFn not take in an operati…
Browse files Browse the repository at this point in the history
…on shape (#1250)

The binding generator class is already scoped to a single operation
shape stored as a property.
  • Loading branch information
david-perez authored and jdisanti committed Mar 17, 2022
1 parent d53c304 commit 75dfe2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .smithyrs-githash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c059491a32e3c1aa5529c74d5c9f0f2b02fa5494
beeca577cb96fe07ece3200059fa1bcb56bfe166
6 changes: 3 additions & 3 deletions examples/cloudformation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ You must have an AWS account, and have configured your default credentials and A

This example creates a CloudFormation stack in the region.

`cargo run --bin create-stacks -- -s STACK-NAME -t TEMPLATE-FILE [-d DEFAULT-REGION] [-v]`
`cargo run --bin create-stack -- -s STACK-NAME -t TEMPLATE-FILE [-d DEFAULT-REGION] [-v]`

- _STACK-NAME_ is name of the stack.
- _TEMPLATE-FILE_ is name of the template file, in either JSON or YAML format.
Expand All @@ -47,7 +47,7 @@ This example creates a CloudFormation stack in the region.

This example deletes a CloudFormation stack in the region.

`cargo run --bin delete-stacks -- -s STACK-NAME [-d DEFAULT-REGION] [-v]`
`cargo run --bin delete-stack -- -s STACK-NAME [-d DEFAULT-REGION] [-v]`

- _STACK-NAME_ is name of the stack.
- _DEFAULT-REGION_ is name of the AWS Region, such as __us-east-1__, where the stacks are located.
Expand All @@ -59,7 +59,7 @@ This example deletes a CloudFormation stack in the region.

This example retrieves the status of a CloudFormation stack in the region.

`cargo run --bin describe-stacks -- -s STACK-NAME [-d DEFAULT-REGION] [-v]`
`cargo run --bin describe-stack -- -s STACK-NAME [-d DEFAULT-REGION] [-v]`

- _STACK-NAME_ is name of the stack.
If the stack does not exist, the code panics.
Expand Down

0 comments on commit 75dfe2b

Please sign in to comment.