120 lines
5.1 KiB
C
120 lines
5.1 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 GetSAMLProviderRequest : public IAMRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetSAMLProviderRequest();
|
|||
|
|
|
|||
|
|
// 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 "GetSAMLProvider"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
protected:
|
|||
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|||
|
|
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider resource object in IAM to
|
|||
|
|
* get information about.</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 resource object in IAM to
|
|||
|
|
* get information about.</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 resource object in IAM to
|
|||
|
|
* get information about.</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 resource object in IAM to
|
|||
|
|
* get information about.</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 resource object in IAM to
|
|||
|
|
* get information about.</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 resource object in IAM to
|
|||
|
|
* get information about.</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 GetSAMLProviderRequest& WithSAMLProviderArn(const Aws::String& value) { SetSAMLProviderArn(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider resource object in IAM to
|
|||
|
|
* get information about.</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 GetSAMLProviderRequest& WithSAMLProviderArn(Aws::String&& value) { SetSAMLProviderArn(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the SAML provider resource object in IAM to
|
|||
|
|
* get information about.</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 GetSAMLProviderRequest& WithSAMLProviderArn(const char* value) { SetSAMLProviderArn(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_sAMLProviderArn;
|
|||
|
|
bool m_sAMLProviderArnHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace IAM
|
|||
|
|
} // namespace Aws
|