/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the response to a successful CreateSAMLProvider request.
* See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.
*/ inline const Aws::String& GetSAMLProviderArn() const{ return m_sAMLProviderArn; } /** *The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.
*/ inline void SetSAMLProviderArn(const Aws::String& value) { m_sAMLProviderArn = value; } /** *The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.
*/ inline void SetSAMLProviderArn(Aws::String&& value) { m_sAMLProviderArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.
*/ inline void SetSAMLProviderArn(const char* value) { m_sAMLProviderArn.assign(value); } /** *The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.
*/ inline CreateSAMLProviderResult& WithSAMLProviderArn(const Aws::String& value) { SetSAMLProviderArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.
*/ inline CreateSAMLProviderResult& WithSAMLProviderArn(Aws::String&& value) { SetSAMLProviderArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.
*/ inline CreateSAMLProviderResult& WithSAMLProviderArn(const char* value) { SetSAMLProviderArn(value); return *this;} /** *A list of tags that are attached to the new IAM SAML provider. The returned * list of tags is sorted by tag key. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline const Aws::VectorA list of tags that are attached to the new IAM SAML provider. The returned * list of tags is sorted by tag key. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline void SetTags(const Aws::VectorA list of tags that are attached to the new IAM SAML provider. The returned * list of tags is sorted by tag key. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline void SetTags(Aws::VectorA list of tags that are attached to the new IAM SAML provider. The returned * list of tags is sorted by tag key. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline CreateSAMLProviderResult& WithTags(const Aws::VectorA list of tags that are attached to the new IAM SAML provider. The returned * list of tags is sorted by tag key. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline CreateSAMLProviderResult& WithTags(Aws::VectorA list of tags that are attached to the new IAM SAML provider. The returned * list of tags is sorted by tag key. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline CreateSAMLProviderResult& AddTags(const Tag& value) { m_tags.push_back(value); return *this; } /** *A list of tags that are attached to the new IAM SAML provider. The returned * list of tags is sorted by tag key. For more information about tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline CreateSAMLProviderResult& AddTags(Tag&& value) { m_tags.push_back(std::move(value)); return *this; } inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline CreateSAMLProviderResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline CreateSAMLProviderResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_sAMLProviderArn; Aws::Vector