196 lines
9.3 KiB
C++
196 lines
9.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/iam/IAM_EXPORTS.h>
|
|
#include <aws/iam/IAMRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace IAM
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_IAM_API UpdateSAMLProviderRequest : public IAMRequest
|
|
{
|
|
public:
|
|
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::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline const Aws::String& GetSAMLMetadataDocument() const{ return m_sAMLMetadataDocument; }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline bool SAMLMetadataDocumentHasBeenSet() const { return m_sAMLMetadataDocumentHasBeenSet; }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline void SetSAMLMetadataDocument(const Aws::String& value) { m_sAMLMetadataDocumentHasBeenSet = true; m_sAMLMetadataDocument = value; }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline void SetSAMLMetadataDocument(Aws::String&& value) { m_sAMLMetadataDocumentHasBeenSet = true; m_sAMLMetadataDocument = std::move(value); }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline void SetSAMLMetadataDocument(const char* value) { m_sAMLMetadataDocumentHasBeenSet = true; m_sAMLMetadataDocument.assign(value); }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline UpdateSAMLProviderRequest& WithSAMLMetadataDocument(const Aws::String& value) { SetSAMLMetadataDocument(value); return *this;}
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline UpdateSAMLProviderRequest& WithSAMLMetadataDocument(Aws::String&& value) { SetSAMLMetadataDocument(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline UpdateSAMLProviderRequest& WithSAMLMetadataDocument(const char* value) { SetSAMLMetadataDocument(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider to update.</p> <p>For
|
|
* more information about ARNs, see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
|
|
* Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General
|
|
* Reference</i>.</p>
|
|
*/
|
|
inline const Aws::String& GetSAMLProviderArn() const{ return m_sAMLProviderArn; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider to update.</p> <p>For
|
|
* more information about ARNs, see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
|
|
* Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General
|
|
* Reference</i>.</p>
|
|
*/
|
|
inline bool SAMLProviderArnHasBeenSet() const { return m_sAMLProviderArnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider to update.</p> <p>For
|
|
* more information about ARNs, see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
|
|
* Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General
|
|
* Reference</i>.</p>
|
|
*/
|
|
inline void SetSAMLProviderArn(const Aws::String& value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider to update.</p> <p>For
|
|
* more information about ARNs, see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
|
|
* Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General
|
|
* Reference</i>.</p>
|
|
*/
|
|
inline void SetSAMLProviderArn(Aws::String&& value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider to update.</p> <p>For
|
|
* more information about ARNs, see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
|
|
* Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General
|
|
* Reference</i>.</p>
|
|
*/
|
|
inline void SetSAMLProviderArn(const char* value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider to update.</p> <p>For
|
|
* more information about ARNs, see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
|
|
* Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General
|
|
* Reference</i>.</p>
|
|
*/
|
|
inline UpdateSAMLProviderRequest& WithSAMLProviderArn(const Aws::String& value) { SetSAMLProviderArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider to update.</p> <p>For
|
|
* more information about ARNs, see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
|
|
* Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General
|
|
* Reference</i>.</p>
|
|
*/
|
|
inline UpdateSAMLProviderRequest& WithSAMLProviderArn(Aws::String&& value) { SetSAMLProviderArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider to update.</p> <p>For
|
|
* more information about ARNs, see <a
|
|
* href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
|
|
* Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General
|
|
* Reference</i>.</p>
|
|
*/
|
|
inline UpdateSAMLProviderRequest& WithSAMLProviderArn(const char* value) { SetSAMLProviderArn(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_sAMLMetadataDocument;
|
|
bool m_sAMLMetadataDocumentHasBeenSet;
|
|
|
|
Aws::String m_sAMLProviderArn;
|
|
bool m_sAMLProviderArnHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace IAM
|
|
} // namespace Aws
|