aws_sdk_s3control/client/
create_access_point_for_object_lambda.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`CreateAccessPointForObjectLambda`](crate::operation::create_access_point_for_object_lambda::builders::CreateAccessPointForObjectLambdaFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`account_id(impl Into<String>)`](crate::operation::create_access_point_for_object_lambda::builders::CreateAccessPointForObjectLambdaFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::create_access_point_for_object_lambda::builders::CreateAccessPointForObjectLambdaFluentBuilder::set_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID for owner of the specified Object Lambda Access Point.</p><br>
7    ///   - [`name(impl Into<String>)`](crate::operation::create_access_point_for_object_lambda::builders::CreateAccessPointForObjectLambdaFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_access_point_for_object_lambda::builders::CreateAccessPointForObjectLambdaFluentBuilder::set_name):<br>required: **true**<br><p>The name you want to assign to this Object Lambda Access Point.</p><br>
8    ///   - [`configuration(ObjectLambdaConfiguration)`](crate::operation::create_access_point_for_object_lambda::builders::CreateAccessPointForObjectLambdaFluentBuilder::configuration) / [`set_configuration(Option<ObjectLambdaConfiguration>)`](crate::operation::create_access_point_for_object_lambda::builders::CreateAccessPointForObjectLambdaFluentBuilder::set_configuration):<br>required: **true**<br><p>Object Lambda Access Point configuration as a JSON document.</p><br>
9    /// - On success, responds with [`CreateAccessPointForObjectLambdaOutput`](crate::operation::create_access_point_for_object_lambda::CreateAccessPointForObjectLambdaOutput) with field(s):
10    ///   - [`object_lambda_access_point_arn(Option<String>)`](crate::operation::create_access_point_for_object_lambda::CreateAccessPointForObjectLambdaOutput::object_lambda_access_point_arn): <p>Specifies the ARN for the Object Lambda Access Point.</p>
11    ///   - [`alias(Option<ObjectLambdaAccessPointAlias>)`](crate::operation::create_access_point_for_object_lambda::CreateAccessPointForObjectLambdaOutput::alias): <p>The alias of the Object Lambda Access Point.</p>
12    /// - On failure, responds with [`SdkError<CreateAccessPointForObjectLambdaError>`](crate::operation::create_access_point_for_object_lambda::CreateAccessPointForObjectLambdaError)
13    pub fn create_access_point_for_object_lambda(
14        &self,
15    ) -> crate::operation::create_access_point_for_object_lambda::builders::CreateAccessPointForObjectLambdaFluentBuilder {
16        crate::operation::create_access_point_for_object_lambda::builders::CreateAccessPointForObjectLambdaFluentBuilder::new(self.handle.clone())
17    }
18}