Struct aws_sdk_lexmodelsv2::operation::create_resource_policy::builders::CreateResourcePolicyInputBuilder
source · #[non_exhaustive]pub struct CreateResourcePolicyInputBuilder { /* private fields */ }Expand description
A builder for CreateResourcePolicyInput.
Implementations§
source§impl CreateResourcePolicyInputBuilder
impl CreateResourcePolicyInputBuilder
sourcepub fn resource_arn(self, input: impl Into<String>) -> Self
pub fn resource_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.
This field is required.sourcepub fn set_resource_arn(self, input: Option<String>) -> Self
pub fn set_resource_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.
sourcepub fn get_resource_arn(&self) -> &Option<String>
pub fn get_resource_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.
sourcepub fn policy(self, input: impl Into<String>) -> Self
pub fn policy(self, input: impl Into<String>) -> Self
A resource policy to add to the resource. The policy is a JSON structure that contains one or more statements that define the policy. The policy must follow the IAM syntax. For more information about the contents of a JSON policy document, see IAM JSON policy reference .
If the policy isn't valid, Amazon Lex returns a validation exception.
This field is required.sourcepub fn set_policy(self, input: Option<String>) -> Self
pub fn set_policy(self, input: Option<String>) -> Self
A resource policy to add to the resource. The policy is a JSON structure that contains one or more statements that define the policy. The policy must follow the IAM syntax. For more information about the contents of a JSON policy document, see IAM JSON policy reference .
If the policy isn't valid, Amazon Lex returns a validation exception.
sourcepub fn get_policy(&self) -> &Option<String>
pub fn get_policy(&self) -> &Option<String>
A resource policy to add to the resource. The policy is a JSON structure that contains one or more statements that define the policy. The policy must follow the IAM syntax. For more information about the contents of a JSON policy document, see IAM JSON policy reference .
If the policy isn't valid, Amazon Lex returns a validation exception.
sourcepub fn build(self) -> Result<CreateResourcePolicyInput, BuildError>
pub fn build(self) -> Result<CreateResourcePolicyInput, BuildError>
Consumes the builder and constructs a CreateResourcePolicyInput.
source§impl CreateResourcePolicyInputBuilder
impl CreateResourcePolicyInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<CreateResourcePolicyOutput, SdkError<CreateResourcePolicyError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<CreateResourcePolicyOutput, SdkError<CreateResourcePolicyError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateResourcePolicyInputBuilder
impl Clone for CreateResourcePolicyInputBuilder
source§fn clone(&self) -> CreateResourcePolicyInputBuilder
fn clone(&self) -> CreateResourcePolicyInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateResourcePolicyInputBuilder
impl Default for CreateResourcePolicyInputBuilder
source§fn default() -> CreateResourcePolicyInputBuilder
fn default() -> CreateResourcePolicyInputBuilder
source§impl PartialEq for CreateResourcePolicyInputBuilder
impl PartialEq for CreateResourcePolicyInputBuilder
source§fn eq(&self, other: &CreateResourcePolicyInputBuilder) -> bool
fn eq(&self, other: &CreateResourcePolicyInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateResourcePolicyInputBuilder
Auto Trait Implementations§
impl Freeze for CreateResourcePolicyInputBuilder
impl RefUnwindSafe for CreateResourcePolicyInputBuilder
impl Send for CreateResourcePolicyInputBuilder
impl Sync for CreateResourcePolicyInputBuilder
impl Unpin for CreateResourcePolicyInputBuilder
impl UnwindSafe for CreateResourcePolicyInputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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