Struct aws_sdk_s3control::operation::create_access_grants_instance::builders::CreateAccessGrantsInstanceInputBuilder
source · #[non_exhaustive]pub struct CreateAccessGrantsInstanceInputBuilder { /* private fields */ }Expand description
A builder for CreateAccessGrantsInstanceInput.
Implementations§
source§impl CreateAccessGrantsInstanceInputBuilder
impl CreateAccessGrantsInstanceInputBuilder
sourcepub fn account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account that is making this request.
This field is required.sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account that is making this request.
sourcepub fn get_account_id(&self) -> &Option<String>
pub fn get_account_id(&self) -> &Option<String>
The ID of the Amazon Web Services account that is making this request.
sourcepub fn identity_center_arn(self, input: impl Into<String>) -> Self
pub fn identity_center_arn(self, input: impl Into<String>) -> Self
If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API operation to retrieve a list of your Identity Center instances and their ARNs.
sourcepub fn set_identity_center_arn(self, input: Option<String>) -> Self
pub fn set_identity_center_arn(self, input: Option<String>) -> Self
If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API operation to retrieve a list of your Identity Center instances and their ARNs.
sourcepub fn get_identity_center_arn(&self) -> &Option<String>
pub fn get_identity_center_arn(&self) -> &Option<String>
If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API operation to retrieve a list of your Identity Center instances and their ARNs.
Appends an item to tags.
To override the contents of this collection use set_tags.
The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter resources.
The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter resources.
The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter resources.
sourcepub fn build(self) -> Result<CreateAccessGrantsInstanceInput, BuildError>
pub fn build(self) -> Result<CreateAccessGrantsInstanceInput, BuildError>
Consumes the builder and constructs a CreateAccessGrantsInstanceInput.
source§impl CreateAccessGrantsInstanceInputBuilder
impl CreateAccessGrantsInstanceInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateAccessGrantsInstanceOutput, SdkError<CreateAccessGrantsInstanceError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateAccessGrantsInstanceOutput, SdkError<CreateAccessGrantsInstanceError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateAccessGrantsInstanceInputBuilder
impl Clone for CreateAccessGrantsInstanceInputBuilder
source§fn clone(&self) -> CreateAccessGrantsInstanceInputBuilder
fn clone(&self) -> CreateAccessGrantsInstanceInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateAccessGrantsInstanceInputBuilder
impl Default for CreateAccessGrantsInstanceInputBuilder
source§fn default() -> CreateAccessGrantsInstanceInputBuilder
fn default() -> CreateAccessGrantsInstanceInputBuilder
source§impl PartialEq for CreateAccessGrantsInstanceInputBuilder
impl PartialEq for CreateAccessGrantsInstanceInputBuilder
source§fn eq(&self, other: &CreateAccessGrantsInstanceInputBuilder) -> bool
fn eq(&self, other: &CreateAccessGrantsInstanceInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateAccessGrantsInstanceInputBuilder
Auto Trait Implementations§
impl Freeze for CreateAccessGrantsInstanceInputBuilder
impl RefUnwindSafe for CreateAccessGrantsInstanceInputBuilder
impl Send for CreateAccessGrantsInstanceInputBuilder
impl Sync for CreateAccessGrantsInstanceInputBuilder
impl Unpin for CreateAccessGrantsInstanceInputBuilder
impl UnwindSafe for CreateAccessGrantsInstanceInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more