/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace IAM { namespace Model { /** */ class GetPolicyVersionRequest : public IAMRequest { public: AWS_IAM_API GetPolicyVersionRequest(); // 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 "GetPolicyVersion"; } AWS_IAM_API Aws::String SerializePayload() const override; protected: AWS_IAM_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The Amazon Resource Name (ARN) of the managed policy that you want * information about.

For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline const Aws::String& GetPolicyArn() const{ return m_policyArn; } /** *

The Amazon Resource Name (ARN) of the managed policy that you want * information about.

For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline bool PolicyArnHasBeenSet() const { return m_policyArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the managed policy that you want * information about.

For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline void SetPolicyArn(const Aws::String& value) { m_policyArnHasBeenSet = true; m_policyArn = value; } /** *

The Amazon Resource Name (ARN) of the managed policy that you want * information about.

For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline void SetPolicyArn(Aws::String&& value) { m_policyArnHasBeenSet = true; m_policyArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the managed policy that you want * information about.

For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline void SetPolicyArn(const char* value) { m_policyArnHasBeenSet = true; m_policyArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the managed policy that you want * information about.

For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline GetPolicyVersionRequest& WithPolicyArn(const Aws::String& value) { SetPolicyArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the managed policy that you want * information about.

For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline GetPolicyVersionRequest& WithPolicyArn(Aws::String&& value) { SetPolicyArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the managed policy that you want * information about.

For more information about ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline GetPolicyVersionRequest& WithPolicyArn(const char* value) { SetPolicyArn(value); return *this;} /** *

Identifies the policy version to retrieve.

This parameter allows * (through its regex pattern) a * string of characters that consists of the lowercase letter 'v' followed by one * or two digits, and optionally followed by a period '.' and a string of letters * and digits.

*/ inline const Aws::String& GetVersionId() const{ return m_versionId; } /** *

Identifies the policy version to retrieve.

This parameter allows * (through its regex pattern) a * string of characters that consists of the lowercase letter 'v' followed by one * or two digits, and optionally followed by a period '.' and a string of letters * and digits.

*/ inline bool VersionIdHasBeenSet() const { return m_versionIdHasBeenSet; } /** *

Identifies the policy version to retrieve.

This parameter allows * (through its regex pattern) a * string of characters that consists of the lowercase letter 'v' followed by one * or two digits, and optionally followed by a period '.' and a string of letters * and digits.

*/ inline void SetVersionId(const Aws::String& value) { m_versionIdHasBeenSet = true; m_versionId = value; } /** *

Identifies the policy version to retrieve.

This parameter allows * (through its regex pattern) a * string of characters that consists of the lowercase letter 'v' followed by one * or two digits, and optionally followed by a period '.' and a string of letters * and digits.

*/ inline void SetVersionId(Aws::String&& value) { m_versionIdHasBeenSet = true; m_versionId = std::move(value); } /** *

Identifies the policy version to retrieve.

This parameter allows * (through its regex pattern) a * string of characters that consists of the lowercase letter 'v' followed by one * or two digits, and optionally followed by a period '.' and a string of letters * and digits.

*/ inline void SetVersionId(const char* value) { m_versionIdHasBeenSet = true; m_versionId.assign(value); } /** *

Identifies the policy version to retrieve.

This parameter allows * (through its regex pattern) a * string of characters that consists of the lowercase letter 'v' followed by one * or two digits, and optionally followed by a period '.' and a string of letters * and digits.

*/ inline GetPolicyVersionRequest& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;} /** *

Identifies the policy version to retrieve.

This parameter allows * (through its regex pattern) a * string of characters that consists of the lowercase letter 'v' followed by one * or two digits, and optionally followed by a period '.' and a string of letters * and digits.

*/ inline GetPolicyVersionRequest& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;} /** *

Identifies the policy version to retrieve.

This parameter allows * (through its regex pattern) a * string of characters that consists of the lowercase letter 'v' followed by one * or two digits, and optionally followed by a period '.' and a string of letters * and digits.

*/ inline GetPolicyVersionRequest& WithVersionId(const char* value) { SetVersionId(value); return *this;} private: Aws::String m_policyArn; bool m_policyArnHasBeenSet = false; Aws::String m_versionId; bool m_versionIdHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws