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 ==.