Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .doc_gen/metadata/cognito-identity-provider_metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,7 @@ cognito-identity-provider_ListUsers:
versions:
- sdk_version: 1
github: swift/example_code/cognito-identity-provider
sdkguide:
excerpts:
- description:
snippet_tags:
Expand Down
26 changes: 13 additions & 13 deletions dotnetv4/ControlTower/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,31 +31,31 @@ For prerequisites, see the [README](../README.md#Prerequisites) in the `dotnetv4

### Get started

- [Hello AWS Control Tower](Actions/HelloControlTower.cs#L4) (`ListBaselines`)
- [Hello AWS Control Tower](../ControlTower/Actions/HelloControlTower.cs#L4) (`ListBaselines`)


### Basics

Code examples that show you how to perform the essential operations within a service.

- [Learn the basics](Scenarios/ControlTower_Basics/ControlTowerBasics.cs)
- [Learn the basics](../ControlTower/Scenarios/ControlTower_Basics/ControlTowerBasics.cs)


### Single actions

Code excerpts that show you how to call individual service functions.

- [DisableBaseline](Actions/ControlTowerWrapper.cs#L181)
- [DisableControl](Actions/ControlTowerWrapper.cs#L401)
- [EnableBaseline](Actions/ControlTowerWrapper.cs#L120)
- [EnableControl](Actions/ControlTowerWrapper.cs#L345)
- [GetBaselineOperation](Actions/ControlTowerWrapper.cs#L273)
- [GetControlOperation](Actions/ControlTowerWrapper.cs#L449)
- [ListBaselines](Actions/ControlTowerWrapper.cs#L62)
- [ListEnabledBaselines](Actions/ControlTowerWrapper.cs#L91)
- [ListEnabledControls](Actions/ControlTowerWrapper.cs#L305)
- [ListLandingZones](Actions/ControlTowerWrapper.cs#L33)
- [ResetEnabledBaseline](Actions/ControlTowerWrapper.cs#L227)
- [DisableBaseline](../ControlTower/Actions/ControlTowerWrapper.cs#L181)
- [DisableControl](../ControlTower/Actions/ControlTowerWrapper.cs#L401)
- [EnableBaseline](../ControlTower/Actions/ControlTowerWrapper.cs#L120)
- [EnableControl](../ControlTower/Actions/ControlTowerWrapper.cs#L345)
- [GetBaselineOperation](../ControlTower/Actions/ControlTowerWrapper.cs#L273)
- [GetControlOperation](../ControlTower/Actions/ControlTowerWrapper.cs#L449)
- [ListBaselines](../ControlTower/Actions/ControlTowerWrapper.cs#L62)
- [ListEnabledBaselines](../ControlTower/Actions/ControlTowerWrapper.cs#L91)
- [ListEnabledControls](../ControlTower/Actions/ControlTowerWrapper.cs#L305)
- [ListLandingZones](../ControlTower/Actions/ControlTowerWrapper.cs#L33)
- [ResetEnabledBaseline](../ControlTower/Actions/ControlTowerWrapper.cs#L227)


<!--custom.examples.start-->
Expand Down
22 changes: 11 additions & 11 deletions dotnetv4/DynamoDB/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,29 @@ For prerequisites, see the [README](../README.md#Prerequisites) in the `dotnetv4

### Get started

- [Hello DynamoDB](Actions/HelloDynamoDB.cs#L4) (`ListTables`)
- [Hello DynamoDB](../DynamoDB/Actions/HelloDynamoDB.cs#L4) (`ListTables`)


### Basics

Code examples that show you how to perform the essential operations within a service.

- [Learn the basics](Scenarios/DynamoDB_Basics/DynamoDbBasics.cs)
- [Learn the basics](../../dotnetv3/dynamodb/scenarios/DynamoDB_Basics/DynamoDB_Basics_Scenario/DynamoDB_Basics.cs)


### Single actions

Code excerpts that show you how to call individual service functions.

- [BatchWriteItem](Actions/DynamoDbWrapper.cs#L277)
- [CreateTable](Actions/DynamoDbWrapper.cs#L27)
- [DeleteItem](Actions/DynamoDbWrapper.cs#L366)
- [DeleteTable](Actions/DynamoDbWrapper.cs#L552)
- [GetItem](Actions/DynamoDbWrapper.cs#L229)
- [PutItem](Actions/DynamoDbWrapper.cs#L115)
- [Query](Actions/DynamoDbWrapper.cs#L413)
- [Scan](Actions/DynamoDbWrapper.cs#L487)
- [UpdateItem](Actions/DynamoDbWrapper.cs#L162)
- [BatchWriteItem](../DynamoDB/Actions/DynamoDbWrapper.cs#L277)
- [CreateTable](../DynamoDB/Actions/DynamoDbWrapper.cs#L27)
- [DeleteItem](../DynamoDB/Actions/DynamoDbWrapper.cs#L366)
- [DeleteTable](../DynamoDB/Actions/DynamoDbWrapper.cs#L552)
- [GetItem](../DynamoDB/Actions/DynamoDbWrapper.cs#L229)
- [PutItem](../DynamoDB/Actions/DynamoDbWrapper.cs#L115)
- [Query](../DynamoDB/Actions/DynamoDbWrapper.cs#L413)
- [Scan](../DynamoDB/Actions/DynamoDbWrapper.cs#L487)
- [UpdateItem](../DynamoDB/Actions/DynamoDbWrapper.cs#L162)


<!--custom.examples.start-->
Expand Down
4 changes: 2 additions & 2 deletions python/example_code/bedrock-agent-runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ python -m pip install -r requirements.txt

Code examples that show you how to perform the essential operations within a service.

- [Learn the basics](flows/flow-conversation.py)
- [Learn the basics](../bedrock-agent/flows/flow-conversation.py)


### Single actions
Expand Down Expand Up @@ -79,7 +79,7 @@ This example shows you how to use InvokeFlow to converse with an Amazon Bedrock
Start the example by running the following at a command prompt:

```
python flows/flow-conversation.py
python ../bedrock-agent/flows/flow-conversation.py
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// (swift-tools-version has two lines here because it needs to be the first
// line in the file, but it should also appear in the snippet below)
//
// snippet-start:[swift.cognito-identity-provider.scenario.package]
// snippet-start:[swift.cognito-identity-provider.ListUsers.package]
// swift-tools-version: 5.9
//
// The swift-tools-version declares the minimum version of Swift required to
Expand Down Expand Up @@ -44,4 +44,4 @@ let package = Package(

]
)
// snippet-end:[swift.cognito-identity-provider.scenario.package]
// snippet-end:[swift.cognito-identity-provider.ListUsers.package]
2 changes: 1 addition & 1 deletion swift/example_code/cognito-identity-provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Code excerpts that show you how to call individual service functions.
Code examples that show you how to accomplish a specific task by calling multiple
functions within the same service.

- [Sign up a user with a user pool that requires MFA](../swift-sdk/http-config/Package.swift)
- [Sign up a user with a user pool that requires MFA](scenario/Package.swift)


<!--custom.examples.start-->
Expand Down