/**
* 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 CreateOpenIDConnectProvider
* request. See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is * created. For more information, see OpenIDConnectProviderListEntry.
*/ inline const Aws::String& GetOpenIDConnectProviderArn() const{ return m_openIDConnectProviderArn; } /** *The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is * created. For more information, see OpenIDConnectProviderListEntry.
*/ inline void SetOpenIDConnectProviderArn(const Aws::String& value) { m_openIDConnectProviderArn = value; } /** *The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is * created. For more information, see OpenIDConnectProviderListEntry.
*/ inline void SetOpenIDConnectProviderArn(Aws::String&& value) { m_openIDConnectProviderArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is * created. For more information, see OpenIDConnectProviderListEntry.
*/ inline void SetOpenIDConnectProviderArn(const char* value) { m_openIDConnectProviderArn.assign(value); } /** *The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is * created. For more information, see OpenIDConnectProviderListEntry.
*/ inline CreateOpenIDConnectProviderResult& WithOpenIDConnectProviderArn(const Aws::String& value) { SetOpenIDConnectProviderArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is * created. For more information, see OpenIDConnectProviderListEntry.
*/ inline CreateOpenIDConnectProviderResult& WithOpenIDConnectProviderArn(Aws::String&& value) { SetOpenIDConnectProviderArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is * created. For more information, see OpenIDConnectProviderListEntry.
*/ inline CreateOpenIDConnectProviderResult& WithOpenIDConnectProviderArn(const char* value) { SetOpenIDConnectProviderArn(value); return *this;} /** *A list of tags that are attached to the new IAM OIDC 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 OIDC 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 OIDC 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 OIDC 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 CreateOpenIDConnectProviderResult& WithTags(const Aws::VectorA list of tags that are attached to the new IAM OIDC 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 CreateOpenIDConnectProviderResult& WithTags(Aws::VectorA list of tags that are attached to the new IAM OIDC 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 CreateOpenIDConnectProviderResult& AddTags(const Tag& value) { m_tags.push_back(value); return *this; } /** *A list of tags that are attached to the new IAM OIDC 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 CreateOpenIDConnectProviderResult& 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 CreateOpenIDConnectProviderResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline CreateOpenIDConnectProviderResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_openIDConnectProviderArn; Aws::Vector