-
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 includes support for creating I-frame only video segment…
…s for DASH trick play. Doc only update for Secrets Manager This release introduces a new feature, Usage profiles. Usage profiles allow the AWS Glue admin to create different profiles for various classes of users within the account, enforcing limits and defaults for jobs and sessions. Add v2 smoke tests and smithy smokeTests trait for SDK testing. Add v2 smoke tests and smithy smokeTests trait for SDK testing. Updating SDK example for KMS DeriveSharedSecret API. AWS CodeBuild now supports global and organization GitHub webhooks Add v2 smoke tests and smithy smokeTests trait for SDK testing. Add v2 smoke tests and smithy smokeTests trait for SDK testing. Add v2 smoke tests and smithy smokeTests trait for SDK testing. Doc-only update that adds name constraints as an allowed extension for ImportCertificateAuthorityCertificate.
- Loading branch information
1 parent
67f1aae
commit 4aa2002
Showing
75 changed files
with
3,940 additions
and
612 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.350 | ||
1.11.351 |
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
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
98 changes: 98 additions & 0 deletions
98
generated/src/aws-cpp-sdk-codebuild/include/aws/codebuild/model/ScopeConfiguration.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,98 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/codebuild/CodeBuild_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <aws/codebuild/model/WebhookScopeType.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace Utils | ||
{ | ||
namespace Json | ||
{ | ||
class JsonValue; | ||
class JsonView; | ||
} // namespace Json | ||
} // namespace Utils | ||
namespace CodeBuild | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
* <p>Contains configuration information about the scope for a webhook. | ||
* </p><p><h3>See Also:</h3> <a | ||
* href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ScopeConfiguration">AWS | ||
* API Reference</a></p> | ||
*/ | ||
class ScopeConfiguration | ||
{ | ||
public: | ||
AWS_CODEBUILD_API ScopeConfiguration(); | ||
AWS_CODEBUILD_API ScopeConfiguration(Aws::Utils::Json::JsonView jsonValue); | ||
AWS_CODEBUILD_API ScopeConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue); | ||
AWS_CODEBUILD_API Aws::Utils::Json::JsonValue Jsonize() const; | ||
|
||
|
||
///@{ | ||
/** | ||
* <p>The name of either the enterprise or organization that will send webhook | ||
* events to CodeBuild, depending on if the webhook is a global or organization | ||
* webhook respectively.</p> | ||
*/ | ||
inline const Aws::String& GetName() const{ return m_name; } | ||
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } | ||
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } | ||
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } | ||
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } | ||
inline ScopeConfiguration& WithName(const Aws::String& value) { SetName(value); return *this;} | ||
inline ScopeConfiguration& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} | ||
inline ScopeConfiguration& WithName(const char* value) { SetName(value); return *this;} | ||
///@} | ||
|
||
///@{ | ||
/** | ||
* <p>The domain of the GitHub Enterprise organization. Note that this parameter is | ||
* only required if your project's source type is GITHUB_ENTERPRISE</p> | ||
*/ | ||
inline const Aws::String& GetDomain() const{ return m_domain; } | ||
inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; } | ||
inline void SetDomain(const Aws::String& value) { m_domainHasBeenSet = true; m_domain = value; } | ||
inline void SetDomain(Aws::String&& value) { m_domainHasBeenSet = true; m_domain = std::move(value); } | ||
inline void SetDomain(const char* value) { m_domainHasBeenSet = true; m_domain.assign(value); } | ||
inline ScopeConfiguration& WithDomain(const Aws::String& value) { SetDomain(value); return *this;} | ||
inline ScopeConfiguration& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;} | ||
inline ScopeConfiguration& WithDomain(const char* value) { SetDomain(value); return *this;} | ||
///@} | ||
|
||
///@{ | ||
/** | ||
* <p>The type of scope for a GitHub webhook.</p> | ||
*/ | ||
inline const WebhookScopeType& GetScope() const{ return m_scope; } | ||
inline bool ScopeHasBeenSet() const { return m_scopeHasBeenSet; } | ||
inline void SetScope(const WebhookScopeType& value) { m_scopeHasBeenSet = true; m_scope = value; } | ||
inline void SetScope(WebhookScopeType&& value) { m_scopeHasBeenSet = true; m_scope = std::move(value); } | ||
inline ScopeConfiguration& WithScope(const WebhookScopeType& value) { SetScope(value); return *this;} | ||
inline ScopeConfiguration& WithScope(WebhookScopeType&& value) { SetScope(std::move(value)); return *this;} | ||
///@} | ||
private: | ||
|
||
Aws::String m_name; | ||
bool m_nameHasBeenSet = false; | ||
|
||
Aws::String m_domain; | ||
bool m_domainHasBeenSet = false; | ||
|
||
WebhookScopeType m_scope; | ||
bool m_scopeHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace CodeBuild | ||
} // 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
31 changes: 31 additions & 0 deletions
31
generated/src/aws-cpp-sdk-codebuild/include/aws/codebuild/model/WebhookScopeType.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,31 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/codebuild/CodeBuild_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace CodeBuild | ||
{ | ||
namespace Model | ||
{ | ||
enum class WebhookScopeType | ||
{ | ||
NOT_SET, | ||
GITHUB_ORGANIZATION, | ||
GITHUB_GLOBAL | ||
}; | ||
|
||
namespace WebhookScopeTypeMapper | ||
{ | ||
AWS_CODEBUILD_API WebhookScopeType GetWebhookScopeTypeForName(const Aws::String& name); | ||
|
||
AWS_CODEBUILD_API Aws::String GetNameForWebhookScopeType(WebhookScopeType value); | ||
} // namespace WebhookScopeTypeMapper | ||
} // namespace Model | ||
} // namespace CodeBuild | ||
} // 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
Oops, something went wrong.