Skip to content

Commit

Permalink
This release adds support for enabling or disabling Natural Language …
Browse files Browse the repository at this point in the history
…Query Processing feature for Amazon OpenSearch Service domains, and provides visibility into the current state of the setup or tear-down.

This release deprecates dataProductItem field from SearchInventoryResultItem, along with some unused DataProduct shapes
Adds support for FSx for NetApp ONTAP 2nd Generation file systems, and FSx for OpenZFS Single AZ HA file systems.
This release 1/ enables optimization jobs that allows customers to perform Ahead-of-time compilation and quantization. 2/ allows customers to control access to Amazon Q integration in SageMaker Studio. 3/ enables AdditionalModelDataSources for CreateModel action.
  • Loading branch information
aws-sdk-cpp-automation committed Jul 9, 2024
1 parent bcbaa4b commit 77b525c
Show file tree
Hide file tree
Showing 108 changed files with 6,879 additions and 851 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.364
1.11.365

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#pragma once
#include <aws/datazone/DataZone_EXPORTS.h>
#include <aws/datazone/model/AssetItem.h>
#include <aws/datazone/model/DataProductSummary.h>
#include <aws/datazone/model/GlossaryItem.h>
#include <aws/datazone/model/GlossaryTermItem.h>
#include <utility>
Expand Down Expand Up @@ -52,18 +51,6 @@ namespace Model
inline SearchInventoryResultItem& WithAssetItem(AssetItem&& value) { SetAssetItem(std::move(value)); return *this;}
///@}

///@{
/**
* <p>The data product item included in the search results.</p>
*/
inline const DataProductSummary& GetDataProductItem() const{ return m_dataProductItem; }
inline bool DataProductItemHasBeenSet() const { return m_dataProductItemHasBeenSet; }
inline void SetDataProductItem(const DataProductSummary& value) { m_dataProductItemHasBeenSet = true; m_dataProductItem = value; }
inline void SetDataProductItem(DataProductSummary&& value) { m_dataProductItemHasBeenSet = true; m_dataProductItem = std::move(value); }
inline SearchInventoryResultItem& WithDataProductItem(const DataProductSummary& value) { SetDataProductItem(value); return *this;}
inline SearchInventoryResultItem& WithDataProductItem(DataProductSummary&& value) { SetDataProductItem(std::move(value)); return *this;}
///@}

///@{
/**
* <p>The glossary item included in the search results.</p>
Expand Down Expand Up @@ -92,9 +79,6 @@ namespace Model
AssetItem m_assetItem;
bool m_assetItemHasBeenSet = false;

DataProductSummary m_dataProductItem;
bool m_dataProductItemHasBeenSet = false;

GlossaryItem m_glossaryItem;
bool m_glossaryItemHasBeenSet = false;

Expand Down
Loading

0 comments on commit 77b525c

Please sign in to comment.