/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace OpenSearchServerless { namespace Model { /** *

Statistics for an OpenSearch Serverless security configuration.

See * Also:

AWS * API Reference

*/ class SecurityConfigStats { public: AWS_OPENSEARCHSERVERLESS_API SecurityConfigStats(); AWS_OPENSEARCHSERVERLESS_API SecurityConfigStats(Aws::Utils::Json::JsonView jsonValue); AWS_OPENSEARCHSERVERLESS_API SecurityConfigStats& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_OPENSEARCHSERVERLESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The number of security configurations in the current account.

*/ inline long long GetSamlConfigCount() const{ return m_samlConfigCount; } /** *

The number of security configurations in the current account.

*/ inline bool SamlConfigCountHasBeenSet() const { return m_samlConfigCountHasBeenSet; } /** *

The number of security configurations in the current account.

*/ inline void SetSamlConfigCount(long long value) { m_samlConfigCountHasBeenSet = true; m_samlConfigCount = value; } /** *

The number of security configurations in the current account.

*/ inline SecurityConfigStats& WithSamlConfigCount(long long value) { SetSamlConfigCount(value); return *this;} private: long long m_samlConfigCount; bool m_samlConfigCountHasBeenSet = false; }; } // namespace Model } // namespace OpenSearchServerless } // namespace Aws