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-appstream/include/aws/appstream/model/UpdateImagePermissionsRequest.h

173 lines
5.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appstream/AppStream_EXPORTS.h>
#include <aws/appstream/AppStreamRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/appstream/model/ImagePermissions.h>
#include <utility>
namespace Aws
{
namespace AppStream
{
namespace Model
{
/**
*/
class AWS_APPSTREAM_API UpdateImagePermissionsRequest : public AppStreamRequest
{
public:
UpdateImagePermissionsRequest();
// 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 "UpdateImagePermissions"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The name of the private image.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the private image.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the private image.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the private image.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the private image.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the private image.</p>
*/
inline UpdateImagePermissionsRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the private image.</p>
*/
inline UpdateImagePermissionsRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the private image.</p>
*/
inline UpdateImagePermissionsRequest& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The 12-digit identifier of the AWS account for which you want add or update
* image permissions.</p>
*/
inline const Aws::String& GetSharedAccountId() const{ return m_sharedAccountId; }
/**
* <p>The 12-digit identifier of the AWS account for which you want add or update
* image permissions.</p>
*/
inline bool SharedAccountIdHasBeenSet() const { return m_sharedAccountIdHasBeenSet; }
/**
* <p>The 12-digit identifier of the AWS account for which you want add or update
* image permissions.</p>
*/
inline void SetSharedAccountId(const Aws::String& value) { m_sharedAccountIdHasBeenSet = true; m_sharedAccountId = value; }
/**
* <p>The 12-digit identifier of the AWS account for which you want add or update
* image permissions.</p>
*/
inline void SetSharedAccountId(Aws::String&& value) { m_sharedAccountIdHasBeenSet = true; m_sharedAccountId = std::move(value); }
/**
* <p>The 12-digit identifier of the AWS account for which you want add or update
* image permissions.</p>
*/
inline void SetSharedAccountId(const char* value) { m_sharedAccountIdHasBeenSet = true; m_sharedAccountId.assign(value); }
/**
* <p>The 12-digit identifier of the AWS account for which you want add or update
* image permissions.</p>
*/
inline UpdateImagePermissionsRequest& WithSharedAccountId(const Aws::String& value) { SetSharedAccountId(value); return *this;}
/**
* <p>The 12-digit identifier of the AWS account for which you want add or update
* image permissions.</p>
*/
inline UpdateImagePermissionsRequest& WithSharedAccountId(Aws::String&& value) { SetSharedAccountId(std::move(value)); return *this;}
/**
* <p>The 12-digit identifier of the AWS account for which you want add or update
* image permissions.</p>
*/
inline UpdateImagePermissionsRequest& WithSharedAccountId(const char* value) { SetSharedAccountId(value); return *this;}
/**
* <p>The permissions for the image.</p>
*/
inline const ImagePermissions& GetImagePermissions() const{ return m_imagePermissions; }
/**
* <p>The permissions for the image.</p>
*/
inline bool ImagePermissionsHasBeenSet() const { return m_imagePermissionsHasBeenSet; }
/**
* <p>The permissions for the image.</p>
*/
inline void SetImagePermissions(const ImagePermissions& value) { m_imagePermissionsHasBeenSet = true; m_imagePermissions = value; }
/**
* <p>The permissions for the image.</p>
*/
inline void SetImagePermissions(ImagePermissions&& value) { m_imagePermissionsHasBeenSet = true; m_imagePermissions = std::move(value); }
/**
* <p>The permissions for the image.</p>
*/
inline UpdateImagePermissionsRequest& WithImagePermissions(const ImagePermissions& value) { SetImagePermissions(value); return *this;}
/**
* <p>The permissions for the image.</p>
*/
inline UpdateImagePermissionsRequest& WithImagePermissions(ImagePermissions&& value) { SetImagePermissions(std::move(value)); return *this;}
private:
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_sharedAccountId;
bool m_sharedAccountIdHasBeenSet;
ImagePermissions m_imagePermissions;
bool m_imagePermissionsHasBeenSet;
};
} // namespace Model
} // namespace AppStream
} // namespace Aws