#[non_exhaustive]pub struct PutPermissionInput { /* private fields */ }
Expand description
The structure representing the putPermissionRequest
.
Implementations§
source§impl PutPermissionInput
impl PutPermissionInput
sourcepub fn profiling_group_name(&self) -> Option<&str>
pub fn profiling_group_name(&self) -> Option<&str>
The name of the profiling group to grant access to.
sourcepub fn action_group(&self) -> Option<&ActionGroup>
pub fn action_group(&self) -> Option<&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.
sourcepub fn principals(&self) -> Option<&[String]>
pub fn principals(&self) -> Option<&[String]>
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.
sourcepub fn revision_id(&self) -> Option<&str>
pub fn revision_id(&self) -> Option<&str>
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
.
source§impl PutPermissionInput
impl PutPermissionInput
sourcepub fn builder() -> PutPermissionInputBuilder
pub fn builder() -> PutPermissionInputBuilder
Creates a new builder-style object to manufacture PutPermissionInput
.
source§impl PutPermissionInput
impl PutPermissionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutPermission, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<PutPermission, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<PutPermission
>
Trait Implementations§
source§impl Clone for PutPermissionInput
impl Clone for PutPermissionInput
source§fn clone(&self) -> PutPermissionInput
fn clone(&self) -> PutPermissionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PutPermissionInput
impl Debug for PutPermissionInput
source§impl PartialEq<PutPermissionInput> for PutPermissionInput
impl PartialEq<PutPermissionInput> for PutPermissionInput
source§fn eq(&self, other: &PutPermissionInput) -> bool
fn eq(&self, other: &PutPermissionInput) -> bool
self
and other
values to be equal, and is used
by ==
.