Struct aws_sdk_xray::types::ResourcePolicy
source · #[non_exhaustive]pub struct ResourcePolicy {
pub policy_name: Option<String>,
pub policy_document: Option<String>,
pub policy_revision_id: Option<String>,
pub last_updated_time: Option<DateTime>,
}
Expand description
A resource policy grants one or more Amazon Web Services services and accounts permissions to access X-Ray. Each resource policy is associated with a specific Amazon Web Services account.
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.policy_name: Option<String>
The name of the resource policy. Must be unique within a specific Amazon Web Services account.
policy_document: Option<String>
The resource policy document, which can be up to 5kb in size.
policy_revision_id: Option<String>
Returns the current policy revision id for this policy name.
last_updated_time: Option<DateTime>
When the policy was last updated, in Unix time seconds.
Implementations§
source§impl ResourcePolicy
impl ResourcePolicy
sourcepub fn policy_name(&self) -> Option<&str>
pub fn policy_name(&self) -> Option<&str>
The name of the resource policy. Must be unique within a specific Amazon Web Services account.
sourcepub fn policy_document(&self) -> Option<&str>
pub fn policy_document(&self) -> Option<&str>
The resource policy document, which can be up to 5kb in size.
sourcepub fn policy_revision_id(&self) -> Option<&str>
pub fn policy_revision_id(&self) -> Option<&str>
Returns the current policy revision id for this policy name.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
When the policy was last updated, in Unix time seconds.
source§impl ResourcePolicy
impl ResourcePolicy
sourcepub fn builder() -> ResourcePolicyBuilder
pub fn builder() -> ResourcePolicyBuilder
Creates a new builder-style object to manufacture ResourcePolicy
.
Trait Implementations§
source§impl Clone for ResourcePolicy
impl Clone for ResourcePolicy
source§fn clone(&self) -> ResourcePolicy
fn clone(&self) -> ResourcePolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ResourcePolicy
impl Debug for ResourcePolicy
source§impl PartialEq for ResourcePolicy
impl PartialEq for ResourcePolicy
source§fn eq(&self, other: &ResourcePolicy) -> bool
fn eq(&self, other: &ResourcePolicy) -> bool
self
and other
values to be equal, and is used
by ==
.