/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace IAM { namespace Model { /** */ class UpdateSAMLProviderRequest : public IAMRequest { public: AWS_IAM_API UpdateSAMLProviderRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateSAMLProvider"; } AWS_IAM_API Aws::String SerializePayload() const override; protected: AWS_IAM_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

An XML document generated by an identity provider (IdP) that supports SAML * 2.0. The document includes the issuer's name, expiration information, and keys * that can be used to validate the SAML authentication response (assertions) that * are received from the IdP. You must generate the metadata document using the * identity management software that is used as your organization's IdP.

*/ inline const Aws::String& GetSAMLMetadataDocument() const{ return m_sAMLMetadataDocument; } /** *

An XML document generated by an identity provider (IdP) that supports SAML * 2.0. The document includes the issuer's name, expiration information, and keys * that can be used to validate the SAML authentication response (assertions) that * are received from the IdP. You must generate the metadata document using the * identity management software that is used as your organization's IdP.

*/ inline bool SAMLMetadataDocumentHasBeenSet() const { return m_sAMLMetadataDocumentHasBeenSet; } /** *

An XML document generated by an identity provider (IdP) that supports SAML * 2.0. The document includes the issuer's name, expiration information, and keys * that can be used to validate the SAML authentication response (assertions) that * are received from the IdP. You must generate the metadata document using the * identity management software that is used as your organization's IdP.

*/ inline void SetSAMLMetadataDocument(const Aws::String& value) { m_sAMLMetadataDocumentHasBeenSet = true; m_sAMLMetadataDocument = value; } /** *

An XML document generated by an identity provider (IdP) that supports SAML * 2.0. The document includes the issuer's name, expiration information, and keys * that can be used to validate the SAML authentication response (assertions) that * are received from the IdP. You must generate the metadata document using the * identity management software that is used as your organization's IdP.

*/ inline void SetSAMLMetadataDocument(Aws::String&& value) { m_sAMLMetadataDocumentHasBeenSet = true; m_sAMLMetadataDocument = std::move(value); } /** *

An XML document generated by an identity provider (IdP) that supports SAML * 2.0. The document includes the issuer's name, expiration information, and keys * that can be used to validate the SAML authentication response (assertions) that * are received from the IdP. You must generate the metadata document using the * identity management software that is used as your organization's IdP.

*/ inline void SetSAMLMetadataDocument(const char* value) { m_sAMLMetadataDocumentHasBeenSet = true; m_sAMLMetadataDocument.assign(value); } /** *

An XML document generated by an identity provider (IdP) that supports SAML * 2.0. The document includes the issuer's name, expiration information, and keys * that can be used to validate the SAML authentication response (assertions) that * are received from the IdP. You must generate the metadata document using the * identity management software that is used as your organization's IdP.

*/ inline UpdateSAMLProviderRequest& WithSAMLMetadataDocument(const Aws::String& value) { SetSAMLMetadataDocument(value); return *this;} /** *

An XML document generated by an identity provider (IdP) that supports SAML * 2.0. The document includes the issuer's name, expiration information, and keys * that can be used to validate the SAML authentication response (assertions) that * are received from the IdP. You must generate the metadata document using the * identity management software that is used as your organization's IdP.

*/ inline UpdateSAMLProviderRequest& WithSAMLMetadataDocument(Aws::String&& value) { SetSAMLMetadataDocument(std::move(value)); return *this;} /** *

An XML document generated by an identity provider (IdP) that supports SAML * 2.0. The document includes the issuer's name, expiration information, and keys * that can be used to validate the SAML authentication response (assertions) that * are received from the IdP. You must generate the metadata document using the * identity management software that is used as your organization's IdP.

*/ inline UpdateSAMLProviderRequest& WithSAMLMetadataDocument(const char* value) { SetSAMLMetadataDocument(value); return *this;} /** *

The Amazon Resource Name (ARN) of the SAML provider to update.

For * more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline const Aws::String& GetSAMLProviderArn() const{ return m_sAMLProviderArn; } /** *

The Amazon Resource Name (ARN) of the SAML provider to update.

For * more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline bool SAMLProviderArnHasBeenSet() const { return m_sAMLProviderArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the SAML provider to update.

For * more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline void SetSAMLProviderArn(const Aws::String& value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn = value; } /** *

The Amazon Resource Name (ARN) of the SAML provider to update.

For * more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline void SetSAMLProviderArn(Aws::String&& value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the SAML provider to update.

For * more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline void SetSAMLProviderArn(const char* value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the SAML provider to update.

For * more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline UpdateSAMLProviderRequest& WithSAMLProviderArn(const Aws::String& value) { SetSAMLProviderArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the SAML provider to update.

For * more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline UpdateSAMLProviderRequest& WithSAMLProviderArn(Aws::String&& value) { SetSAMLProviderArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the SAML provider to update.

For * more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline UpdateSAMLProviderRequest& WithSAMLProviderArn(const char* value) { SetSAMLProviderArn(value); return *this;} private: Aws::String m_sAMLMetadataDocument; bool m_sAMLMetadataDocumentHasBeenSet = false; Aws::String m_sAMLProviderArn; bool m_sAMLProviderArnHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws