diff --git a/.doc_gen/metadata/cognito-identity-provider_metadata.yaml b/.doc_gen/metadata/cognito-identity-provider_metadata.yaml index 2fda47da7ac..04f27cbbbf1 100644 --- a/.doc_gen/metadata/cognito-identity-provider_metadata.yaml +++ b/.doc_gen/metadata/cognito-identity-provider_metadata.yaml @@ -433,6 +433,7 @@ cognito-identity-provider_ListUsers: versions: - sdk_version: 1 github: swift/example_code/cognito-identity-provider + sdkguide: excerpts: - description: snippet_tags: diff --git a/.doc_gen/metadata/dynamodb_metadata.yaml b/.doc_gen/metadata/dynamodb_metadata.yaml index 791bc3fab00..3ef1f8c31b4 100644 --- a/.doc_gen/metadata/dynamodb_metadata.yaml +++ b/.doc_gen/metadata/dynamodb_metadata.yaml @@ -1877,7 +1877,7 @@ dynamodb_Scenario_GettingStartedMovies: excerpts: - description: snippet_tags: - - DynamoDB.dotnetv3.DynamoDB_Basics_Scenario + - DynamoDB.dotnetv4.DynamoDB_Basics_Scenario - description: Creates a table to contain movie data. snippet_tags: - DynamoDB.dotnetv4.dynamodb-basics.CreateTable diff --git a/dotnetv4/ControlTower/README.md b/dotnetv4/ControlTower/README.md index 226fdc22170..796e52fd495 100644 --- a/dotnetv4/ControlTower/README.md +++ b/dotnetv4/ControlTower/README.md @@ -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) diff --git a/dotnetv4/DynamoDB/README.md b/dotnetv4/DynamoDB/README.md index 09becc58cf4..ed11b34ebb4 100644 --- a/dotnetv4/DynamoDB/README.md +++ b/dotnetv4/DynamoDB/README.md @@ -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](../DynamoDB/Scenarios/DynamoDB_Basics/DynamoDbBasics.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) diff --git a/dotnetv4/DynamoDB/Scenarios/DynamoDB_Basics/DynamoDbBasics.cs b/dotnetv4/DynamoDB/Scenarios/DynamoDB_Basics/DynamoDbBasics.cs index c42c7e34d29..4c387d1647d 100644 --- a/dotnetv4/DynamoDB/Scenarios/DynamoDB_Basics/DynamoDbBasics.cs +++ b/dotnetv4/DynamoDB/Scenarios/DynamoDB_Basics/DynamoDbBasics.cs @@ -1,4 +1,4 @@ -// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using Amazon.DynamoDBv2; @@ -7,7 +7,7 @@ namespace Basics; -// snippet-start:[DynamoDB.dotnetv3.DynamoDB_Basics_Scenario] +// snippet-start:[DynamoDB.dotnetv4.DynamoDB_Basics_Scenario] /// /// This example application performs the following basic Amazon DynamoDB @@ -228,4 +228,4 @@ private static void WaitForEnter() } } -// snippet-end:[DynamoDB.dotnetv3.DynamoDB_Basics_Scenario] \ No newline at end of file +// snippet-end:[DynamoDB.dotnetv4.DynamoDB_Basics_Scenario] \ No newline at end of file diff --git a/python/example_code/bedrock-agent-runtime/README.md b/python/example_code/bedrock-agent-runtime/README.md index 9bc0ffdd17d..70e07c6c8a7 100644 --- a/python/example_code/bedrock-agent-runtime/README.md +++ b/python/example_code/bedrock-agent-runtime/README.md @@ -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 @@ -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 ``` diff --git a/swift/example_code/cognito-identity-provider/ListUsers/Package.swift b/swift/example_code/cognito-identity-provider/ListUsers/Package.swift index ae7e980ebeb..feede056e68 100644 --- a/swift/example_code/cognito-identity-provider/ListUsers/Package.swift +++ b/swift/example_code/cognito-identity-provider/ListUsers/Package.swift @@ -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 @@ -44,4 +44,4 @@ let package = Package( ] ) -// snippet-end:[swift.cognito-identity-provider.scenario.package] +// snippet-end:[swift.cognito-identity-provider.ListUsers.package] diff --git a/swift/example_code/cognito-identity-provider/README.md b/swift/example_code/cognito-identity-provider/README.md index d8cc1639667..026dfbafde7 100644 --- a/swift/example_code/cognito-identity-provider/README.md +++ b/swift/example_code/cognito-identity-provider/README.md @@ -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)