aws_sdk_s3control/client/
get_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 [`GetAccessPointForObjectLambda`](crate::operation::get_access_point_for_object_lambda::builders::GetAccessPointForObjectLambdaFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`account_id(impl Into<String>)`](crate::operation::get_access_point_for_object_lambda::builders::GetAccessPointForObjectLambdaFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::get_access_point_for_object_lambda::builders::GetAccessPointForObjectLambdaFluentBuilder::set_account_id):<br>required: **true**<br><p>The account ID for the account that owns the specified Object Lambda Access Point.</p><br>
7    ///   - [`name(impl Into<String>)`](crate::operation::get_access_point_for_object_lambda::builders::GetAccessPointForObjectLambdaFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_access_point_for_object_lambda::builders::GetAccessPointForObjectLambdaFluentBuilder::set_name):<br>required: **true**<br><p>The name of the Object Lambda Access Point.</p><br>
8    /// - On success, responds with [`GetAccessPointForObjectLambdaOutput`](crate::operation::get_access_point_for_object_lambda::GetAccessPointForObjectLambdaOutput) with field(s):
9    ///   - [`name(Option<String>)`](crate::operation::get_access_point_for_object_lambda::GetAccessPointForObjectLambdaOutput::name): <p>The name of the Object Lambda Access Point.</p>
10    ///   - [`public_access_block_configuration(Option<PublicAccessBlockConfiguration>)`](crate::operation::get_access_point_for_object_lambda::GetAccessPointForObjectLambdaOutput::public_access_block_configuration): <p>Configuration to block all public access. This setting is turned on and can not be edited.</p>
11    ///   - [`creation_date(Option<DateTime>)`](crate::operation::get_access_point_for_object_lambda::GetAccessPointForObjectLambdaOutput::creation_date): <p>The date and time when the specified Object Lambda Access Point was created.</p>
12    ///   - [`alias(Option<ObjectLambdaAccessPointAlias>)`](crate::operation::get_access_point_for_object_lambda::GetAccessPointForObjectLambdaOutput::alias): <p>The alias of the Object Lambda Access Point.</p>
13    /// - On failure, responds with [`SdkError<GetAccessPointForObjectLambdaError>`](crate::operation::get_access_point_for_object_lambda::GetAccessPointForObjectLambdaError)
14    pub fn get_access_point_for_object_lambda(
15        &self,
16    ) -> crate::operation::get_access_point_for_object_lambda::builders::GetAccessPointForObjectLambdaFluentBuilder {
17        crate::operation::get_access_point_for_object_lambda::builders::GetAccessPointForObjectLambdaFluentBuilder::new(self.handle.clone())
18    }
19}