Struct aws_sdk_xray::types::builders::ResourcePolicyBuilder
source · #[non_exhaustive]pub struct ResourcePolicyBuilder { /* private fields */ }
Expand description
A builder for ResourcePolicy
.
Implementations§
source§impl ResourcePolicyBuilder
impl ResourcePolicyBuilder
sourcepub fn policy_name(self, input: impl Into<String>) -> Self
pub fn policy_name(self, input: impl Into<String>) -> Self
The name of the resource policy. Must be unique within a specific Amazon Web Services account.
sourcepub fn set_policy_name(self, input: Option<String>) -> Self
pub fn set_policy_name(self, input: Option<String>) -> Self
The name of the resource policy. Must be unique within a specific Amazon Web Services account.
sourcepub fn get_policy_name(&self) -> &Option<String>
pub fn get_policy_name(&self) -> &Option<String>
The name of the resource policy. Must be unique within a specific Amazon Web Services account.
sourcepub fn policy_document(self, input: impl Into<String>) -> Self
pub fn policy_document(self, input: impl Into<String>) -> Self
The resource policy document, which can be up to 5kb in size.
sourcepub fn set_policy_document(self, input: Option<String>) -> Self
pub fn set_policy_document(self, input: Option<String>) -> Self
The resource policy document, which can be up to 5kb in size.
sourcepub fn get_policy_document(&self) -> &Option<String>
pub fn get_policy_document(&self) -> &Option<String>
The resource policy document, which can be up to 5kb in size.
sourcepub fn policy_revision_id(self, input: impl Into<String>) -> Self
pub fn policy_revision_id(self, input: impl Into<String>) -> Self
Returns the current policy revision id for this policy name.
sourcepub fn set_policy_revision_id(self, input: Option<String>) -> Self
pub fn set_policy_revision_id(self, input: Option<String>) -> Self
Returns the current policy revision id for this policy name.
sourcepub fn get_policy_revision_id(&self) -> &Option<String>
pub fn get_policy_revision_id(&self) -> &Option<String>
Returns the current policy revision id for this policy name.
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
When the policy was last updated, in Unix time seconds.
sourcepub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
When the policy was last updated, in Unix time seconds.
sourcepub fn get_last_updated_time(&self) -> &Option<DateTime>
pub fn get_last_updated_time(&self) -> &Option<DateTime>
When the policy was last updated, in Unix time seconds.
sourcepub fn build(self) -> ResourcePolicy
pub fn build(self) -> ResourcePolicy
Consumes the builder and constructs a ResourcePolicy
.
Trait Implementations§
source§impl Clone for ResourcePolicyBuilder
impl Clone for ResourcePolicyBuilder
source§fn clone(&self) -> ResourcePolicyBuilder
fn clone(&self) -> ResourcePolicyBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ResourcePolicyBuilder
impl Debug for ResourcePolicyBuilder
source§impl Default for ResourcePolicyBuilder
impl Default for ResourcePolicyBuilder
source§fn default() -> ResourcePolicyBuilder
fn default() -> ResourcePolicyBuilder
source§impl PartialEq for ResourcePolicyBuilder
impl PartialEq for ResourcePolicyBuilder
source§fn eq(&self, other: &ResourcePolicyBuilder) -> bool
fn eq(&self, other: &ResourcePolicyBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResourcePolicyBuilder
Auto Trait Implementations§
impl Freeze for ResourcePolicyBuilder
impl RefUnwindSafe for ResourcePolicyBuilder
impl Send for ResourcePolicyBuilder
impl Sync for ResourcePolicyBuilder
impl Unpin for ResourcePolicyBuilder
impl UnwindSafe for ResourcePolicyBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more