Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
Version 1.3.18 of the AWS Java SDK
Browse files Browse the repository at this point in the history
This release adds support for Cost Allocation Tagging in Amazon S3 and Amazon CloudFormation.

For more information, see the full release notes:
http://aws.amazon.com/releasenotes/8625453987896629
  • Loading branch information
fulghum committed Aug 23, 2012
1 parent 49f19ee commit e892e91
Show file tree
Hide file tree
Showing 83 changed files with 3,486 additions and 631 deletions.
2 changes: 1 addition & 1 deletion META-INF/MANIFEST.MF
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: AWS SDK for Java
Bundle-SymbolicName: com.amazonaws.sdk;singleton:=true
Bundle-Version: 1.3.17
Bundle-Version: 1.3.18
Bundle-Vendor: Amazon Technologies, Inc
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: org.apache.commons.codec;bundle-version="1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@
<artifactId>aws-java-sdk</artifactId>
<packaging>jar</packaging>
<name>AWS SDK for Java</name>
<version>1.3.17</version>
<version>1.3.18</version>
<description>The Amazon Web Services SDK for Java provides Java APIs for building software on AWS’ cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).</description>
<url>http://aws.amazon.com/sdkforjava</url>

Expand Down
Expand Up @@ -21,30 +21,14 @@
/**
* Interface for accessing AmazonCloudFormation.
* AWS CloudFormation <p>
* This is the AWS CloudFormation API Reference. The major sections of this guide are described in the following table.
* </p>
*
* <ul>
* <li> <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_Operations.html"> Actions </a> : Alphabetical list of
* CloudFormation actions</li>
* <li> <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_Types.html"> Data Types </a> : Alphabetical list of
* CloudFormation data types</li>
* <li> <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/CommonParameters.html"> Common Parameters </a> : Parameters
* that all Query actions can use</li>
* <li> <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/CommonErrors.html"> Common Errors </a> : Client and server
* errors that all actions can return</li>
*
* </ul>
* <p>
* This guide is for programmers who need detailed information about the CloudFormation APIs. You use AWS CloudFormation to create and manage AWS
* infrastructure deployments predictably and repeatedly. CloudFormation helps you leverage AWS products such as Amazon EC2, EBS, Amazon SNS, ELB, and
* Auto Scaling to build highly-reliable, highly scalable, cost effective applications without worrying about creating and configuring the underlying the
* AWS infrastructure.
* AWS CloudFormation enables you to create and manage AWS infrastructure deployments predictably and repeatedly. AWS CloudFormation helps you leverage
* AWS products such as Amazon EC2, EBS, Amazon SNS, ELB, and Auto Scaling to build highly-reliable, highly scalable, cost effective applications without
* worrying about creating and configuring the underlying the AWS infrastructure.
* </p>
* <p>
* Through the use of a template file you write, and a few AWS CloudFormation commands or API actions, AWS CloudFormation enables you to manage a
* collection of resources together as a single unit called a stack. AWS CloudFormation creates and deletes all member resources of the stack together
* and manages all dependencies between the resources for you.
* With AWS CloudFormation, you declare all of your resources and dependencies in a template file. The template defines a collection of resources as a
* single unit called a stack. AWS CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the
* resources for you.
* </p>
* <p>
* For more information about this product, go to the <a href="http://aws.amazon.com/cloudformation/"> CloudFormation Product Page </a> .
Expand Down Expand Up @@ -111,9 +95,9 @@ public ListStacksResult listStacks(ListStacksRequest listStacksRequest)

/**
* <p>
* Creates a stack as specified in the template. After the call
* completes successfully, the stack creation starts. You can check the
* status of the stack via the DescribeStacks API.
* Creates a stack as specified in the template. After the call completes
* successfully, the stack creation starts. You can check the status of
* the stack via the DescribeStacks API.
* </p>
* <p>
* <b>NOTE:</b> Currently, the limit for stacks is 20 stacks per account
Expand Down Expand Up @@ -168,7 +152,7 @@ public ValidateTemplateResult validateTemplate(ValidateTemplateRequest validateT
/**
* <p>
* Returns the estimated monthly cost of a template. The return value is
* an AWS Simply Monthly Calculator URL with a query string that
* an AWS Simple Monthly Calculator URL with a query string that
* describes the resources required to run the template.
* </p>
*
Expand Down Expand Up @@ -312,9 +296,9 @@ public DescribeStackResourceResult describeStackResource(DescribeStackResourceRe

/**
* <p>
* Deletes a specified stack. Once the call completes successfully,
* stack deletion starts. Deleted stacks do not show up in the
* DescribeStacks API if the deletion has been completed successfully.
* Deletes a specified stack. Once the call completes successfully, stack
* deletion starts. Deleted stacks do not show up in the DescribeStacks
* API if the deletion has been completed successfully.
* </p>
*
* @param deleteStackRequest Container for the necessary parameters to
Expand Down Expand Up @@ -373,11 +357,21 @@ public ListStackResourcesResult listStackResources(ListStackResourcesRequest lis
* information for up to 90 days after the stack has been deleted.
* </p>
* <p>
* You must specify <code>StackName</code> or
* <code>PhysicalResourceId.</code> In addition, you can specify
* <code>LogicalResourceId</code> to filter the returned result. For more
* information about resources, the <code>LogicalResourceId</code> and
* <code>PhysicalResourceId</code> , go to the <a
* If you do not provide either a stack or resource id, information for
* all stacks and resources will be returned, up to a limit of 100
* records.
* </p>
* <p>
* <b>NOTE:</b> To list more than 100 resources use ListStackResources
* instead.
* </p>
* <p>
* You can specify either <code>StackName</code> or
* <code>PhysicalResourceId.</code> , but not both. In addition, you can
* specify <code>LogicalResourceId</code> to filter the returned result.
* For more information about resources, the
* <code>LogicalResourceId</code> and <code>PhysicalResourceId</code> ,
* go to the <a
* http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">
* AWS CloudFormation User Guide </a> .
* </p>
Expand Down Expand Up @@ -407,15 +401,20 @@ public DescribeStackResourcesResult describeStackResources(DescribeStackResource

/**
* <p>
* Updates a stack as specified in the template. After the call
* completes successfully, the stack update starts. You can check the
* status of the stack via the DescribeStacks action.
* Updates a stack as specified in the template. After the call completes
* successfully, the stack update starts. You can check the status of the
* stack via the DescribeStacks action.
* </p>
* <p>
* To get a copy of the template for an existing stack, you can use the
* GetTemplate action.
* </p>
* <p>
* Tags that were associated with this stack during creation time will
* still be associated with the stack after an <code>UpdateStack</code>
* operation.
* </p>
* <p>
* For more information about creating an update template, updating a
* stack, and monitoring the progress of the update, see <a
* om/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html">
Expand Down Expand Up @@ -468,7 +467,7 @@ public UpdateStackResult updateStack(UpdateStackRequest updateStackRequest)
/**
* <p>
* Returns the estimated monthly cost of a template. The return value is
* an AWS Simply Monthly Calculator URL with a query string that
* an AWS Simple Monthly Calculator URL with a query string that
* describes the resources required to run the template.
* </p>
*
Expand Down Expand Up @@ -548,11 +547,21 @@ public UpdateStackResult updateStack(UpdateStackRequest updateStackRequest)
* information for up to 90 days after the stack has been deleted.
* </p>
* <p>
* You must specify <code>StackName</code> or
* <code>PhysicalResourceId.</code> In addition, you can specify
* <code>LogicalResourceId</code> to filter the returned result. For more
* information about resources, the <code>LogicalResourceId</code> and
* <code>PhysicalResourceId</code> , go to the <a
* If you do not provide either a stack or resource id, information for
* all stacks and resources will be returned, up to a limit of 100
* records.
* </p>
* <p>
* <b>NOTE:</b> To list more than 100 resources use ListStackResources
* instead.
* </p>
* <p>
* You can specify either <code>StackName</code> or
* <code>PhysicalResourceId.</code> , but not both. In addition, you can
* specify <code>LogicalResourceId</code> to filter the returned result.
* For more information about resources, the
* <code>LogicalResourceId</code> and <code>PhysicalResourceId</code> ,
* go to the <a
* http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">
* AWS CloudFormation User Guide </a> .
* </p>
Expand Down
Expand Up @@ -24,30 +24,14 @@
* Interface for accessing AmazonCloudFormation asynchronously,
* using Java Futures.
* AWS CloudFormation <p>
* This is the AWS CloudFormation API Reference. The major sections of this guide are described in the following table.
* AWS CloudFormation enables you to create and manage AWS infrastructure deployments predictably and repeatedly. AWS CloudFormation helps you leverage
* AWS products such as Amazon EC2, EBS, Amazon SNS, ELB, and Auto Scaling to build highly-reliable, highly scalable, cost effective applications without
* worrying about creating and configuring the underlying the AWS infrastructure.
* </p>
*
* <ul>
* <li> <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_Operations.html"> Actions </a> : Alphabetical list of
* CloudFormation actions</li>
* <li> <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_Types.html"> Data Types </a> : Alphabetical list of
* CloudFormation data types</li>
* <li> <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/CommonParameters.html"> Common Parameters </a> : Parameters
* that all Query actions can use</li>
* <li> <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/CommonErrors.html"> Common Errors </a> : Client and server
* errors that all actions can return</li>
*
* </ul>
* <p>
* This guide is for programmers who need detailed information about the CloudFormation APIs. You use AWS CloudFormation to create and manage AWS
* infrastructure deployments predictably and repeatedly. CloudFormation helps you leverage AWS products such as Amazon EC2, EBS, Amazon SNS, ELB, and
* Auto Scaling to build highly-reliable, highly scalable, cost effective applications without worrying about creating and configuring the underlying the
* AWS infrastructure.
* </p>
* <p>
* Through the use of a template file you write, and a few AWS CloudFormation commands or API actions, AWS CloudFormation enables you to manage a
* collection of resources together as a single unit called a stack. AWS CloudFormation creates and deletes all member resources of the stack together
* and manages all dependencies between the resources for you.
* With AWS CloudFormation, you declare all of your resources and dependencies in a template file. The template defines a collection of resources as a
* single unit called a stack. AWS CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the
* resources for you.
* </p>
* <p>
* For more information about this product, go to the <a href="http://aws.amazon.com/cloudformation/"> CloudFormation Product Page </a> .
Expand Down Expand Up @@ -87,9 +71,9 @@ public Future<ListStacksResult> listStacksAsync(ListStacksRequest listStacksRequ

/**
* <p>
* Creates a stack as specified in the template. After the call
* completes successfully, the stack creation starts. You can check the
* status of the stack via the DescribeStacks API.
* Creates a stack as specified in the template. After the call completes
* successfully, the stack creation starts. You can check the status of
* the stack via the DescribeStacks API.
* </p>
* <p>
* <b>NOTE:</b> Currently, the limit for stacks is 20 stacks per account
Expand Down Expand Up @@ -138,7 +122,7 @@ public Future<ValidateTemplateResult> validateTemplateAsync(ValidateTemplateRequ
/**
* <p>
* Returns the estimated monthly cost of a template. The return value is
* an AWS Simply Monthly Calculator URL with a query string that
* an AWS Simple Monthly Calculator URL with a query string that
* describes the resources required to run the template.
* </p>
*
Expand Down Expand Up @@ -280,9 +264,9 @@ public Future<DescribeStackResourceResult> describeStackResourceAsync(DescribeSt

/**
* <p>
* Deletes a specified stack. Once the call completes successfully,
* stack deletion starts. Deleted stacks do not show up in the
* DescribeStacks API if the deletion has been completed successfully.
* Deletes a specified stack. Once the call completes successfully, stack
* deletion starts. Deleted stacks do not show up in the DescribeStacks
* API if the deletion has been completed successfully.
* </p>
*
* @param deleteStackRequest Container for the necessary parameters to
Expand Down Expand Up @@ -343,11 +327,21 @@ public Future<ListStackResourcesResult> listStackResourcesAsync(ListStackResourc
* information for up to 90 days after the stack has been deleted.
* </p>
* <p>
* You must specify <code>StackName</code> or
* <code>PhysicalResourceId.</code> In addition, you can specify
* <code>LogicalResourceId</code> to filter the returned result. For more
* information about resources, the <code>LogicalResourceId</code> and
* <code>PhysicalResourceId</code> , go to the <a
* If you do not provide either a stack or resource id, information for
* all stacks and resources will be returned, up to a limit of 100
* records.
* </p>
* <p>
* <b>NOTE:</b> To list more than 100 resources use ListStackResources
* instead.
* </p>
* <p>
* You can specify either <code>StackName</code> or
* <code>PhysicalResourceId.</code> , but not both. In addition, you can
* specify <code>LogicalResourceId</code> to filter the returned result.
* For more information about resources, the
* <code>LogicalResourceId</code> and <code>PhysicalResourceId</code> ,
* go to the <a
* http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">
* AWS CloudFormation User Guide </a> .
* </p>
Expand Down Expand Up @@ -377,15 +371,20 @@ public Future<DescribeStackResourcesResult> describeStackResourcesAsync(Describe

/**
* <p>
* Updates a stack as specified in the template. After the call
* completes successfully, the stack update starts. You can check the
* status of the stack via the DescribeStacks action.
* Updates a stack as specified in the template. After the call completes
* successfully, the stack update starts. You can check the status of the
* stack via the DescribeStacks action.
* </p>
* <p>
* To get a copy of the template for an existing stack, you can use the
* GetTemplate action.
* </p>
* <p>
* Tags that were associated with this stack during creation time will
* still be associated with the stack after an <code>UpdateStack</code>
* operation.
* </p>
* <p>
* For more information about creating an update template, updating a
* stack, and monitoring the progress of the update, see <a
* om/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html">
Expand Down

0 comments on commit e892e91

Please sign in to comment.