/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the password policy for your Amazon Cognito user pool configured as
* a part of your Amplify project.See Also:
AWS
* API Reference
Describes additional constraints on password requirements to sign in to the * auth resource, configured as a part of your Amplify project.
*/ inline const Aws::VectorDescribes additional constraints on password requirements to sign in to the * auth resource, configured as a part of your Amplify project.
*/ inline bool AdditionalConstraintsHasBeenSet() const { return m_additionalConstraintsHasBeenSet; } /** *Describes additional constraints on password requirements to sign in to the * auth resource, configured as a part of your Amplify project.
*/ inline void SetAdditionalConstraints(const Aws::VectorDescribes additional constraints on password requirements to sign in to the * auth resource, configured as a part of your Amplify project.
*/ inline void SetAdditionalConstraints(Aws::VectorDescribes additional constraints on password requirements to sign in to the * auth resource, configured as a part of your Amplify project.
*/ inline UpdateBackendAuthPasswordPolicyConfig& WithAdditionalConstraints(const Aws::VectorDescribes additional constraints on password requirements to sign in to the * auth resource, configured as a part of your Amplify project.
*/ inline UpdateBackendAuthPasswordPolicyConfig& WithAdditionalConstraints(Aws::VectorDescribes additional constraints on password requirements to sign in to the * auth resource, configured as a part of your Amplify project.
*/ inline UpdateBackendAuthPasswordPolicyConfig& AddAdditionalConstraints(const AdditionalConstraintsElement& value) { m_additionalConstraintsHasBeenSet = true; m_additionalConstraints.push_back(value); return *this; } /** *Describes additional constraints on password requirements to sign in to the * auth resource, configured as a part of your Amplify project.
*/ inline UpdateBackendAuthPasswordPolicyConfig& AddAdditionalConstraints(AdditionalConstraintsElement&& value) { m_additionalConstraintsHasBeenSet = true; m_additionalConstraints.push_back(std::move(value)); return *this; } /** *Describes the minimum length of the password required to sign in to the auth * resource, configured as a part of your Amplify project.
*/ inline double GetMinimumLength() const{ return m_minimumLength; } /** *Describes the minimum length of the password required to sign in to the auth * resource, configured as a part of your Amplify project.
*/ inline bool MinimumLengthHasBeenSet() const { return m_minimumLengthHasBeenSet; } /** *Describes the minimum length of the password required to sign in to the auth * resource, configured as a part of your Amplify project.
*/ inline void SetMinimumLength(double value) { m_minimumLengthHasBeenSet = true; m_minimumLength = value; } /** *Describes the minimum length of the password required to sign in to the auth * resource, configured as a part of your Amplify project.
*/ inline UpdateBackendAuthPasswordPolicyConfig& WithMinimumLength(double value) { SetMinimumLength(value); return *this;} private: Aws::Vector