-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release adds support for securely sharing with AWS service princ…
…ipals. Amazon Managed Grafana now supports grafanaVersion update for existing workspaces with UpdateWorkspaceConfiguration API. DescribeWorkspaceConfiguration API additionally returns grafanaVersion. A new ListVersions API lists available versions or, if given a workspaceId, the versions it can upgrade to. Added the URI path to the custom aggregation keys that you can specify for a rate-based rule. Added support for SAP Hana High Availability discovery (primary and secondary nodes) and Backint agent installation with SSM for SAP. SDK and documentation updates for GetTemplateSummary API (unrecognized resources) Amazon EC2 documentation updates. General Availability (GA) release of AWS Health Imaging, enabling customers to store, transform, and analyze medical imaging data at petabyte-scale.
- Loading branch information
1 parent
d32ba7f
commit f6830d6
Showing
293 changed files
with
27,741 additions
and
2,967 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.11.120 | ||
1.11.121 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
...d/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/TemplateSummaryConfig.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/cloudformation/CloudFormation_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSStreamFwd.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace Utils | ||
{ | ||
namespace Xml | ||
{ | ||
class XmlNode; | ||
} // namespace Xml | ||
} // namespace Utils | ||
namespace CloudFormation | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
* <p>Options for the <code>GetTemplateSummary</code> API action.</p><p><h3>See | ||
* Also:</h3> <a | ||
* href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/TemplateSummaryConfig">AWS | ||
* API Reference</a></p> | ||
*/ | ||
class TemplateSummaryConfig | ||
{ | ||
public: | ||
AWS_CLOUDFORMATION_API TemplateSummaryConfig(); | ||
AWS_CLOUDFORMATION_API TemplateSummaryConfig(const Aws::Utils::Xml::XmlNode& xmlNode); | ||
AWS_CLOUDFORMATION_API TemplateSummaryConfig& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); | ||
|
||
AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; | ||
AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& oStream, const char* location) const; | ||
|
||
|
||
/** | ||
* <p>If set to <code>True</code>, any unrecognized resource types generate | ||
* warnings and not an error. Any unrecognized resource types are returned in the | ||
* <code>Warnings</code> output parameter.</p> | ||
*/ | ||
inline bool GetTreatUnrecognizedResourceTypesAsWarnings() const{ return m_treatUnrecognizedResourceTypesAsWarnings; } | ||
|
||
/** | ||
* <p>If set to <code>True</code>, any unrecognized resource types generate | ||
* warnings and not an error. Any unrecognized resource types are returned in the | ||
* <code>Warnings</code> output parameter.</p> | ||
*/ | ||
inline bool TreatUnrecognizedResourceTypesAsWarningsHasBeenSet() const { return m_treatUnrecognizedResourceTypesAsWarningsHasBeenSet; } | ||
|
||
/** | ||
* <p>If set to <code>True</code>, any unrecognized resource types generate | ||
* warnings and not an error. Any unrecognized resource types are returned in the | ||
* <code>Warnings</code> output parameter.</p> | ||
*/ | ||
inline void SetTreatUnrecognizedResourceTypesAsWarnings(bool value) { m_treatUnrecognizedResourceTypesAsWarningsHasBeenSet = true; m_treatUnrecognizedResourceTypesAsWarnings = value; } | ||
|
||
/** | ||
* <p>If set to <code>True</code>, any unrecognized resource types generate | ||
* warnings and not an error. Any unrecognized resource types are returned in the | ||
* <code>Warnings</code> output parameter.</p> | ||
*/ | ||
inline TemplateSummaryConfig& WithTreatUnrecognizedResourceTypesAsWarnings(bool value) { SetTreatUnrecognizedResourceTypesAsWarnings(value); return *this;} | ||
|
||
private: | ||
|
||
bool m_treatUnrecognizedResourceTypesAsWarnings; | ||
bool m_treatUnrecognizedResourceTypesAsWarningsHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace CloudFormation | ||
} // namespace Aws |
124 changes: 124 additions & 0 deletions
124
generated/src/aws-cpp-sdk-cloudformation/include/aws/cloudformation/model/Warnings.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/cloudformation/CloudFormation_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSStreamFwd.h> | ||
#include <aws/core/utils/memory/stl/AWSVector.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace Utils | ||
{ | ||
namespace Xml | ||
{ | ||
class XmlNode; | ||
} // namespace Xml | ||
} // namespace Utils | ||
namespace CloudFormation | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
* <p>Contains any warnings returned by the <code>GetTemplateSummary</code> API | ||
* action.</p><p><h3>See Also:</h3> <a | ||
* href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Warnings">AWS | ||
* API Reference</a></p> | ||
*/ | ||
class Warnings | ||
{ | ||
public: | ||
AWS_CLOUDFORMATION_API Warnings(); | ||
AWS_CLOUDFORMATION_API Warnings(const Aws::Utils::Xml::XmlNode& xmlNode); | ||
AWS_CLOUDFORMATION_API Warnings& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); | ||
|
||
AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; | ||
AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& oStream, const char* location) const; | ||
|
||
|
||
/** | ||
* <p>A list of all of the unrecognized resource types. This is only returned if | ||
* the <code>TemplateSummaryConfig</code> parameter has the | ||
* <code>TreatUnrecognizedResourceTypesAsWarning</code> configuration set to | ||
* <code>True</code>.</p> | ||
*/ | ||
inline const Aws::Vector<Aws::String>& GetUnrecognizedResourceTypes() const{ return m_unrecognizedResourceTypes; } | ||
|
||
/** | ||
* <p>A list of all of the unrecognized resource types. This is only returned if | ||
* the <code>TemplateSummaryConfig</code> parameter has the | ||
* <code>TreatUnrecognizedResourceTypesAsWarning</code> configuration set to | ||
* <code>True</code>.</p> | ||
*/ | ||
inline bool UnrecognizedResourceTypesHasBeenSet() const { return m_unrecognizedResourceTypesHasBeenSet; } | ||
|
||
/** | ||
* <p>A list of all of the unrecognized resource types. This is only returned if | ||
* the <code>TemplateSummaryConfig</code> parameter has the | ||
* <code>TreatUnrecognizedResourceTypesAsWarning</code> configuration set to | ||
* <code>True</code>.</p> | ||
*/ | ||
inline void SetUnrecognizedResourceTypes(const Aws::Vector<Aws::String>& value) { m_unrecognizedResourceTypesHasBeenSet = true; m_unrecognizedResourceTypes = value; } | ||
|
||
/** | ||
* <p>A list of all of the unrecognized resource types. This is only returned if | ||
* the <code>TemplateSummaryConfig</code> parameter has the | ||
* <code>TreatUnrecognizedResourceTypesAsWarning</code> configuration set to | ||
* <code>True</code>.</p> | ||
*/ | ||
inline void SetUnrecognizedResourceTypes(Aws::Vector<Aws::String>&& value) { m_unrecognizedResourceTypesHasBeenSet = true; m_unrecognizedResourceTypes = std::move(value); } | ||
|
||
/** | ||
* <p>A list of all of the unrecognized resource types. This is only returned if | ||
* the <code>TemplateSummaryConfig</code> parameter has the | ||
* <code>TreatUnrecognizedResourceTypesAsWarning</code> configuration set to | ||
* <code>True</code>.</p> | ||
*/ | ||
inline Warnings& WithUnrecognizedResourceTypes(const Aws::Vector<Aws::String>& value) { SetUnrecognizedResourceTypes(value); return *this;} | ||
|
||
/** | ||
* <p>A list of all of the unrecognized resource types. This is only returned if | ||
* the <code>TemplateSummaryConfig</code> parameter has the | ||
* <code>TreatUnrecognizedResourceTypesAsWarning</code> configuration set to | ||
* <code>True</code>.</p> | ||
*/ | ||
inline Warnings& WithUnrecognizedResourceTypes(Aws::Vector<Aws::String>&& value) { SetUnrecognizedResourceTypes(std::move(value)); return *this;} | ||
|
||
/** | ||
* <p>A list of all of the unrecognized resource types. This is only returned if | ||
* the <code>TemplateSummaryConfig</code> parameter has the | ||
* <code>TreatUnrecognizedResourceTypesAsWarning</code> configuration set to | ||
* <code>True</code>.</p> | ||
*/ | ||
inline Warnings& AddUnrecognizedResourceTypes(const Aws::String& value) { m_unrecognizedResourceTypesHasBeenSet = true; m_unrecognizedResourceTypes.push_back(value); return *this; } | ||
|
||
/** | ||
* <p>A list of all of the unrecognized resource types. This is only returned if | ||
* the <code>TemplateSummaryConfig</code> parameter has the | ||
* <code>TreatUnrecognizedResourceTypesAsWarning</code> configuration set to | ||
* <code>True</code>.</p> | ||
*/ | ||
inline Warnings& AddUnrecognizedResourceTypes(Aws::String&& value) { m_unrecognizedResourceTypesHasBeenSet = true; m_unrecognizedResourceTypes.push_back(std::move(value)); return *this; } | ||
|
||
/** | ||
* <p>A list of all of the unrecognized resource types. This is only returned if | ||
* the <code>TemplateSummaryConfig</code> parameter has the | ||
* <code>TreatUnrecognizedResourceTypesAsWarning</code> configuration set to | ||
* <code>True</code>.</p> | ||
*/ | ||
inline Warnings& AddUnrecognizedResourceTypes(const char* value) { m_unrecognizedResourceTypesHasBeenSet = true; m_unrecognizedResourceTypes.push_back(value); return *this; } | ||
|
||
private: | ||
|
||
Aws::Vector<Aws::String> m_unrecognizedResourceTypes; | ||
bool m_unrecognizedResourceTypesHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace CloudFormation | ||
} // namespace Aws |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.