AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetTaxRegistrationDocumentRequest.h
1
6#pragma once
7#include <aws/taxsettings/TaxSettings_EXPORTS.h>
8#include <aws/taxsettings/TaxSettingsRequest.h>
9#include <aws/taxsettings/model/DestinationS3Location.h>
10#include <aws/taxsettings/model/TaxDocumentMetadata.h>
11#include <utility>
12
13namespace Aws
14{
15namespace TaxSettings
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_TAXSETTINGS_API GetTaxRegistrationDocumentRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetTaxRegistrationDocument"; }
32
33 AWS_TAXSETTINGS_API Aws::String SerializePayload() const override;
34
35
37
40 inline const DestinationS3Location& GetDestinationS3Location() const { return m_destinationS3Location; }
41 inline bool DestinationS3LocationHasBeenSet() const { return m_destinationS3LocationHasBeenSet; }
42 template<typename DestinationS3LocationT = DestinationS3Location>
43 void SetDestinationS3Location(DestinationS3LocationT&& value) { m_destinationS3LocationHasBeenSet = true; m_destinationS3Location = std::forward<DestinationS3LocationT>(value); }
44 template<typename DestinationS3LocationT = DestinationS3Location>
45 GetTaxRegistrationDocumentRequest& WithDestinationS3Location(DestinationS3LocationT&& value) { SetDestinationS3Location(std::forward<DestinationS3LocationT>(value)); return *this;}
47
49
52 inline const TaxDocumentMetadata& GetTaxDocumentMetadata() const { return m_taxDocumentMetadata; }
53 inline bool TaxDocumentMetadataHasBeenSet() const { return m_taxDocumentMetadataHasBeenSet; }
54 template<typename TaxDocumentMetadataT = TaxDocumentMetadata>
55 void SetTaxDocumentMetadata(TaxDocumentMetadataT&& value) { m_taxDocumentMetadataHasBeenSet = true; m_taxDocumentMetadata = std::forward<TaxDocumentMetadataT>(value); }
56 template<typename TaxDocumentMetadataT = TaxDocumentMetadata>
57 GetTaxRegistrationDocumentRequest& WithTaxDocumentMetadata(TaxDocumentMetadataT&& value) { SetTaxDocumentMetadata(std::forward<TaxDocumentMetadataT>(value)); return *this;}
59 private:
60
61 DestinationS3Location m_destinationS3Location;
62 bool m_destinationS3LocationHasBeenSet = false;
63
64 TaxDocumentMetadata m_taxDocumentMetadata;
65 bool m_taxDocumentMetadataHasBeenSet = false;
66 };
67
68} // namespace Model
69} // namespace TaxSettings
70} // namespace Aws
AWS_TAXSETTINGS_API GetTaxRegistrationDocumentRequest()=default
GetTaxRegistrationDocumentRequest & WithDestinationS3Location(DestinationS3LocationT &&value)
AWS_TAXSETTINGS_API Aws::String SerializePayload() const override
GetTaxRegistrationDocumentRequest & WithTaxDocumentMetadata(TaxDocumentMetadataT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String