/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace IAM { namespace Model { /** */ class CreateSAMLProviderRequest : public IAMRequest { public: AWS_IAM_API CreateSAMLProviderRequest(); // 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 "CreateSAMLProvider"; } 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.

For * more information, see About * SAML 2.0-based federation in the IAM User Guide

*/ 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.

For * more information, see About * SAML 2.0-based federation in the IAM User Guide

*/ 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.

For * more information, see About * SAML 2.0-based federation in the IAM User Guide

*/ 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.

For * more information, see About * SAML 2.0-based federation in the IAM User Guide

*/ 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.

For * more information, see About * SAML 2.0-based federation in the IAM User Guide

*/ 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.

For * more information, see About * SAML 2.0-based federation in the IAM User Guide

*/ inline CreateSAMLProviderRequest& 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.

For * more information, see About * SAML 2.0-based federation in the IAM User Guide

*/ inline CreateSAMLProviderRequest& 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.

For * more information, see About * SAML 2.0-based federation in the IAM User Guide

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

The name of the provider to create.

This parameter allows (through its * regex pattern) a string of * characters consisting of upper and lowercase alphanumeric characters with no * spaces. You can also include any of the following characters: _+=,.@-

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the provider to create.

This parameter allows (through its * regex pattern) a string of * characters consisting of upper and lowercase alphanumeric characters with no * spaces. You can also include any of the following characters: _+=,.@-

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the provider to create.

This parameter allows (through its * regex pattern) a string of * characters consisting of upper and lowercase alphanumeric characters with no * spaces. You can also include any of the following characters: _+=,.@-

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the provider to create.

This parameter allows (through its * regex pattern) a string of * characters consisting of upper and lowercase alphanumeric characters with no * spaces. You can also include any of the following characters: _+=,.@-

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the provider to create.

This parameter allows (through its * regex pattern) a string of * characters consisting of upper and lowercase alphanumeric characters with no * spaces. You can also include any of the following characters: _+=,.@-

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the provider to create.

This parameter allows (through its * regex pattern) a string of * characters consisting of upper and lowercase alphanumeric characters with no * spaces. You can also include any of the following characters: _+=,.@-

*/ inline CreateSAMLProviderRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the provider to create.

This parameter allows (through its * regex pattern) a string of * characters consisting of upper and lowercase alphanumeric characters with no * spaces. You can also include any of the following characters: _+=,.@-

*/ inline CreateSAMLProviderRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the provider to create.

This parameter allows (through its * regex pattern) a string of * characters consisting of upper and lowercase alphanumeric characters with no * spaces. You can also include any of the following characters: _+=,.@-

*/ inline CreateSAMLProviderRequest& WithName(const char* value) { SetName(value); return *this;} /** *

A list of tags that you want to attach to the new IAM SAML provider. Each tag * consists of a key name and an associated value. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

A list of tags that you want to attach to the new IAM SAML provider. Each tag * consists of a key name and an associated value. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

A list of tags that you want to attach to the new IAM SAML provider. Each tag * consists of a key name and an associated value. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

A list of tags that you want to attach to the new IAM SAML provider. Each tag * consists of a key name and an associated value. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

A list of tags that you want to attach to the new IAM SAML provider. Each tag * consists of a key name and an associated value. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline CreateSAMLProviderRequest& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

A list of tags that you want to attach to the new IAM SAML provider. Each tag * consists of a key name and an associated value. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline CreateSAMLProviderRequest& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

A list of tags that you want to attach to the new IAM SAML provider. Each tag * consists of a key name and an associated value. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline CreateSAMLProviderRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

A list of tags that you want to attach to the new IAM SAML provider. Each tag * consists of a key name and an associated value. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.

If any one of the tags * is invalid or if you exceed the allowed maximum number of tags, then the entire * request fails and the resource is not created.

*/ inline CreateSAMLProviderRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_sAMLMetadataDocument; bool m_sAMLMetadataDocumentHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws