Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: "Keep PRs Updated from Main"
on:
workflow_dispatch:
push:
branches:
- main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/automerge-approved-prs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on: # yamllint disable-line rule:truthy
pull_request_review:
types: submitted
types: [submitted]

jobs:
approved_pr:
Expand All @@ -9,7 +9,7 @@ jobs:
contents: write
pull-requests: write
id-token: write
if: ${{ github.event.review.state == 'approved' && github.repository == 'awsdocs/aws-doc-sdk-examples' && (github.event.review.author_association == 'OWNER' || github.event.review.author_association == 'MEMBER' || github.event.review.user.login == 'aws-sdk-osds') }}
if: ${{ github.event.review.state == 'approved' && (github.event.review.author_association == 'OWNER' || github.event.review.author_association == 'MEMBER' || github.event.review.user.login == 'aws-sdk-osds') }}
runs-on: ubuntu-latest
steps:
- name: Configure AWS credentials
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
![[]](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue)

# AWS SDK Code Examples

test
This repository contains code examples that demonstrate how to use the [AWS SDKs](https://aws.amazon.com/developer/tools/) to interact with [AWS services](https://aws.amazon.com/products).

Many examples are injected into the [AWS Documentation](https://docs.aws.amazon.com).

## How this repository is organized

Code examples for each language's SDK can be found within the following subdirectories. The examples here demonstrate the most common uses of the SDK for each language.

| SDK | folder | SDK version |
Expand Down
2 changes: 1 addition & 1 deletion go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

The code examples in this topic show you how to use the AWS SDK for Go V1 with AWS.
If you're looking for examples of how to use the SDK for Go V2, see the
[README for SDK for Go V2 examples](../gov2/README.md) in this repo.
[README for SDK for Go V2 examples](../gov2/README.md) in this repo.

⚠️ AWS SDK for Go V1 will enter maintenance mode on July 31, 2024 and reach end-of-support
on July 31, 2025. For more information, see
Expand Down
2 changes: 1 addition & 1 deletion php/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# AWS SDK for PHP v3 code examples
## Overview
The code examples in this topic show you how to use the AWS SDK for PHP v3 with AWS.

The AWS SDK for PHP v3 provides a PHP API for AWS infrastructure services. Using the SDK, you can build applications on top of Amazon S3, Amazon EC2, Amazon DynamoDB, and more.

## Types of code examples
Expand Down
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ with AWS.
The AWS SDK for Python provides a Python API for AWS infrastructure services.
Using the SDK, you can build applications on top of AWS services such as Amazon Simple
Storage Service (Amazon S3), Amazon Elastic Compute Cloud (Amazon EC2), and Amazon DynamoDB.

## Types of code examples

* **Single-service actions** - Code examples that show you how to call individual service functions.
Expand Down
2 changes: 1 addition & 1 deletion ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The AWS SDK for Ruby Version 3 provides a Ruby API for AWS infrastructure servic

* **Cross-service examples** - Sample applications that work across multiple AWS services.

### Finding code examples
### Finding code examples

Single-service actions and scenarios are organized by AWS service in the
[example_code folder](example_code). A README in each folder lists and describes how
Expand Down