Struct aws_sdk_codeguruprofiler::input::PutPermissionInput
source · [−]#[non_exhaustive]pub struct PutPermissionInput {
pub profiling_group_name: Option<String>,
pub action_group: Option<ActionGroup>,
pub principals: Option<Vec<String>>,
pub revision_id: Option<String>,
}
Expand description
The structure representing the putPermissionRequest
.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.profiling_group_name: Option<String>
The name of the profiling group to grant access to.
action_group: 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.
principals: Option<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.
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
.
Implementations
sourceimpl PutPermissionInput
impl PutPermissionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutPermission, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutPermission, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutPermission
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PutPermissionInput
sourceimpl 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
.
Trait Implementations
sourceimpl Clone for PutPermissionInput
impl Clone for PutPermissionInput
sourcefn clone(&self) -> PutPermissionInput
fn clone(&self) -> PutPermissionInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PutPermissionInput
impl Debug for PutPermissionInput
sourceimpl PartialEq<PutPermissionInput> for PutPermissionInput
impl PartialEq<PutPermissionInput> for PutPermissionInput
sourcefn eq(&self, other: &PutPermissionInput) -> bool
fn eq(&self, other: &PutPermissionInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PutPermissionInput) -> bool
fn ne(&self, other: &PutPermissionInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for PutPermissionInput
Auto Trait Implementations
impl RefUnwindSafe for PutPermissionInput
impl Send for PutPermissionInput
impl Sync for PutPermissionInput
impl Unpin for PutPermissionInput
impl UnwindSafe for PutPermissionInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more