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-greengrass/include/aws/greengrass/model/ResourceDownloadOwnerSetting.h

139 lines
5.1 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/greengrass/Greengrass_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/greengrass/model/Permission.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Greengrass
{
namespace Model
{
/**
* The owner setting for downloaded machine learning resources.<p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ResourceDownloadOwnerSetting">AWS
* API Reference</a></p>
*/
class AWS_GREENGRASS_API ResourceDownloadOwnerSetting
{
public:
ResourceDownloadOwnerSetting();
ResourceDownloadOwnerSetting(Aws::Utils::Json::JsonView jsonValue);
ResourceDownloadOwnerSetting& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* The group owner of the resource. This is the name of an existing Linux OS group
* on the system or a GID. The group's permissions are added to the Lambda process.
*/
inline const Aws::String& GetGroupOwner() const{ return m_groupOwner; }
/**
* The group owner of the resource. This is the name of an existing Linux OS group
* on the system or a GID. The group's permissions are added to the Lambda process.
*/
inline bool GroupOwnerHasBeenSet() const { return m_groupOwnerHasBeenSet; }
/**
* The group owner of the resource. This is the name of an existing Linux OS group
* on the system or a GID. The group's permissions are added to the Lambda process.
*/
inline void SetGroupOwner(const Aws::String& value) { m_groupOwnerHasBeenSet = true; m_groupOwner = value; }
/**
* The group owner of the resource. This is the name of an existing Linux OS group
* on the system or a GID. The group's permissions are added to the Lambda process.
*/
inline void SetGroupOwner(Aws::String&& value) { m_groupOwnerHasBeenSet = true; m_groupOwner = std::move(value); }
/**
* The group owner of the resource. This is the name of an existing Linux OS group
* on the system or a GID. The group's permissions are added to the Lambda process.
*/
inline void SetGroupOwner(const char* value) { m_groupOwnerHasBeenSet = true; m_groupOwner.assign(value); }
/**
* The group owner of the resource. This is the name of an existing Linux OS group
* on the system or a GID. The group's permissions are added to the Lambda process.
*/
inline ResourceDownloadOwnerSetting& WithGroupOwner(const Aws::String& value) { SetGroupOwner(value); return *this;}
/**
* The group owner of the resource. This is the name of an existing Linux OS group
* on the system or a GID. The group's permissions are added to the Lambda process.
*/
inline ResourceDownloadOwnerSetting& WithGroupOwner(Aws::String&& value) { SetGroupOwner(std::move(value)); return *this;}
/**
* The group owner of the resource. This is the name of an existing Linux OS group
* on the system or a GID. The group's permissions are added to the Lambda process.
*/
inline ResourceDownloadOwnerSetting& WithGroupOwner(const char* value) { SetGroupOwner(value); return *this;}
/**
* The permissions that the group owner has to the resource. Valid values are
* ''rw'' (read/write) or ''ro'' (read-only).
*/
inline const Permission& GetGroupPermission() const{ return m_groupPermission; }
/**
* The permissions that the group owner has to the resource. Valid values are
* ''rw'' (read/write) or ''ro'' (read-only).
*/
inline bool GroupPermissionHasBeenSet() const { return m_groupPermissionHasBeenSet; }
/**
* The permissions that the group owner has to the resource. Valid values are
* ''rw'' (read/write) or ''ro'' (read-only).
*/
inline void SetGroupPermission(const Permission& value) { m_groupPermissionHasBeenSet = true; m_groupPermission = value; }
/**
* The permissions that the group owner has to the resource. Valid values are
* ''rw'' (read/write) or ''ro'' (read-only).
*/
inline void SetGroupPermission(Permission&& value) { m_groupPermissionHasBeenSet = true; m_groupPermission = std::move(value); }
/**
* The permissions that the group owner has to the resource. Valid values are
* ''rw'' (read/write) or ''ro'' (read-only).
*/
inline ResourceDownloadOwnerSetting& WithGroupPermission(const Permission& value) { SetGroupPermission(value); return *this;}
/**
* The permissions that the group owner has to the resource. Valid values are
* ''rw'' (read/write) or ''ro'' (read-only).
*/
inline ResourceDownloadOwnerSetting& WithGroupPermission(Permission&& value) { SetGroupPermission(std::move(value)); return *this;}
private:
Aws::String m_groupOwner;
bool m_groupOwnerHasBeenSet;
Permission m_groupPermission;
bool m_groupPermissionHasBeenSet;
};
} // namespace Model
} // namespace Greengrass
} // namespace Aws