Struct aws_sdk_lexmodelsv2::operation::create_resource_policy::builders::CreateResourcePolicyFluentBuilder
source · pub struct CreateResourcePolicyFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateResourcePolicy.
Creates a new resource policy with the specified policy statements.
Implementations§
source§impl CreateResourcePolicyFluentBuilder
impl CreateResourcePolicyFluentBuilder
sourcepub fn as_input(&self) -> &CreateResourcePolicyInputBuilder
pub fn as_input(&self) -> &CreateResourcePolicyInputBuilder
Access the CreateResourcePolicy as a reference.
sourcepub async fn send(
self
) -> Result<CreateResourcePolicyOutput, SdkError<CreateResourcePolicyError, HttpResponse>>
pub async fn send( self ) -> Result<CreateResourcePolicyOutput, SdkError<CreateResourcePolicyError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<CreateResourcePolicyOutput, CreateResourcePolicyError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateResourcePolicyOutput, CreateResourcePolicyError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
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.
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.
Trait Implementations§
source§impl Clone for CreateResourcePolicyFluentBuilder
impl Clone for CreateResourcePolicyFluentBuilder
source§fn clone(&self) -> CreateResourcePolicyFluentBuilder
fn clone(&self) -> CreateResourcePolicyFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more