-
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 makes the default option for S3 on Outposts request sign…
…ing to use the SigV4A algorithm when using AWS Common Runtime (CRT). Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs. adds support for multiple new composition layout configuration options (grid, pip)
- Loading branch information
1 parent
0636eb7
commit 8213a58
Showing
81 changed files
with
2,881 additions
and
1,058 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.284 | ||
1.11.285 |
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-ivs-realtime/include/aws/ivs-realtime/model/PipBehavior.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/ivs-realtime/Ivsrealtime_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace ivsrealtime | ||
{ | ||
namespace Model | ||
{ | ||
enum class PipBehavior | ||
{ | ||
NOT_SET, | ||
STATIC_, | ||
DYNAMIC | ||
}; | ||
|
||
namespace PipBehaviorMapper | ||
{ | ||
AWS_IVSREALTIME_API PipBehavior GetPipBehaviorForName(const Aws::String& name); | ||
|
||
AWS_IVSREALTIME_API Aws::String GetNameForPipBehavior(PipBehavior value); | ||
} // namespace PipBehaviorMapper | ||
} // namespace Model | ||
} // namespace ivsrealtime | ||
} // namespace Aws |
Oops, something went wrong.