All Projects → awsdocs → aws-java-developer-guide

awsdocs / aws-java-developer-guide

Licence: Unknown and 2 other licenses found Licenses found Unknown LICENSE MIT-0 LICENSE-SAMPLECODE Unknown LICENSE-SUMMARY
Official repository of the AWS SDK for Java Developer Guide -- issues and contributions are welcome, see README for details.

Programming Languages

Makefile
30231 projects

Projects that are alternatives of or similar to aws-java-developer-guide

aws-cpp-developer-guide
Content for the AWS SDK for C++ Developer Guide. For more info about the AWS C++ SDK, go to http://github.com/aws/aws-sdk-cpp
Stars: ✭ 19 (-82.88%)
Mutual labels:  programming, howto, restructuredtext, sphinx-documentation
tutorials as code
so that stuff read/seen don't get muddled up with time
Stars: ✭ 42 (-62.16%)
Mutual labels:  programming, howto
thelittlebookofruby
Ukrainian translation of “The Little Book Of Ruby”
Stars: ✭ 38 (-65.77%)
Mutual labels:  programming
End-to-End-Machine-Learning-Projects
This repository contains Machine Learning projects that involve the steps starting from data collection to deployment
Stars: ✭ 74 (-33.33%)
Mutual labels:  programming
portablebpf
You came here so you could have a base code to serve you as an example on how to develop a BPF application, compatible to BCC and/or LIBBPF, specially LIBBPF, having the userland part made in C or PYTHON.
Stars: ✭ 32 (-71.17%)
Mutual labels:  howto
CyberPunkNetrunner
Cyberpunk 2077 Netrunner Hacking Tool (Easy to use and install). Don't use it on illegal and malicious activity. Inspired by the game CyberPunk 2077 https://www.cyberpunk.net/
Stars: ✭ 69 (-37.84%)
Mutual labels:  programming
one-note-a-day
编程每日一题:每天一道精选面试或编程题,180秒内语音答题模式凝练答案。次日推送标准参考答案至群内供大家复盘,做到事事有回音,题题有答案。
Stars: ✭ 70 (-36.94%)
Mutual labels:  programming
learn-x-if-you-know-y
Learn X if you Know Y Where X = Programming language that you want to learn & Y = Programming language that you already know.
Stars: ✭ 24 (-78.38%)
Mutual labels:  programming
introcsharpbook
"Fundamentals of Computer Programming with C#" Book
Stars: ✭ 12 (-89.19%)
Mutual labels:  programming
site
Course materials for the Geo-Python course at the University of Helsinki, Finland
Stars: ✭ 166 (+49.55%)
Mutual labels:  programming
howto
Dumping ground for various HowTo documents that I produce
Stars: ✭ 58 (-47.75%)
Mutual labels:  howto
Iosevka-Mayukai
Font based on Iosevka Custom Build, with combination from Iosevka SS04 Menlo, SS07 Monaco, SS09 Source Code Pro, SS12 Ubuntu Mono, SS14 Jetbrains Mono, Hack Style, and some Nerd Font Patching.
Stars: ✭ 149 (+34.23%)
Mutual labels:  programming
matlab-novice-inflammation
Programming with MATLAB
Stars: ✭ 26 (-76.58%)
Mutual labels:  programming
shell-genomics
Introduction to the Command Line for Genomics
Stars: ✭ 54 (-51.35%)
Mutual labels:  programming
311
Interactive Web Development
Stars: ✭ 33 (-70.27%)
Mutual labels:  programming
FizzBuzz-Hacktoberfest-2021
🎃 Submit creative FizzBuzz solutions in any language you want! Open for beginners !
Stars: ✭ 17 (-84.68%)
Mutual labels:  programming
Prime-Python
이 저장소는 생능출판사의 "으뜸 파이썬"을 기반으로 합니다.
Stars: ✭ 18 (-83.78%)
Mutual labels:  programming
Python-Fundamentals
Jupyter Notebooks for How to Think Like a Computer Scientist - Learning with Python 3 (RLE) Textbook
Stars: ✭ 30 (-72.97%)
Mutual labels:  programming
restbuilder
A Sphinx builder/writer to output reStructuredText (rst) files
Stars: ✭ 25 (-77.48%)
Mutual labels:  restructuredtext
NamingThings
Content on tips, tricks, advice, practices for naming things in in software/technology
Stars: ✭ 31 (-72.07%)
Mutual labels:  programming

.. Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at http://creativecommons.org/licenses/by-nc-sa/4.0/.

This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

######################## aws-java-developer-guide ########################

This repository contains source content for the official AWS Java Developer Guide. The source code for the AWS SDK for Java is also on GitHub, at https://github.com/aws/aws-sdk-java/.

The guide content is written in AsciiDoc. It relies upon content which is provided in the AWS documentation team's shared content and SDK examples_ repositories.

AWS SDK for Java 2.0

Take a look at the newer AWS SDK for Java 2.0 at https://github.com/aws/aws-sdk-java-v2/. It includes much awaited features, such as a way to plug in a HTTP implementation. To get started, see the AWS SDK for Java 2.0 Developer Guide_.

Reporting issues

You can use the Issues_ section of this repository to report problems in the documentation. When submitting an issue, please indicate:

  • what page (a URL or filename is best) the issue occurs on.

  • what the issue is, using as much detail as you can provide. For many issues, this might be as simple as "The page has a typo; the word 'complie' in the third paragraph shoud be 'compile'." If the issue is more complex, please describe it with enough detail that it's clear to the AWS documentation team what the problem is.

Contributing fixes and updates

To contribute your own documentation fixes or updates, please use the Github-standard procedures for forking the repository_ and submitting a pull request_.

Note that many common substitutions_ and extlinks_ found in these docs are sourced from the shared content_ repository--if you see a substitution used that is not declared at the top of the source file or in the _includes.txt file, then it is probably defined in the shared content.

Building the documentation

If you are planning to contribute to the docs, you should build your changes and review them before submitting your pull request.

To build the docs:

  1. Make sure that you have downloaded and installed Sphinx_.

  2. Run the build_docs.py script in the repository's root directory.

    build_docs.py can take any of the available Sphinx builders_ as its argument. For example, to build the docs into a single HTML page, you can use the singlehtml target, like so::

    python build_docs.py singlehtml

The build process will automatically download a snapshot of its dependencies, combine them in the doc_build directory and will then generate output into the doc_output directory.

Code examples in the documentation

The code examples featured in this documentation can be found in a separate repository: aws-doc-sdk-examples <https://github.com/awsdocs/aws-doc-sdk-examples/tree/master/java>_. Full code and build files are included, so you can build and run any of the provided examples yourself.

In addition to examples in Java, you'll also find examples for each of the other AWS SDKs. If you find issues with any of the examples, you can submit issues or fork the repository and submit a pull request!

The code examples are provided under the Apache 2.0 open source license. See the example repository's README <https://github.com/awsdocs/aws-doc-sdk-examples/blob/master/README.rst>_ for more details.

Copyright and license

All content in this repository, unless otherwise stated, is Copyright © 2010-2016, Amazon Web Services, Inc. or its affiliates. All rights reserved.

Except where otherwise noted, this work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License <http://creativecommons.org/licenses/by-nc-sa/4.0/>_ (the "License"). Use the preceding link for a human-readable summary of the license terms. The full license text is available at: http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode and in the LICENSE file accompanying this repository.

.. ================================================================================= .. Links used in the README. For sanity's sake, keep this list sorted alphabetically .. =================================================================================

.. _AsciiDoc: https://asciidoc-py.github.io/index.html .. _available sphinx builders: http://www.sphinx-doc.org/en/stable/builders.html .. _aws java developer guide: http://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/welcome.html .. _aws sdk for java 2.0 developer guide: http://docs.aws.amazon.com/sdk-for-java/v2/developer-guide/welcome.html .. _aws sdk for java: https://aws.amazon.com/sdk-for-java/ .. _forking the repository: https://help.github.com/articles/fork-a-repo/ .. _pull request: https://help.github.com/articles/using-pull-requests/ .. _shared content: https://github.com/awsdocs/aws-doc-shared-content .. _sdk examples: https://github.com/awsdocs/aws-doc-sdk-examples .. _extlinks: http://www.sphinx-doc.org/en/stable/ext/extlinks.html .. _issues: https://github.com/awsdocs/aws-java-developer-guide/issues .. _restructuredtext: http://docutils.sourceforge.net/rst.html .. _sphinx: http://www.sphinx-doc.org/en/stable/ .. _substitutions: http://www.sphinx-doc.org/en/stable/rest.html#substitutions

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].