This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-glacier/include/aws/glacier/model/GetDataRetrievalPolicyRequest.h

127 lines
6.0 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/glacier/Glacier_EXPORTS.h>
#include <aws/glacier/GlacierRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Glacier
{
namespace Model
{
/**
* <p>Input for GetDataRetrievalPolicy.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/glacier-2012-06-01/GetDataRetrievalPolicyInput">AWS
* API Reference</a></p>
*/
class AWS_GLACIER_API GetDataRetrievalPolicyRequest : public GlacierRequest
{
public:
GetDataRetrievalPolicyRequest();
// 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 "GetDataRetrievalPolicy"; }
Aws::String SerializePayload() const override;
/**
* <p>The <code>AccountId</code> value is the AWS account ID. This value must match
* the AWS account ID associated with the credentials used to sign the request. You
* can either specify an AWS account ID or optionally a single '<code>-</code>'
* (hyphen), in which case Amazon Glacier uses the AWS account ID associated with
* the credentials used to sign the request. If you specify your account ID, do not
* include any hyphens ('-') in the ID. </p>
*/
inline const Aws::String& GetAccountId() const{ return m_accountId; }
/**
* <p>The <code>AccountId</code> value is the AWS account ID. This value must match
* the AWS account ID associated with the credentials used to sign the request. You
* can either specify an AWS account ID or optionally a single '<code>-</code>'
* (hyphen), in which case Amazon Glacier uses the AWS account ID associated with
* the credentials used to sign the request. If you specify your account ID, do not
* include any hyphens ('-') in the ID. </p>
*/
inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
/**
* <p>The <code>AccountId</code> value is the AWS account ID. This value must match
* the AWS account ID associated with the credentials used to sign the request. You
* can either specify an AWS account ID or optionally a single '<code>-</code>'
* (hyphen), in which case Amazon Glacier uses the AWS account ID associated with
* the credentials used to sign the request. If you specify your account ID, do not
* include any hyphens ('-') in the ID. </p>
*/
inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
/**
* <p>The <code>AccountId</code> value is the AWS account ID. This value must match
* the AWS account ID associated with the credentials used to sign the request. You
* can either specify an AWS account ID or optionally a single '<code>-</code>'
* (hyphen), in which case Amazon Glacier uses the AWS account ID associated with
* the credentials used to sign the request. If you specify your account ID, do not
* include any hyphens ('-') in the ID. </p>
*/
inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
/**
* <p>The <code>AccountId</code> value is the AWS account ID. This value must match
* the AWS account ID associated with the credentials used to sign the request. You
* can either specify an AWS account ID or optionally a single '<code>-</code>'
* (hyphen), in which case Amazon Glacier uses the AWS account ID associated with
* the credentials used to sign the request. If you specify your account ID, do not
* include any hyphens ('-') in the ID. </p>
*/
inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
/**
* <p>The <code>AccountId</code> value is the AWS account ID. This value must match
* the AWS account ID associated with the credentials used to sign the request. You
* can either specify an AWS account ID or optionally a single '<code>-</code>'
* (hyphen), in which case Amazon Glacier uses the AWS account ID associated with
* the credentials used to sign the request. If you specify your account ID, do not
* include any hyphens ('-') in the ID. </p>
*/
inline GetDataRetrievalPolicyRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
/**
* <p>The <code>AccountId</code> value is the AWS account ID. This value must match
* the AWS account ID associated with the credentials used to sign the request. You
* can either specify an AWS account ID or optionally a single '<code>-</code>'
* (hyphen), in which case Amazon Glacier uses the AWS account ID associated with
* the credentials used to sign the request. If you specify your account ID, do not
* include any hyphens ('-') in the ID. </p>
*/
inline GetDataRetrievalPolicyRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
/**
* <p>The <code>AccountId</code> value is the AWS account ID. This value must match
* the AWS account ID associated with the credentials used to sign the request. You
* can either specify an AWS account ID or optionally a single '<code>-</code>'
* (hyphen), in which case Amazon Glacier uses the AWS account ID associated with
* the credentials used to sign the request. If you specify your account ID, do not
* include any hyphens ('-') in the ID. </p>
*/
inline GetDataRetrievalPolicyRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
private:
Aws::String m_accountId;
bool m_accountIdHasBeenSet;
};
} // namespace Model
} // namespace Glacier
} // namespace Aws