Skip to content

Commit 1643c71

Browse files
Adds support for longer email message header values, increasing the maximum length from 870 to 995 characters for RFC 5322 compliance.
Adds support for streaming memory records in AgentCore Memory This release adds support for webhooks, allowing customers to create an Event Integration with a webhook source. AWS Deadline Cloud now supports cost scale factors for farms, enabling studios to adjust reported costs to reflect their actual rendering economics. Adjusted costs are reflected in Deadline Cloud's Usage Explorer and Budgets. Fixed wrong endpoint resolutions in few regions. Added AWS CFN resource schema for BCM Data Exports. Added max value validation for pagination parameter. Fixed ARN format validation for BCM Data Exports resources. Updated size constraints for table properties. Added AccessDeniedException error. Amazon Connect now supports the ability to programmatically configure and run automated tests for contact center experiences for Chat. Integrate testing into CICD pipelines, run multiple tests at scale, and retrieve results via API to automate validation of chat interactions and workflows. Amazon Bedrock Guardrails account-level enforcement APIs now support lists for model inclusion and exclusion from guardrail enforcement. Added new Gen6 stream classes based on the EC2 G6f instance family. These stream classes provide cost-optimized options for streaming well-optimized or lower-fidelity games on Windows environments.
1 parent c05402a commit 1643c71

108 files changed

Lines changed: 2949 additions & 1569 deletions

File tree

Some content is hidden

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.763
1+
1.11.764

generated/src/aws-cpp-sdk-bcm-data-exports/include/aws/bcm-data-exports/model/Column.h

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,6 @@ class Column {
3232
AWS_BCMDATAEXPORTS_API Column& operator=(Aws::Utils::Json::JsonView jsonValue);
3333
AWS_BCMDATAEXPORTS_API Aws::Utils::Json::JsonValue Jsonize() const;
3434

35-
///@{
36-
/**
37-
* <p>The description for a column.</p>
38-
*/
39-
inline const Aws::String& GetDescription() const { return m_description; }
40-
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
41-
template <typename DescriptionT = Aws::String>
42-
void SetDescription(DescriptionT&& value) {
43-
m_descriptionHasBeenSet = true;
44-
m_description = std::forward<DescriptionT>(value);
45-
}
46-
template <typename DescriptionT = Aws::String>
47-
Column& WithDescription(DescriptionT&& value) {
48-
SetDescription(std::forward<DescriptionT>(value));
49-
return *this;
50-
}
51-
///@}
52-
5335
///@{
5436
/**
5537
* <p>The column name.</p>
@@ -85,15 +67,33 @@ class Column {
8567
return *this;
8668
}
8769
///@}
88-
private:
89-
Aws::String m_description;
9070

71+
///@{
72+
/**
73+
* <p>The description for a column.</p>
74+
*/
75+
inline const Aws::String& GetDescription() const { return m_description; }
76+
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
77+
template <typename DescriptionT = Aws::String>
78+
void SetDescription(DescriptionT&& value) {
79+
m_descriptionHasBeenSet = true;
80+
m_description = std::forward<DescriptionT>(value);
81+
}
82+
template <typename DescriptionT = Aws::String>
83+
Column& WithDescription(DescriptionT&& value) {
84+
SetDescription(std::forward<DescriptionT>(value));
85+
return *this;
86+
}
87+
///@}
88+
private:
9189
Aws::String m_name;
9290

9391
Aws::String m_type;
94-
bool m_descriptionHasBeenSet = false;
92+
93+
Aws::String m_description;
9594
bool m_nameHasBeenSet = false;
9695
bool m_typeHasBeenSet = false;
96+
bool m_descriptionHasBeenSet = false;
9797
};
9898

9999
} // namespace Model

generated/src/aws-cpp-sdk-bcm-data-exports/include/aws/bcm-data-exports/model/ExecutionStatus.h

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,32 @@ class ExecutionStatus {
3535

3636
///@{
3737
/**
38-
* <p>The time when the execution was completed.</p>
38+
* <p>The code for the status of the execution.</p>
3939
*/
40-
inline const Aws::Utils::DateTime& GetCompletedAt() const { return m_completedAt; }
41-
inline bool CompletedAtHasBeenSet() const { return m_completedAtHasBeenSet; }
42-
template <typename CompletedAtT = Aws::Utils::DateTime>
43-
void SetCompletedAt(CompletedAtT&& value) {
44-
m_completedAtHasBeenSet = true;
45-
m_completedAt = std::forward<CompletedAtT>(value);
40+
inline ExecutionStatusCode GetStatusCode() const { return m_statusCode; }
41+
inline bool StatusCodeHasBeenSet() const { return m_statusCodeHasBeenSet; }
42+
inline void SetStatusCode(ExecutionStatusCode value) {
43+
m_statusCodeHasBeenSet = true;
44+
m_statusCode = value;
4645
}
47-
template <typename CompletedAtT = Aws::Utils::DateTime>
48-
ExecutionStatus& WithCompletedAt(CompletedAtT&& value) {
49-
SetCompletedAt(std::forward<CompletedAtT>(value));
46+
inline ExecutionStatus& WithStatusCode(ExecutionStatusCode value) {
47+
SetStatusCode(value);
48+
return *this;
49+
}
50+
///@}
51+
52+
///@{
53+
/**
54+
* <p>The reason for the failed status.</p>
55+
*/
56+
inline ExecutionStatusReason GetStatusReason() const { return m_statusReason; }
57+
inline bool StatusReasonHasBeenSet() const { return m_statusReasonHasBeenSet; }
58+
inline void SetStatusReason(ExecutionStatusReason value) {
59+
m_statusReasonHasBeenSet = true;
60+
m_statusReason = value;
61+
}
62+
inline ExecutionStatus& WithStatusReason(ExecutionStatusReason value) {
63+
SetStatusReason(value);
5064
return *this;
5165
}
5266
///@}
@@ -69,6 +83,24 @@ class ExecutionStatus {
6983
}
7084
///@}
7185

86+
///@{
87+
/**
88+
* <p>The time when the execution was completed.</p>
89+
*/
90+
inline const Aws::Utils::DateTime& GetCompletedAt() const { return m_completedAt; }
91+
inline bool CompletedAtHasBeenSet() const { return m_completedAtHasBeenSet; }
92+
template <typename CompletedAtT = Aws::Utils::DateTime>
93+
void SetCompletedAt(CompletedAtT&& value) {
94+
m_completedAtHasBeenSet = true;
95+
m_completedAt = std::forward<CompletedAtT>(value);
96+
}
97+
template <typename CompletedAtT = Aws::Utils::DateTime>
98+
ExecutionStatus& WithCompletedAt(CompletedAtT&& value) {
99+
SetCompletedAt(std::forward<CompletedAtT>(value));
100+
return *this;
101+
}
102+
///@}
103+
72104
///@{
73105
/**
74106
* <p>The time when the execution was last updated.</p>
@@ -86,53 +118,21 @@ class ExecutionStatus {
86118
return *this;
87119
}
88120
///@}
89-
90-
///@{
91-
/**
92-
* <p>The code for the status of the execution.</p>
93-
*/
94-
inline ExecutionStatusCode GetStatusCode() const { return m_statusCode; }
95-
inline bool StatusCodeHasBeenSet() const { return m_statusCodeHasBeenSet; }
96-
inline void SetStatusCode(ExecutionStatusCode value) {
97-
m_statusCodeHasBeenSet = true;
98-
m_statusCode = value;
99-
}
100-
inline ExecutionStatus& WithStatusCode(ExecutionStatusCode value) {
101-
SetStatusCode(value);
102-
return *this;
103-
}
104-
///@}
105-
106-
///@{
107-
/**
108-
* <p>The reason for the failed status.</p>
109-
*/
110-
inline ExecutionStatusReason GetStatusReason() const { return m_statusReason; }
111-
inline bool StatusReasonHasBeenSet() const { return m_statusReasonHasBeenSet; }
112-
inline void SetStatusReason(ExecutionStatusReason value) {
113-
m_statusReasonHasBeenSet = true;
114-
m_statusReason = value;
115-
}
116-
inline ExecutionStatus& WithStatusReason(ExecutionStatusReason value) {
117-
SetStatusReason(value);
118-
return *this;
119-
}
120-
///@}
121121
private:
122-
Aws::Utils::DateTime m_completedAt{};
122+
ExecutionStatusCode m_statusCode{ExecutionStatusCode::NOT_SET};
123123

124-
Aws::Utils::DateTime m_createdAt{};
124+
ExecutionStatusReason m_statusReason{ExecutionStatusReason::NOT_SET};
125125

126-
Aws::Utils::DateTime m_lastUpdatedAt{};
126+
Aws::Utils::DateTime m_createdAt{};
127127

128-
ExecutionStatusCode m_statusCode{ExecutionStatusCode::NOT_SET};
128+
Aws::Utils::DateTime m_completedAt{};
129129

130-
ExecutionStatusReason m_statusReason{ExecutionStatusReason::NOT_SET};
131-
bool m_completedAtHasBeenSet = false;
132-
bool m_createdAtHasBeenSet = false;
133-
bool m_lastUpdatedAtHasBeenSet = false;
130+
Aws::Utils::DateTime m_lastUpdatedAt{};
134131
bool m_statusCodeHasBeenSet = false;
135132
bool m_statusReasonHasBeenSet = false;
133+
bool m_createdAtHasBeenSet = false;
134+
bool m_completedAtHasBeenSet = false;
135+
bool m_lastUpdatedAtHasBeenSet = false;
136136
};
137137

138138
} // namespace Model

generated/src/aws-cpp-sdk-bcm-data-exports/include/aws/bcm-data-exports/model/Export.h

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,36 @@ class Export {
3636

3737
///@{
3838
/**
39-
* <p>The data query for this specific data export.</p>
39+
* <p>The Amazon Resource Name (ARN) for this export.</p>
4040
*/
41-
inline const DataQuery& GetDataQuery() const { return m_dataQuery; }
42-
inline bool DataQueryHasBeenSet() const { return m_dataQueryHasBeenSet; }
43-
template <typename DataQueryT = DataQuery>
44-
void SetDataQuery(DataQueryT&& value) {
45-
m_dataQueryHasBeenSet = true;
46-
m_dataQuery = std::forward<DataQueryT>(value);
41+
inline const Aws::String& GetExportArn() const { return m_exportArn; }
42+
inline bool ExportArnHasBeenSet() const { return m_exportArnHasBeenSet; }
43+
template <typename ExportArnT = Aws::String>
44+
void SetExportArn(ExportArnT&& value) {
45+
m_exportArnHasBeenSet = true;
46+
m_exportArn = std::forward<ExportArnT>(value);
4747
}
48-
template <typename DataQueryT = DataQuery>
49-
Export& WithDataQuery(DataQueryT&& value) {
50-
SetDataQuery(std::forward<DataQueryT>(value));
48+
template <typename ExportArnT = Aws::String>
49+
Export& WithExportArn(ExportArnT&& value) {
50+
SetExportArn(std::forward<ExportArnT>(value));
51+
return *this;
52+
}
53+
///@}
54+
55+
///@{
56+
/**
57+
* <p>The name of this specific data export.</p>
58+
*/
59+
inline const Aws::String& GetName() const { return m_name; }
60+
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
61+
template <typename NameT = Aws::String>
62+
void SetName(NameT&& value) {
63+
m_nameHasBeenSet = true;
64+
m_name = std::forward<NameT>(value);
65+
}
66+
template <typename NameT = Aws::String>
67+
Export& WithName(NameT&& value) {
68+
SetName(std::forward<NameT>(value));
5169
return *this;
5270
}
5371
///@}
@@ -70,6 +88,24 @@ class Export {
7088
}
7189
///@}
7290

91+
///@{
92+
/**
93+
* <p>The data query for this specific data export.</p>
94+
*/
95+
inline const DataQuery& GetDataQuery() const { return m_dataQuery; }
96+
inline bool DataQueryHasBeenSet() const { return m_dataQueryHasBeenSet; }
97+
template <typename DataQueryT = DataQuery>
98+
void SetDataQuery(DataQueryT&& value) {
99+
m_dataQueryHasBeenSet = true;
100+
m_dataQuery = std::forward<DataQueryT>(value);
101+
}
102+
template <typename DataQueryT = DataQuery>
103+
Export& WithDataQuery(DataQueryT&& value) {
104+
SetDataQuery(std::forward<DataQueryT>(value));
105+
return *this;
106+
}
107+
///@}
108+
73109
///@{
74110
/**
75111
* <p>The destination configuration for this specific data export.</p>
@@ -88,42 +124,6 @@ class Export {
88124
}
89125
///@}
90126

91-
///@{
92-
/**
93-
* <p>The Amazon Resource Name (ARN) for this export.</p>
94-
*/
95-
inline const Aws::String& GetExportArn() const { return m_exportArn; }
96-
inline bool ExportArnHasBeenSet() const { return m_exportArnHasBeenSet; }
97-
template <typename ExportArnT = Aws::String>
98-
void SetExportArn(ExportArnT&& value) {
99-
m_exportArnHasBeenSet = true;
100-
m_exportArn = std::forward<ExportArnT>(value);
101-
}
102-
template <typename ExportArnT = Aws::String>
103-
Export& WithExportArn(ExportArnT&& value) {
104-
SetExportArn(std::forward<ExportArnT>(value));
105-
return *this;
106-
}
107-
///@}
108-
109-
///@{
110-
/**
111-
* <p>The name of this specific data export.</p>
112-
*/
113-
inline const Aws::String& GetName() const { return m_name; }
114-
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
115-
template <typename NameT = Aws::String>
116-
void SetName(NameT&& value) {
117-
m_nameHasBeenSet = true;
118-
m_name = std::forward<NameT>(value);
119-
}
120-
template <typename NameT = Aws::String>
121-
Export& WithName(NameT&& value) {
122-
SetName(std::forward<NameT>(value));
123-
return *this;
124-
}
125-
///@}
126-
127127
///@{
128128
/**
129129
* <p>The cadence for Amazon Web Services to update the export in your S3
@@ -143,22 +143,22 @@ class Export {
143143
}
144144
///@}
145145
private:
146-
DataQuery m_dataQuery;
146+
Aws::String m_exportArn;
147147

148-
Aws::String m_description;
148+
Aws::String m_name;
149149

150-
DestinationConfigurations m_destinationConfigurations;
150+
Aws::String m_description;
151151

152-
Aws::String m_exportArn;
152+
DataQuery m_dataQuery;
153153

154-
Aws::String m_name;
154+
DestinationConfigurations m_destinationConfigurations;
155155

156156
RefreshCadence m_refreshCadence;
157-
bool m_dataQueryHasBeenSet = false;
158-
bool m_descriptionHasBeenSet = false;
159-
bool m_destinationConfigurationsHasBeenSet = false;
160157
bool m_exportArnHasBeenSet = false;
161158
bool m_nameHasBeenSet = false;
159+
bool m_descriptionHasBeenSet = false;
160+
bool m_dataQueryHasBeenSet = false;
161+
bool m_destinationConfigurationsHasBeenSet = false;
162162
bool m_refreshCadenceHasBeenSet = false;
163163
};
164164

0 commit comments

Comments
 (0)