Struct aws_sdk_macie::Client
source · pub struct Client { /* private fields */ }Expand description
Client for Amazon Macie
Client for invoking operations on Amazon Macie. Each operation on Amazon Macie is a method on this
this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.
Examples
Constructing a client and invoking an operation
// create a shared configuration. This can be used & shared between multiple service clients.
let shared_config = aws_config::load_from_env().await;
let client = aws_sdk_macie::Client::new(&shared_config);
// invoke an operation
/* let rsp = client
.<operation_name>().
.<param>("some value")
.send().await; */Constructing a client with custom configuration
use aws_config::retry::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_macie::config::Builder::from(&shared_config)
.retry_config(RetryConfig::disabled())
.build();
let client = aws_sdk_macie::Client::from_conf(config);Implementations§
source§impl Client
impl Client
sourcepub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
pub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
Creates a client with the given service configuration.
source§impl Client
impl Client
sourcepub fn associate_member_account(&self) -> AssociateMemberAccount
pub fn associate_member_account(&self) -> AssociateMemberAccount
Constructs a fluent builder for the AssociateMemberAccount operation.
- The fluent builder is configurable:
member_account_id(impl Into<String>)/set_member_account_id(Option<String>):(Discontinued) The ID of the Amazon Web Services account that you want to associate with Amazon Macie Classic as a member account.
- On success, responds with
AssociateMemberAccountOutput - On failure, responds with
SdkError<AssociateMemberAccountError>
sourcepub fn associate_s3_resources(&self) -> AssociateS3Resources
pub fn associate_s3_resources(&self) -> AssociateS3Resources
Constructs a fluent builder for the AssociateS3Resources operation.
- The fluent builder is configurable:
member_account_id(impl Into<String>)/set_member_account_id(Option<String>):(Discontinued) The ID of the Amazon Macie Classic member account whose resources you want to associate with Macie Classic.
s3_resources(Vec<S3ResourceClassification>)/set_s3_resources(Option<Vec<S3ResourceClassification>>):(Discontinued) The S3 resources that you want to associate with Amazon Macie Classic for monitoring and data classification.
- On success, responds with
AssociateS3ResourcesOutputwith field(s):failed_s3_resources(Option<Vec<FailedS3Resource>>):(Discontinued) S3 resources that couldn’t be associated with Amazon Macie Classic. An error code and an error message are provided for each failed item.
- On failure, responds with
SdkError<AssociateS3ResourcesError>
sourcepub fn disassociate_member_account(&self) -> DisassociateMemberAccount
pub fn disassociate_member_account(&self) -> DisassociateMemberAccount
Constructs a fluent builder for the DisassociateMemberAccount operation.
- The fluent builder is configurable:
member_account_id(impl Into<String>)/set_member_account_id(Option<String>):(Discontinued) The ID of the member account that you want to remove from Amazon Macie Classic.
- On success, responds with
DisassociateMemberAccountOutput - On failure, responds with
SdkError<DisassociateMemberAccountError>
sourcepub fn disassociate_s3_resources(&self) -> DisassociateS3Resources
pub fn disassociate_s3_resources(&self) -> DisassociateS3Resources
Constructs a fluent builder for the DisassociateS3Resources operation.
- The fluent builder is configurable:
member_account_id(impl Into<String>)/set_member_account_id(Option<String>):(Discontinued) The ID of the Amazon Macie Classic member account whose resources you want to remove from being monitored by Macie Classic.
associated_s3_resources(Vec<S3Resource>)/set_associated_s3_resources(Option<Vec<S3Resource>>):(Discontinued) The S3 resources (buckets or prefixes) that you want to remove from being monitored and classified by Amazon Macie Classic.
- On success, responds with
DisassociateS3ResourcesOutputwith field(s):failed_s3_resources(Option<Vec<FailedS3Resource>>):(Discontinued) S3 resources that couldn’t be removed from being monitored and classified by Amazon Macie Classic. An error code and an error message are provided for each failed item.
- On failure, responds with
SdkError<DisassociateS3ResourcesError>
sourcepub fn list_member_accounts(&self) -> ListMemberAccounts
pub fn list_member_accounts(&self) -> ListMemberAccounts
Constructs a fluent builder for the ListMemberAccounts operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
next_token(impl Into<String>)/set_next_token(Option<String>):(Discontinued) Use this parameter when paginating results. Set the value of this parameter to null on your first call to the
ListMemberAccountsaction. Subsequent calls to the action fillnextTokenin the request with the value ofnextTokenfrom the previous response to continue listing data.max_results(i32)/set_max_results(Option<i32>):(Discontinued) Use this parameter to indicate the maximum number of items that you want in the response. The default value is 250.
- On success, responds with
ListMemberAccountsOutputwith field(s):member_accounts(Option<Vec<MemberAccount>>):(Discontinued) A list of the Amazon Macie Classic member accounts returned by the action. The current Macie Classic administrator account is also included in this list.
next_token(Option<String>):(Discontinued) When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the
nextTokenparameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null.
- On failure, responds with
SdkError<ListMemberAccountsError>
sourcepub fn list_s3_resources(&self) -> ListS3Resources
pub fn list_s3_resources(&self) -> ListS3Resources
Constructs a fluent builder for the ListS3Resources operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
member_account_id(impl Into<String>)/set_member_account_id(Option<String>):(Discontinued) The Amazon Macie Classic member account ID whose associated S3 resources you want to list.
next_token(impl Into<String>)/set_next_token(Option<String>):(Discontinued) Use this parameter when paginating results. Set its value to null on your first call to the
ListS3Resourcesaction. Subsequent calls to the action fillnextTokenin the request with the value ofnextTokenfrom the previous response to continue listing data.max_results(i32)/set_max_results(Option<i32>):(Discontinued) Use this parameter to indicate the maximum number of items that you want in the response. The default value is 250.
- On success, responds with
ListS3ResourcesOutputwith field(s):s3_resources(Option<Vec<S3ResourceClassification>>):(Discontinued) A list of the associated S3 resources returned by the action.
next_token(Option<String>):(Discontinued) When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the
nextTokenparameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null.
- On failure, responds with
SdkError<ListS3ResourcesError>
sourcepub fn update_s3_resources(&self) -> UpdateS3Resources
pub fn update_s3_resources(&self) -> UpdateS3Resources
Constructs a fluent builder for the UpdateS3Resources operation.
- The fluent builder is configurable:
member_account_id(impl Into<String>)/set_member_account_id(Option<String>):(Discontinued) The Amazon Web Services account ID of the Amazon Macie Classic member account whose S3 resources’ classification types you want to update.
s3_resources_update(Vec<S3ResourceClassificationUpdate>)/set_s3_resources_update(Option<Vec<S3ResourceClassificationUpdate>>):(Discontinued) The S3 resources whose classification types you want to update.
- On success, responds with
UpdateS3ResourcesOutputwith field(s):failed_s3_resources(Option<Vec<FailedS3Resource>>):(Discontinued) The S3 resources whose classification types can’t be updated. An error code and an error message are provided for each failed item.
- On failure, responds with
SdkError<UpdateS3ResourcesError>
source§impl Client
impl Client
sourcepub fn new(sdk_config: &SdkConfig) -> Self
pub fn new(sdk_config: &SdkConfig) -> Self
Creates a new client from an SDK Config.
Panics
- This method will panic if the
sdk_configis missing an async sleep implementation. If you experience this panic, set thesleep_implon the Config passed into this function to fix it. - This method will panic if the
sdk_configis missing an HTTP connector. If you experience this panic, set thehttp_connectoron the Config passed into this function to fix it.
sourcepub fn from_conf(conf: Config) -> Self
pub fn from_conf(conf: Config) -> Self
Creates a new client from the service Config.
Panics
- This method will panic if the
confis missing an async sleep implementation. If you experience this panic, set thesleep_implon the Config passed into this function to fix it. - This method will panic if the
confis missing an HTTP connector. If you experience this panic, set thehttp_connectoron the Config passed into this function to fix it.