-
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.
Loading status checks…
This release includes API needed to support for Unstructured Data in …
…Q in QuickSight Q&A (IDC). This change adds support for global tables with multi-Region strong consistency (in preview). The UpdateTable API now supports a new attribute MultiRegionConsistency to set consistency when creating global tables. The DescribeTable output now optionally includes the MultiRegionConsistency attribute. Add support for 11 new plugins as action cards to help automate repetitive tasks and improve productivity. This release includes(1)Zero-ETL integration to ingest data from 3P SaaS and DynamoDB to Redshift/Redlake (2)new properties on Connections to enable reuse; new connection APIs for retrieve/preview metadata (3)support of CRUD operations for Multi-catalog (4)support of automatic statistics collections Amazon S3 Tables deliver the first cloud object store with built-in open table format support, and the easiest way to store tabular data at scale. Added support for Async Invoke Operations Start, List and Get. Support for invocation logs with `requestMetadata` field in Converse, ConverseStream, Invoke and InvokeStream. Video content blocks in Converse/ConverseStream accept raw bytes or S3 URI. Releasing SDK for Multi-Agent Collaboration. Add new API operations for Amazon Aurora DSQL. Amazon Aurora DSQL is a serverless, distributed SQL database with virtually unlimited scale, highest availability, and zero infrastructure management. Adds support for Amazon Redshift RegisterNamespace and DeregisterNamespace APIs to share data to AWS Glue Data Catalog. Amazon S3 Metadata stores object metadata in read-only, fully managed Apache Iceberg metadata tables that you can query. You can create metadata table configurations for S3 general purpose buckets. Amazon Q Business now supports customization options for your web experience, 11 new Plugins, and QuickSight support. Amazon Q index allows software providers to enrich their native generative AI experiences with their customer's enterprise knowledge and user context spanning multiple applications. Releasing SDK for multi agent collaboration Tagging support for Async Invoke resources. Added support for Distillation in CreateModelCustomizationJob API. Support for videoDataDeliveryEnabled flag in invocation logging. Add FEDERATED type to CreateDataCatalog. This creates Athena Data Catalog, AWS Lambda connector, and AWS Glue connection. Create/DeleteDataCatalog returns DataCatalog. Add Status, ConnectionType, and Error to DataCatalog and DataCatalogSummary. Add DeleteCatalogOnly to delete Athena Catalog only. Adds support for the ListManagedWorkgroups API to get an overview of existing managed workgroups. This release added two new LakeFormation Permissions (CREATE_CATALOG, SUPER_USER) and added Id field for CatalogResource. It also added new conditon and expression field. Adds support for Connections, ProjectProfiles, and JobRuns APIs. Supports the new Lineage feature at GA. Adjusts optionality of a parameter for DataSource and SubscriptionTarget APIs which may adjust types in some clients. Support for configuring AiOps investigation as alarm action
1 parent
e7b1ddc
commit cf73bbf
Showing
1,161 changed files
with
99,098 additions
and
2,905 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.459 | ||
1.11.460 |
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
49 changes: 49 additions & 0 deletions
49
generated/src/aws-cpp-sdk-athena/include/aws/athena/model/ConnectionType.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,49 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/athena/Athena_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace Athena | ||
{ | ||
namespace Model | ||
{ | ||
enum class ConnectionType | ||
{ | ||
NOT_SET, | ||
DYNAMODB, | ||
MYSQL, | ||
POSTGRESQL, | ||
REDSHIFT, | ||
ORACLE, | ||
SYNAPSE, | ||
SQLSERVER, | ||
DB2, | ||
OPENSEARCH, | ||
BIGQUERY, | ||
GOOGLECLOUDSTORAGE, | ||
HBASE, | ||
DOCUMENTDB, | ||
CMDB, | ||
TPCDS, | ||
TIMESTREAM, | ||
SAPHANA, | ||
SNOWFLAKE, | ||
DATALAKEGEN2, | ||
DB2AS400 | ||
}; | ||
|
||
namespace ConnectionTypeMapper | ||
{ | ||
AWS_ATHENA_API ConnectionType GetConnectionTypeForName(const Aws::String& name); | ||
|
||
AWS_ATHENA_API Aws::String GetNameForConnectionType(ConnectionType value); | ||
} // namespace ConnectionTypeMapper | ||
} // namespace Model | ||
} // namespace Athena | ||
} // 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
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
38 changes: 38 additions & 0 deletions
38
generated/src/aws-cpp-sdk-athena/include/aws/athena/model/DataCatalogStatus.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,38 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/athena/Athena_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace Athena | ||
{ | ||
namespace Model | ||
{ | ||
enum class DataCatalogStatus | ||
{ | ||
NOT_SET, | ||
CREATE_IN_PROGRESS, | ||
CREATE_COMPLETE, | ||
CREATE_FAILED, | ||
CREATE_FAILED_CLEANUP_IN_PROGRESS, | ||
CREATE_FAILED_CLEANUP_COMPLETE, | ||
CREATE_FAILED_CLEANUP_FAILED, | ||
DELETE_IN_PROGRESS, | ||
DELETE_COMPLETE, | ||
DELETE_FAILED | ||
}; | ||
|
||
namespace DataCatalogStatusMapper | ||
{ | ||
AWS_ATHENA_API DataCatalogStatus GetDataCatalogStatusForName(const Aws::String& name); | ||
|
||
AWS_ATHENA_API Aws::String GetNameForDataCatalogStatus(DataCatalogStatus value); | ||
} // namespace DataCatalogStatusMapper | ||
} // namespace Model | ||
} // namespace Athena | ||
} // namespace Aws |
Oops, something went wrong.