#[non_exhaustive]pub struct PutPolicyInputBuilder { /* private fields */ }Expand description
A builder for PutPolicyInput.
Implementations§
source§impl PutPolicyInputBuilder
impl PutPolicyInputBuilder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the resource for which the policy needs to be updated.
This field is required.sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the resource for which the policy needs to be updated.
sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the resource for which the policy needs to be updated.
sourcepub fn token(self, input: impl Into<String>) -> Self
pub fn token(self, input: impl Into<String>) -> Self
A unique identifier for the current revision of the policy.
sourcepub fn set_token(self, input: Option<String>) -> Self
pub fn set_token(self, input: Option<String>) -> Self
A unique identifier for the current revision of the policy.
sourcepub fn get_token(&self) -> &Option<String>
pub fn get_token(&self) -> &Option<String>
A unique identifier for the current revision of the policy.
sourcepub fn policy(self, input: impl Into<String>) -> Self
pub fn policy(self, input: impl Into<String>) -> Self
The resource-based policy.
If you set the value of the effect parameter in the policy to Deny for the PutPolicy operation, you must also set the value of the effect parameter to Deny for the AddPolicyStatement operation.
sourcepub fn set_policy(self, input: Option<String>) -> Self
pub fn set_policy(self, input: Option<String>) -> Self
The resource-based policy.
If you set the value of the effect parameter in the policy to Deny for the PutPolicy operation, you must also set the value of the effect parameter to Deny for the AddPolicyStatement operation.
sourcepub fn get_policy(&self) -> &Option<String>
pub fn get_policy(&self) -> &Option<String>
The resource-based policy.
If you set the value of the effect parameter in the policy to Deny for the PutPolicy operation, you must also set the value of the effect parameter to Deny for the AddPolicyStatement operation.
sourcepub fn build(self) -> Result<PutPolicyInput, BuildError>
pub fn build(self) -> Result<PutPolicyInput, BuildError>
Consumes the builder and constructs a PutPolicyInput.
source§impl PutPolicyInputBuilder
impl PutPolicyInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<PutPolicyOutput, SdkError<PutPolicyError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<PutPolicyOutput, SdkError<PutPolicyError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutPolicyInputBuilder
impl Clone for PutPolicyInputBuilder
source§fn clone(&self) -> PutPolicyInputBuilder
fn clone(&self) -> PutPolicyInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PutPolicyInputBuilder
impl Debug for PutPolicyInputBuilder
source§impl Default for PutPolicyInputBuilder
impl Default for PutPolicyInputBuilder
source§fn default() -> PutPolicyInputBuilder
fn default() -> PutPolicyInputBuilder
source§impl PartialEq for PutPolicyInputBuilder
impl PartialEq for PutPolicyInputBuilder
impl StructuralPartialEq for PutPolicyInputBuilder
Auto Trait Implementations§
impl Freeze for PutPolicyInputBuilder
impl RefUnwindSafe for PutPolicyInputBuilder
impl Send for PutPolicyInputBuilder
impl Sync for PutPolicyInputBuilder
impl Unpin for PutPolicyInputBuilder
impl UnwindSafe for PutPolicyInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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