Skip to content

Commit 1aa4c32

Browse files
author
aws-sdk-cpp-automation
committed
This release adds support for a new backup policy type for AWS Organizations.
Documentation updates for iam Documentation updates for Amazon EC2 Auto Scaling. This release adds the capability to take highly-durable, incremental backups of your FSx for Lustre persistent file systems. This capability makes it easy to further protect your file system data and to meet business and regulatory compliance requirements. Customers can now manage and monitor their backups in a policied manner across their AWS accounts, via an integration between AWS Backup and AWS Organizations This release of AWS Amplify Console introduces support for automatically creating custom subdomains for branches based on user-defined glob patterns, as well as automatically cleaning up Amplify branches when their corresponding git branches are deleted. This release introduces support for reactions to CodeCommit comments. Users will be able to select from a pre-defined list of emojis to express their reaction to any comments. Amazon EMR customers can now set allocation strategies for On-Demand and Spot instances in their EMR clusters with instance fleets. These allocation strategies use real-time capacity insights to provision clusters faster and make the most efficient use of available spare capacity to allocate Spot instances to reduce interruptions. Introducing Amazon Honeycode - a fully managed service that allows you to quickly build mobile and web apps for teams without programming.
1 parent 3b98025 commit 1aa4c32

File tree

235 files changed

+14682
-5076
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

235 files changed

+14682
-5076
lines changed

aws-cpp-sdk-amplify/include/aws/amplify/AmplifyClient.h

Lines changed: 169 additions & 143 deletions
Large diffs are not rendered by default.

aws-cpp-sdk-amplify/include/aws/amplify/model/App.h

Lines changed: 218 additions & 159 deletions
Large diffs are not rendered by default.

aws-cpp-sdk-amplify/include/aws/amplify/model/Artifact.h

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace Model
3434
{
3535

3636
/**
37-
* <p> Structure for artifact. </p><p><h3>See Also:</h3> <a
37+
* <p> Describes an artifact. </p><p><h3>See Also:</h3> <a
3838
* href="http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/Artifact">AWS
3939
* API Reference</a></p>
4040
*/
@@ -48,83 +48,83 @@ namespace Model
4848

4949

5050
/**
51-
* <p> File name for the artifact. </p>
51+
* <p> The file name for the artifact. </p>
5252
*/
5353
inline const Aws::String& GetArtifactFileName() const{ return m_artifactFileName; }
5454

5555
/**
56-
* <p> File name for the artifact. </p>
56+
* <p> The file name for the artifact. </p>
5757
*/
5858
inline bool ArtifactFileNameHasBeenSet() const { return m_artifactFileNameHasBeenSet; }
5959

6060
/**
61-
* <p> File name for the artifact. </p>
61+
* <p> The file name for the artifact. </p>
6262
*/
6363
inline void SetArtifactFileName(const Aws::String& value) { m_artifactFileNameHasBeenSet = true; m_artifactFileName = value; }
6464

6565
/**
66-
* <p> File name for the artifact. </p>
66+
* <p> The file name for the artifact. </p>
6767
*/
6868
inline void SetArtifactFileName(Aws::String&& value) { m_artifactFileNameHasBeenSet = true; m_artifactFileName = std::move(value); }
6969

7070
/**
71-
* <p> File name for the artifact. </p>
71+
* <p> The file name for the artifact. </p>
7272
*/
7373
inline void SetArtifactFileName(const char* value) { m_artifactFileNameHasBeenSet = true; m_artifactFileName.assign(value); }
7474

7575
/**
76-
* <p> File name for the artifact. </p>
76+
* <p> The file name for the artifact. </p>
7777
*/
7878
inline Artifact& WithArtifactFileName(const Aws::String& value) { SetArtifactFileName(value); return *this;}
7979

8080
/**
81-
* <p> File name for the artifact. </p>
81+
* <p> The file name for the artifact. </p>
8282
*/
8383
inline Artifact& WithArtifactFileName(Aws::String&& value) { SetArtifactFileName(std::move(value)); return *this;}
8484

8585
/**
86-
* <p> File name for the artifact. </p>
86+
* <p> The file name for the artifact. </p>
8787
*/
8888
inline Artifact& WithArtifactFileName(const char* value) { SetArtifactFileName(value); return *this;}
8989

9090

9191
/**
92-
* <p> Unique Id for a artifact. </p>
92+
* <p> The unique ID for the artifact. </p>
9393
*/
9494
inline const Aws::String& GetArtifactId() const{ return m_artifactId; }
9595

9696
/**
97-
* <p> Unique Id for a artifact. </p>
97+
* <p> The unique ID for the artifact. </p>
9898
*/
9999
inline bool ArtifactIdHasBeenSet() const { return m_artifactIdHasBeenSet; }
100100

101101
/**
102-
* <p> Unique Id for a artifact. </p>
102+
* <p> The unique ID for the artifact. </p>
103103
*/
104104
inline void SetArtifactId(const Aws::String& value) { m_artifactIdHasBeenSet = true; m_artifactId = value; }
105105

106106
/**
107-
* <p> Unique Id for a artifact. </p>
107+
* <p> The unique ID for the artifact. </p>
108108
*/
109109
inline void SetArtifactId(Aws::String&& value) { m_artifactIdHasBeenSet = true; m_artifactId = std::move(value); }
110110

111111
/**
112-
* <p> Unique Id for a artifact. </p>
112+
* <p> The unique ID for the artifact. </p>
113113
*/
114114
inline void SetArtifactId(const char* value) { m_artifactIdHasBeenSet = true; m_artifactId.assign(value); }
115115

116116
/**
117-
* <p> Unique Id for a artifact. </p>
117+
* <p> The unique ID for the artifact. </p>
118118
*/
119119
inline Artifact& WithArtifactId(const Aws::String& value) { SetArtifactId(value); return *this;}
120120

121121
/**
122-
* <p> Unique Id for a artifact. </p>
122+
* <p> The unique ID for the artifact. </p>
123123
*/
124124
inline Artifact& WithArtifactId(Aws::String&& value) { SetArtifactId(std::move(value)); return *this;}
125125

126126
/**
127-
* <p> Unique Id for a artifact. </p>
127+
* <p> The unique ID for the artifact. </p>
128128
*/
129129
inline Artifact& WithArtifactId(const char* value) { SetArtifactId(value); return *this;}
130130

0 commit comments

Comments
 (0)