[][src]Struct rusoto_codeguruprofiler::PutPermissionRequest

pub struct PutPermissionRequest {
    pub action_group: String,
    pub principals: Vec<String>,
    pub profiling_group_name: String,
    pub revision_id: Option<String>,
}

The structure representing the putPermissionRequest.

Fields

action_group: String

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.

principals: Vec<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.

profiling_group_name: String

The name of the profiling group to grant access to.

revision_id: Option<String>

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.

Trait Implementations

impl Clone for PutPermissionRequest[src]

impl Debug for PutPermissionRequest[src]

impl Default for PutPermissionRequest[src]

impl PartialEq<PutPermissionRequest> for PutPermissionRequest[src]

impl Serialize for PutPermissionRequest[src]

impl StructuralPartialEq for PutPermissionRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.