/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace CodeGuruProfiler { namespace Model { /** *

The structure representing the * putPermissionRequest.

See Also:

AWS * API Reference

*/ class PutPermissionRequest : public CodeGuruProfilerRequest { public: AWS_CODEGURUPROFILER_API PutPermissionRequest(); // 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 "PutPermission"; } AWS_CODEGURUPROFILER_API Aws::String SerializePayload() const override; /** *

Specifies an action group that contains permissions to add to a profiling * group resource. One action group is supported, agentPermissions, * which grants permission to perform actions required by the profiling agent, * ConfigureAgent and PostAgentProfile permissions.

*/ inline const ActionGroup& GetActionGroup() const{ return m_actionGroup; } /** *

Specifies an action group that contains permissions to add to a profiling * group resource. One action group is supported, agentPermissions, * which grants permission to perform actions required by the profiling agent, * ConfigureAgent and PostAgentProfile permissions.

*/ inline bool ActionGroupHasBeenSet() const { return m_actionGroupHasBeenSet; } /** *

Specifies an action group that contains permissions to add to a profiling * group resource. One action group is supported, agentPermissions, * which grants permission to perform actions required by the profiling agent, * ConfigureAgent and PostAgentProfile permissions.

*/ inline void SetActionGroup(const ActionGroup& value) { m_actionGroupHasBeenSet = true; m_actionGroup = value; } /** *

Specifies an action group that contains permissions to add to a profiling * group resource. One action group is supported, agentPermissions, * which grants permission to perform actions required by the profiling agent, * ConfigureAgent and PostAgentProfile permissions.

*/ inline void SetActionGroup(ActionGroup&& value) { m_actionGroupHasBeenSet = true; m_actionGroup = std::move(value); } /** *

Specifies an action group that contains permissions to add to a profiling * group resource. One action group is supported, agentPermissions, * which grants permission to perform actions required by the profiling agent, * ConfigureAgent and PostAgentProfile permissions.

*/ inline PutPermissionRequest& WithActionGroup(const ActionGroup& value) { SetActionGroup(value); return *this;} /** *

Specifies an action group that contains permissions to add to a profiling * group resource. One action group is supported, agentPermissions, * which grants permission to perform actions required by the profiling agent, * ConfigureAgent and PostAgentProfile permissions.

*/ inline PutPermissionRequest& WithActionGroup(ActionGroup&& value) { SetActionGroup(std::move(value)); return *this;} /** *

A list ARNs for the roles and users you want to grant access to the * profiling group. Wildcards are not are supported in the ARNs.

*/ inline const Aws::Vector& GetPrincipals() const{ return m_principals; } /** *

A list ARNs for the roles and users you want to grant access to the * profiling group. Wildcards are not are supported in the ARNs.

*/ inline bool PrincipalsHasBeenSet() const { return m_principalsHasBeenSet; } /** *

A list ARNs for the roles and users you want to grant access to the * profiling group. Wildcards are not are supported in the ARNs.

*/ inline void SetPrincipals(const Aws::Vector& value) { m_principalsHasBeenSet = true; m_principals = value; } /** *

A list ARNs for the roles and users you want to grant access to the * profiling group. Wildcards are not are supported in the ARNs.

*/ inline void SetPrincipals(Aws::Vector&& value) { m_principalsHasBeenSet = true; m_principals = std::move(value); } /** *

A list ARNs for the roles and users you want to grant access to the * profiling group. Wildcards are not are supported in the ARNs.

*/ inline PutPermissionRequest& WithPrincipals(const Aws::Vector& value) { SetPrincipals(value); return *this;} /** *

A list ARNs for the roles and users you want to grant access to the * profiling group. Wildcards are not are supported in the ARNs.

*/ inline PutPermissionRequest& WithPrincipals(Aws::Vector&& value) { SetPrincipals(std::move(value)); return *this;} /** *

A list ARNs for the roles and users you want to grant access to the * profiling group. Wildcards are not are supported in the ARNs.

*/ inline PutPermissionRequest& AddPrincipals(const Aws::String& value) { m_principalsHasBeenSet = true; m_principals.push_back(value); return *this; } /** *

A list ARNs for the roles and users you want to grant access to the * profiling group. Wildcards are not are supported in the ARNs.

*/ inline PutPermissionRequest& AddPrincipals(Aws::String&& value) { m_principalsHasBeenSet = true; m_principals.push_back(std::move(value)); return *this; } /** *

A list ARNs for the roles and users you want to grant access to the * profiling group. Wildcards are not are supported in the ARNs.

*/ inline PutPermissionRequest& AddPrincipals(const char* value) { m_principalsHasBeenSet = true; m_principals.push_back(value); return *this; } /** *

The name of the profiling group to grant access to.

*/ inline const Aws::String& GetProfilingGroupName() const{ return m_profilingGroupName; } /** *

The name of the profiling group to grant access to.

*/ inline bool ProfilingGroupNameHasBeenSet() const { return m_profilingGroupNameHasBeenSet; } /** *

The name of the profiling group to grant access to.

*/ inline void SetProfilingGroupName(const Aws::String& value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName = value; } /** *

The name of the profiling group to grant access to.

*/ inline void SetProfilingGroupName(Aws::String&& value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName = std::move(value); } /** *

The name of the profiling group to grant access to.

*/ inline void SetProfilingGroupName(const char* value) { m_profilingGroupNameHasBeenSet = true; m_profilingGroupName.assign(value); } /** *

The name of the profiling group to grant access to.

*/ inline PutPermissionRequest& WithProfilingGroupName(const Aws::String& value) { SetProfilingGroupName(value); return *this;} /** *

The name of the profiling group to grant access to.

*/ inline PutPermissionRequest& WithProfilingGroupName(Aws::String&& value) { SetProfilingGroupName(std::move(value)); return *this;} /** *

The name of the profiling group to grant access to.

*/ inline PutPermissionRequest& WithProfilingGroupName(const char* value) { SetProfilingGroupName(value); return *this;} /** *

A universally unique identifier (UUID) for the revision of the policy you * are adding to the profiling group. Do not specify this when you add permissions * to a profiling group for the first time. If a policy already exists on the * profiling group, you must specify the revisionId.

*/ inline const Aws::String& GetRevisionId() const{ return m_revisionId; } /** *

A universally unique identifier (UUID) for the revision of the policy you * are adding to the profiling group. Do not specify this when you add permissions * to a profiling group for the first time. If a policy already exists on the * profiling group, you must specify the revisionId.

*/ inline bool RevisionIdHasBeenSet() const { return m_revisionIdHasBeenSet; } /** *

A universally unique identifier (UUID) for the revision of the policy you * are adding to the profiling group. Do not specify this when you add permissions * to a profiling group for the first time. If a policy already exists on the * profiling group, you must specify the revisionId.

*/ inline void SetRevisionId(const Aws::String& value) { m_revisionIdHasBeenSet = true; m_revisionId = value; } /** *

A universally unique identifier (UUID) for the revision of the policy you * are adding to the profiling group. Do not specify this when you add permissions * to a profiling group for the first time. If a policy already exists on the * profiling group, you must specify the revisionId.

*/ inline void SetRevisionId(Aws::String&& value) { m_revisionIdHasBeenSet = true; m_revisionId = std::move(value); } /** *

A universally unique identifier (UUID) for the revision of the policy you * are adding to the profiling group. Do not specify this when you add permissions * to a profiling group for the first time. If a policy already exists on the * profiling group, you must specify the revisionId.

*/ inline void SetRevisionId(const char* value) { m_revisionIdHasBeenSet = true; m_revisionId.assign(value); } /** *

A universally unique identifier (UUID) for the revision of the policy you * are adding to the profiling group. Do not specify this when you add permissions * to a profiling group for the first time. If a policy already exists on the * profiling group, you must specify the revisionId.

*/ inline PutPermissionRequest& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;} /** *

A universally unique identifier (UUID) for the revision of the policy you * are adding to the profiling group. Do not specify this when you add permissions * to a profiling group for the first time. If a policy already exists on the * profiling group, you must specify the revisionId.

*/ inline PutPermissionRequest& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;} /** *

A universally unique identifier (UUID) for the revision of the policy you * are adding to the profiling group. Do not specify this when you add permissions * to a profiling group for the first time. If a policy already exists on the * profiling group, you must specify the revisionId.

*/ inline PutPermissionRequest& WithRevisionId(const char* value) { SetRevisionId(value); return *this;} private: ActionGroup m_actionGroup; bool m_actionGroupHasBeenSet = false; Aws::Vector m_principals; bool m_principalsHasBeenSet = false; Aws::String m_profilingGroupName; bool m_profilingGroupNameHasBeenSet = false; Aws::String m_revisionId; bool m_revisionIdHasBeenSet = false; }; } // namespace Model } // namespace CodeGuruProfiler } // namespace Aws