-
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.
Documentation-only update for AWS Marketplace Reporting API.
Add validation pattern to S3KeyPrefix on the EnableLogging API Add support for using the template from a previous job during job creation and listing parameter definitions for a job. This release adds support for the following capabilities: Configuration of the Gen AI system via AIAgent and AIPrompts. Integration support for Bedrock Knowledge Base.
- Loading branch information
1 parent
2cde9b1
commit cca7d92
Showing
235 changed files
with
18,858 additions
and
131 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.420 | ||
1.11.421 |
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
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
128 changes: 128 additions & 0 deletions
128
.../src/aws-cpp-sdk-deadline/include/aws/deadline/model/ListJobParameterDefinitionsRequest.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,128 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/deadline/Deadline_EXPORTS.h> | ||
#include <aws/deadline/DeadlineRequest.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace Http | ||
{ | ||
class URI; | ||
} //namespace Http | ||
namespace deadline | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
*/ | ||
class ListJobParameterDefinitionsRequest : public DeadlineRequest | ||
{ | ||
public: | ||
AWS_DEADLINE_API ListJobParameterDefinitionsRequest(); | ||
|
||
// Service request name is the Operation name which will send this request out, | ||
// each operation should has unique request name, so that we can get operation's name from this request. | ||
// Note: this is not true for response, multiple operations may have the same response name, | ||
// so we can not get operation's name from response. | ||
inline virtual const char* GetServiceRequestName() const override { return "ListJobParameterDefinitions"; } | ||
|
||
AWS_DEADLINE_API Aws::String SerializePayload() const override; | ||
|
||
AWS_DEADLINE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; | ||
|
||
|
||
///@{ | ||
/** | ||
* <p>The farm ID of the job to list.</p> | ||
*/ | ||
inline const Aws::String& GetFarmId() const{ return m_farmId; } | ||
inline bool FarmIdHasBeenSet() const { return m_farmIdHasBeenSet; } | ||
inline void SetFarmId(const Aws::String& value) { m_farmIdHasBeenSet = true; m_farmId = value; } | ||
inline void SetFarmId(Aws::String&& value) { m_farmIdHasBeenSet = true; m_farmId = std::move(value); } | ||
inline void SetFarmId(const char* value) { m_farmIdHasBeenSet = true; m_farmId.assign(value); } | ||
inline ListJobParameterDefinitionsRequest& WithFarmId(const Aws::String& value) { SetFarmId(value); return *this;} | ||
inline ListJobParameterDefinitionsRequest& WithFarmId(Aws::String&& value) { SetFarmId(std::move(value)); return *this;} | ||
inline ListJobParameterDefinitionsRequest& WithFarmId(const char* value) { SetFarmId(value); return *this;} | ||
///@} | ||
|
||
///@{ | ||
/** | ||
* <p>The job ID to include on the list.</p> | ||
*/ | ||
inline const Aws::String& GetJobId() const{ return m_jobId; } | ||
inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; } | ||
inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; } | ||
inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); } | ||
inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); } | ||
inline ListJobParameterDefinitionsRequest& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} | ||
inline ListJobParameterDefinitionsRequest& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} | ||
inline ListJobParameterDefinitionsRequest& WithJobId(const char* value) { SetJobId(value); return *this;} | ||
///@} | ||
|
||
///@{ | ||
/** | ||
* <p>The queue ID to include on the list.</p> | ||
*/ | ||
inline const Aws::String& GetQueueId() const{ return m_queueId; } | ||
inline bool QueueIdHasBeenSet() const { return m_queueIdHasBeenSet; } | ||
inline void SetQueueId(const Aws::String& value) { m_queueIdHasBeenSet = true; m_queueId = value; } | ||
inline void SetQueueId(Aws::String&& value) { m_queueIdHasBeenSet = true; m_queueId = std::move(value); } | ||
inline void SetQueueId(const char* value) { m_queueIdHasBeenSet = true; m_queueId.assign(value); } | ||
inline ListJobParameterDefinitionsRequest& WithQueueId(const Aws::String& value) { SetQueueId(value); return *this;} | ||
inline ListJobParameterDefinitionsRequest& WithQueueId(Aws::String&& value) { SetQueueId(std::move(value)); return *this;} | ||
inline ListJobParameterDefinitionsRequest& WithQueueId(const char* value) { SetQueueId(value); return *this;} | ||
///@} | ||
|
||
///@{ | ||
/** | ||
* <p>The token for the next set of results, or <code>null</code> to start from the | ||
* beginning.</p> | ||
*/ | ||
inline const Aws::String& GetNextToken() const{ return m_nextToken; } | ||
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } | ||
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } | ||
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } | ||
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } | ||
inline ListJobParameterDefinitionsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} | ||
inline ListJobParameterDefinitionsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} | ||
inline ListJobParameterDefinitionsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} | ||
///@} | ||
|
||
///@{ | ||
/** | ||
* <p>The maximum number of results to return. Use this parameter with | ||
* <code>NextToken</code> to get results as a set of sequential pages.</p> | ||
*/ | ||
inline int GetMaxResults() const{ return m_maxResults; } | ||
inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } | ||
inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } | ||
inline ListJobParameterDefinitionsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} | ||
///@} | ||
private: | ||
|
||
Aws::String m_farmId; | ||
bool m_farmIdHasBeenSet = false; | ||
|
||
Aws::String m_jobId; | ||
bool m_jobIdHasBeenSet = false; | ||
|
||
Aws::String m_queueId; | ||
bool m_queueIdHasBeenSet = false; | ||
|
||
Aws::String m_nextToken; | ||
bool m_nextTokenHasBeenSet = false; | ||
|
||
int m_maxResults; | ||
bool m_maxResultsHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace deadline | ||
} // namespace Aws |
Oops, something went wrong.