Struct aws_sdk_lexmodelsv2::operation::update_resource_policy::builders::UpdateResourcePolicyInputBuilder
source · #[non_exhaustive]pub struct UpdateResourcePolicyInputBuilder { /* private fields */ }Expand description
A builder for UpdateResourcePolicyInput.
Implementations§
source§impl UpdateResourcePolicyInputBuilder
impl UpdateResourcePolicyInputBuilder
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 expected_revision_id(self, input: impl Into<String>) -> Self
pub fn expected_revision_id(self, input: impl Into<String>) -> Self
The identifier of the revision of the policy to update. If this revision ID doesn't match the current revision ID, Amazon Lex throws an exception.
If you don't specify a revision, Amazon Lex overwrites the contents of the policy with the new values.
sourcepub fn set_expected_revision_id(self, input: Option<String>) -> Self
pub fn set_expected_revision_id(self, input: Option<String>) -> Self
The identifier of the revision of the policy to update. If this revision ID doesn't match the current revision ID, Amazon Lex throws an exception.
If you don't specify a revision, Amazon Lex overwrites the contents of the policy with the new values.
sourcepub fn get_expected_revision_id(&self) -> &Option<String>
pub fn get_expected_revision_id(&self) -> &Option<String>
The identifier of the revision of the policy to update. If this revision ID doesn't match the current revision ID, Amazon Lex throws an exception.
If you don't specify a revision, Amazon Lex overwrites the contents of the policy with the new values.
sourcepub fn build(self) -> Result<UpdateResourcePolicyInput, BuildError>
pub fn build(self) -> Result<UpdateResourcePolicyInput, BuildError>
Consumes the builder and constructs a UpdateResourcePolicyInput.
source§impl UpdateResourcePolicyInputBuilder
impl UpdateResourcePolicyInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateResourcePolicyOutput, SdkError<UpdateResourcePolicyError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateResourcePolicyOutput, SdkError<UpdateResourcePolicyError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateResourcePolicyInputBuilder
impl Clone for UpdateResourcePolicyInputBuilder
source§fn clone(&self) -> UpdateResourcePolicyInputBuilder
fn clone(&self) -> UpdateResourcePolicyInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateResourcePolicyInputBuilder
impl Default for UpdateResourcePolicyInputBuilder
source§fn default() -> UpdateResourcePolicyInputBuilder
fn default() -> UpdateResourcePolicyInputBuilder
source§impl PartialEq for UpdateResourcePolicyInputBuilder
impl PartialEq for UpdateResourcePolicyInputBuilder
source§fn eq(&self, other: &UpdateResourcePolicyInputBuilder) -> bool
fn eq(&self, other: &UpdateResourcePolicyInputBuilder) -> bool
self and other values to be equal, and is used
by ==.