Macie2Client#
Auto-generated documentation for Macie2 type annotations stubs module types-boto3-macie2.
Macie2Client#
Type annotations and code completion for boto3.client("macie2").
 boto3 documentation
# Macie2Client usage example
from boto3.session import Session
from types_boto3_macie2.client import Macie2Client
def get_macie2_client() -> Macie2Client:
    return Session().client("macie2")Exceptions#
boto3 client exceptions are generated in runtime.
This class provides code completion for boto3.client("macie2").exceptions structure.
# Exceptions.exceptions usage example
client = boto3.client("macie2")
try:
    do_something(client)
except (
    client.exceptions.AccessDeniedException,
    client.exceptions.ClientError,
    client.exceptions.ConflictException,
    client.exceptions.InternalServerException,
    client.exceptions.ResourceNotFoundException,
    client.exceptions.ServiceQuotaExceededException,
    client.exceptions.ThrottlingException,
    client.exceptions.UnprocessableEntityException,
    client.exceptions.ValidationException,
) as e:
    print(e)# Exceptions.exceptions type checking example
from types_boto3_macie2.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...Methods#
can_paginate#
Type annotations and code completion for boto3.client("macie2").can_paginate method.
 boto3 documentation
# can_paginate method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...generate_presigned_url#
Type annotations and code completion for boto3.client("macie2").generate_presigned_url method.
 boto3 documentation
# generate_presigned_url method definition
def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...accept_invitation#
Accepts an Amazon Macie membership invitation that was received from a specific account.
Type annotations and code completion for boto3.client("macie2").accept_invitation method.
 boto3 documentation
# accept_invitation method definition
def accept_invitation(
    self,
    *,
    invitationId: str,
    administratorAccountId: str = ...,
    masterAccount: str = ...,
) -> Dict[str, Any]:
    ...# accept_invitation method usage example with argument unpacking
kwargs: AcceptInvitationRequestTypeDef = {  # (1)
    "invitationId": ...,
}
parent.accept_invitation(**kwargs)batch_get_custom_data_identifiers#
Retrieves information about one or more custom data identifiers.
Type annotations and code completion for boto3.client("macie2").batch_get_custom_data_identifiers method.
 boto3 documentation
# batch_get_custom_data_identifiers method definition
def batch_get_custom_data_identifiers(
    self,
    *,
    ids: Sequence[str] = ...,
) -> BatchGetCustomDataIdentifiersResponseTypeDef:  # (1)
    ...# batch_get_custom_data_identifiers method usage example with argument unpacking
kwargs: BatchGetCustomDataIdentifiersRequestTypeDef = {  # (1)
    "ids": ...,
}
parent.batch_get_custom_data_identifiers(**kwargs)batch_update_automated_discovery_accounts#
Changes the status of automated sensitive data discovery for one or more accounts.
Type annotations and code completion for boto3.client("macie2").batch_update_automated_discovery_accounts method.
 boto3 documentation
# batch_update_automated_discovery_accounts method definition
def batch_update_automated_discovery_accounts(
    self,
    *,
    accounts: Sequence[AutomatedDiscoveryAccountUpdateTypeDef] = ...,  # (1)
) -> BatchUpdateAutomatedDiscoveryAccountsResponseTypeDef:  # (2)
    ...- See Sequence[AutomatedDiscoveryAccountUpdateTypeDef]
- See BatchUpdateAutomatedDiscoveryAccountsResponseTypeDef
# batch_update_automated_discovery_accounts method usage example with argument unpacking
kwargs: BatchUpdateAutomatedDiscoveryAccountsRequestTypeDef = {  # (1)
    "accounts": ...,
}
parent.batch_update_automated_discovery_accounts(**kwargs)create_allow_list#
Creates and defines the settings for an allow list.
Type annotations and code completion for boto3.client("macie2").create_allow_list method.
 boto3 documentation
# create_allow_list method definition
def create_allow_list(
    self,
    *,
    clientToken: str,
    criteria: AllowListCriteriaTypeDef,  # (1)
    name: str,
    description: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateAllowListResponseTypeDef:  # (2)
    ...# create_allow_list method usage example with argument unpacking
kwargs: CreateAllowListRequestTypeDef = {  # (1)
    "clientToken": ...,
    "criteria": ...,
    "name": ...,
}
parent.create_allow_list(**kwargs)create_classification_job#
Creates and defines the settings for a classification job.
Type annotations and code completion for boto3.client("macie2").create_classification_job method.
 boto3 documentation
# create_classification_job method definition
def create_classification_job(
    self,
    *,
    clientToken: str,
    jobType: JobTypeType,  # (1)
    name: str,
    s3JobDefinition: S3JobDefinitionUnionTypeDef,  # (2)
    allowListIds: Sequence[str] = ...,
    customDataIdentifierIds: Sequence[str] = ...,
    description: str = ...,
    initialRun: bool = ...,
    managedDataIdentifierIds: Sequence[str] = ...,
    managedDataIdentifierSelector: ManagedDataIdentifierSelectorType = ...,  # (3)
    samplingPercentage: int = ...,
    scheduleFrequency: JobScheduleFrequencyUnionTypeDef = ...,  # (4)
    tags: Mapping[str, str] = ...,
) -> CreateClassificationJobResponseTypeDef:  # (5)
    ...- See JobTypeType
- See S3JobDefinitionUnionTypeDef
- See ManagedDataIdentifierSelectorType
- See JobScheduleFrequencyUnionTypeDef
- See CreateClassificationJobResponseTypeDef
# create_classification_job method usage example with argument unpacking
kwargs: CreateClassificationJobRequestTypeDef = {  # (1)
    "clientToken": ...,
    "jobType": ...,
    "name": ...,
    "s3JobDefinition": ...,
}
parent.create_classification_job(**kwargs)create_custom_data_identifier#
Creates and defines the criteria and other settings for a custom data identifier.
Type annotations and code completion for boto3.client("macie2").create_custom_data_identifier method.
 boto3 documentation
# create_custom_data_identifier method definition
def create_custom_data_identifier(
    self,
    *,
    name: str,
    regex: str,
    clientToken: str = ...,
    description: str = ...,
    ignoreWords: Sequence[str] = ...,
    keywords: Sequence[str] = ...,
    maximumMatchDistance: int = ...,
    severityLevels: Sequence[SeverityLevelTypeDef] = ...,  # (1)
    tags: Mapping[str, str] = ...,
) -> CreateCustomDataIdentifierResponseTypeDef:  # (2)
    ...- See Sequence[SeverityLevelTypeDef]
- See CreateCustomDataIdentifierResponseTypeDef
# create_custom_data_identifier method usage example with argument unpacking
kwargs: CreateCustomDataIdentifierRequestTypeDef = {  # (1)
    "name": ...,
    "regex": ...,
}
parent.create_custom_data_identifier(**kwargs)create_findings_filter#
Creates and defines the criteria and other settings for a findings filter.
Type annotations and code completion for boto3.client("macie2").create_findings_filter method.
 boto3 documentation
# create_findings_filter method definition
def create_findings_filter(
    self,
    *,
    action: FindingsFilterActionType,  # (1)
    findingCriteria: FindingCriteriaUnionTypeDef,  # (2)
    name: str,
    clientToken: str = ...,
    description: str = ...,
    position: int = ...,
    tags: Mapping[str, str] = ...,
) -> CreateFindingsFilterResponseTypeDef:  # (3)
    ...- See FindingsFilterActionType
- See FindingCriteriaUnionTypeDef
- See CreateFindingsFilterResponseTypeDef
# create_findings_filter method usage example with argument unpacking
kwargs: CreateFindingsFilterRequestTypeDef = {  # (1)
    "action": ...,
    "findingCriteria": ...,
    "name": ...,
}
parent.create_findings_filter(**kwargs)create_invitations#
Sends an Amazon Macie membership invitation to one or more accounts.
Type annotations and code completion for boto3.client("macie2").create_invitations method.
 boto3 documentation
# create_invitations method definition
def create_invitations(
    self,
    *,
    accountIds: Sequence[str],
    disableEmailNotification: bool = ...,
    message: str = ...,
) -> CreateInvitationsResponseTypeDef:  # (1)
    ...# create_invitations method usage example with argument unpacking
kwargs: CreateInvitationsRequestTypeDef = {  # (1)
    "accountIds": ...,
}
parent.create_invitations(**kwargs)create_member#
Associates an account with an Amazon Macie administrator account.
Type annotations and code completion for boto3.client("macie2").create_member method.
 boto3 documentation
# create_member method definition
def create_member(
    self,
    *,
    account: AccountDetailTypeDef,  # (1)
    tags: Mapping[str, str] = ...,
) -> CreateMemberResponseTypeDef:  # (2)
    ...# create_member method usage example with argument unpacking
kwargs: CreateMemberRequestTypeDef = {  # (1)
    "account": ...,
}
parent.create_member(**kwargs)create_sample_findings#
Creates sample findings.
Type annotations and code completion for boto3.client("macie2").create_sample_findings method.
 boto3 documentation
# create_sample_findings method definition
def create_sample_findings(
    self,
    *,
    findingTypes: Sequence[FindingTypeType] = ...,  # (1)
) -> Dict[str, Any]:
    ...- See Sequence[FindingTypeType]
# create_sample_findings method usage example with argument unpacking
kwargs: CreateSampleFindingsRequestTypeDef = {  # (1)
    "findingTypes": ...,
}
parent.create_sample_findings(**kwargs)decline_invitations#
Declines Amazon Macie membership invitations that were received from specific accounts.
Type annotations and code completion for boto3.client("macie2").decline_invitations method.
 boto3 documentation
# decline_invitations method definition
def decline_invitations(
    self,
    *,
    accountIds: Sequence[str],
) -> DeclineInvitationsResponseTypeDef:  # (1)
    ...# decline_invitations method usage example with argument unpacking
kwargs: DeclineInvitationsRequestTypeDef = {  # (1)
    "accountIds": ...,
}
parent.decline_invitations(**kwargs)delete_allow_list#
Deletes an allow list.
Type annotations and code completion for boto3.client("macie2").delete_allow_list method.
 boto3 documentation
# delete_allow_list method definition
def delete_allow_list(
    self,
    *,
    id: str,
    ignoreJobChecks: str = ...,
) -> Dict[str, Any]:
    ...# delete_allow_list method usage example with argument unpacking
kwargs: DeleteAllowListRequestTypeDef = {  # (1)
    "id": ...,
}
parent.delete_allow_list(**kwargs)delete_custom_data_identifier#
Soft deletes a custom data identifier.
Type annotations and code completion for boto3.client("macie2").delete_custom_data_identifier method.
 boto3 documentation
# delete_custom_data_identifier method definition
def delete_custom_data_identifier(
    self,
    *,
    id: str,
) -> Dict[str, Any]:
    ...# delete_custom_data_identifier method usage example with argument unpacking
kwargs: DeleteCustomDataIdentifierRequestTypeDef = {  # (1)
    "id": ...,
}
parent.delete_custom_data_identifier(**kwargs)delete_findings_filter#
Deletes a findings filter.
Type annotations and code completion for boto3.client("macie2").delete_findings_filter method.
 boto3 documentation
# delete_findings_filter method definition
def delete_findings_filter(
    self,
    *,
    id: str,
) -> Dict[str, Any]:
    ...# delete_findings_filter method usage example with argument unpacking
kwargs: DeleteFindingsFilterRequestTypeDef = {  # (1)
    "id": ...,
}
parent.delete_findings_filter(**kwargs)delete_invitations#
Deletes Amazon Macie membership invitations that were received from specific accounts.
Type annotations and code completion for boto3.client("macie2").delete_invitations method.
 boto3 documentation
# delete_invitations method definition
def delete_invitations(
    self,
    *,
    accountIds: Sequence[str],
) -> DeleteInvitationsResponseTypeDef:  # (1)
    ...# delete_invitations method usage example with argument unpacking
kwargs: DeleteInvitationsRequestTypeDef = {  # (1)
    "accountIds": ...,
}
parent.delete_invitations(**kwargs)delete_member#
Deletes the association between an Amazon Macie administrator account and an account.
Type annotations and code completion for boto3.client("macie2").delete_member method.
 boto3 documentation
# delete_member method definition
def delete_member(
    self,
    *,
    id: str,
) -> Dict[str, Any]:
    ...# delete_member method usage example with argument unpacking
kwargs: DeleteMemberRequestTypeDef = {  # (1)
    "id": ...,
}
parent.delete_member(**kwargs)describe_buckets#
Retrieves (queries) statistical data and other information about one or more S3 buckets that Amazon Macie monitors and analyzes for an account.
Type annotations and code completion for boto3.client("macie2").describe_buckets method.
 boto3 documentation
# describe_buckets method definition
def describe_buckets(
    self,
    *,
    criteria: Mapping[str, BucketCriteriaAdditionalPropertiesTypeDef] = ...,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
    sortCriteria: BucketSortCriteriaTypeDef = ...,  # (2)
) -> DescribeBucketsResponseTypeDef:  # (3)
    ...- See Mapping[str, BucketCriteriaAdditionalPropertiesTypeDef]
- See BucketSortCriteriaTypeDef
- See DescribeBucketsResponseTypeDef
# describe_buckets method usage example with argument unpacking
kwargs: DescribeBucketsRequestTypeDef = {  # (1)
    "criteria": ...,
}
parent.describe_buckets(**kwargs)describe_classification_job#
Retrieves the status and settings for a classification job.
Type annotations and code completion for boto3.client("macie2").describe_classification_job method.
 boto3 documentation
# describe_classification_job method definition
def describe_classification_job(
    self,
    *,
    jobId: str,
) -> DescribeClassificationJobResponseTypeDef:  # (1)
    ...# describe_classification_job method usage example with argument unpacking
kwargs: DescribeClassificationJobRequestTypeDef = {  # (1)
    "jobId": ...,
}
parent.describe_classification_job(**kwargs)describe_organization_configuration#
Retrieves the Amazon Macie configuration settings for an organization in Organizations.
Type annotations and code completion for boto3.client("macie2").describe_organization_configuration method.
 boto3 documentation
# describe_organization_configuration method definition
def describe_organization_configuration(
    self,
) -> DescribeOrganizationConfigurationResponseTypeDef:  # (1)
    ...disable_macie#
Disables Amazon Macie and deletes all settings and resources for a Macie account.
Type annotations and code completion for boto3.client("macie2").disable_macie method.
 boto3 documentation
# disable_macie method definition
def disable_macie(
    self,
) -> Dict[str, Any]:
    ...disable_organization_admin_account#
Disables an account as the delegated Amazon Macie administrator account for an organization in Organizations.
Type annotations and code completion for boto3.client("macie2").disable_organization_admin_account method.
 boto3 documentation
# disable_organization_admin_account method definition
def disable_organization_admin_account(
    self,
    *,
    adminAccountId: str,
) -> Dict[str, Any]:
    ...# disable_organization_admin_account method usage example with argument unpacking
kwargs: DisableOrganizationAdminAccountRequestTypeDef = {  # (1)
    "adminAccountId": ...,
}
parent.disable_organization_admin_account(**kwargs)disassociate_from_administrator_account#
Disassociates a member account from its Amazon Macie administrator account.
Type annotations and code completion for boto3.client("macie2").disassociate_from_administrator_account method.
 boto3 documentation
# disassociate_from_administrator_account method definition
def disassociate_from_administrator_account(
    self,
) -> Dict[str, Any]:
    ...disassociate_from_master_account#
(Deprecated) Disassociates a member account from its Amazon Macie administrator account.
Type annotations and code completion for boto3.client("macie2").disassociate_from_master_account method.
 boto3 documentation
# disassociate_from_master_account method definition
def disassociate_from_master_account(
    self,
) -> Dict[str, Any]:
    ...disassociate_member#
Disassociates an Amazon Macie administrator account from a member account.
Type annotations and code completion for boto3.client("macie2").disassociate_member method.
 boto3 documentation
# disassociate_member method definition
def disassociate_member(
    self,
    *,
    id: str,
) -> Dict[str, Any]:
    ...# disassociate_member method usage example with argument unpacking
kwargs: DisassociateMemberRequestTypeDef = {  # (1)
    "id": ...,
}
parent.disassociate_member(**kwargs)enable_macie#
Enables Amazon Macie and specifies the configuration settings for a Macie account.
Type annotations and code completion for boto3.client("macie2").enable_macie method.
 boto3 documentation
# enable_macie method definition
def enable_macie(
    self,
    *,
    clientToken: str = ...,
    findingPublishingFrequency: FindingPublishingFrequencyType = ...,  # (1)
    status: MacieStatusType = ...,  # (2)
) -> Dict[str, Any]:
    ...# enable_macie method usage example with argument unpacking
kwargs: EnableMacieRequestTypeDef = {  # (1)
    "clientToken": ...,
}
parent.enable_macie(**kwargs)enable_organization_admin_account#
Designates an account as the delegated Amazon Macie administrator account for an organization in Organizations.
Type annotations and code completion for boto3.client("macie2").enable_organization_admin_account method.
 boto3 documentation
# enable_organization_admin_account method definition
def enable_organization_admin_account(
    self,
    *,
    adminAccountId: str,
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...# enable_organization_admin_account method usage example with argument unpacking
kwargs: EnableOrganizationAdminAccountRequestTypeDef = {  # (1)
    "adminAccountId": ...,
}
parent.enable_organization_admin_account(**kwargs)get_administrator_account#
Retrieves information about the Amazon Macie administrator account for an account.
Type annotations and code completion for boto3.client("macie2").get_administrator_account method.
 boto3 documentation
# get_administrator_account method definition
def get_administrator_account(
    self,
) -> GetAdministratorAccountResponseTypeDef:  # (1)
    ...get_allow_list#
Retrieves the settings and status of an allow list.
Type annotations and code completion for boto3.client("macie2").get_allow_list method.
 boto3 documentation
# get_allow_list method definition
def get_allow_list(
    self,
    *,
    id: str,
) -> GetAllowListResponseTypeDef:  # (1)
    ...# get_allow_list method usage example with argument unpacking
kwargs: GetAllowListRequestTypeDef = {  # (1)
    "id": ...,
}
parent.get_allow_list(**kwargs)get_automated_discovery_configuration#
Retrieves the configuration settings and status of automated sensitive data discovery for an organization or standalone account.
Type annotations and code completion for boto3.client("macie2").get_automated_discovery_configuration method.
 boto3 documentation
# get_automated_discovery_configuration method definition
def get_automated_discovery_configuration(
    self,
) -> GetAutomatedDiscoveryConfigurationResponseTypeDef:  # (1)
    ...get_bucket_statistics#
Retrieves (queries) aggregated statistical data about all the S3 buckets that Amazon Macie monitors and analyzes for an account.
Type annotations and code completion for boto3.client("macie2").get_bucket_statistics method.
 boto3 documentation
# get_bucket_statistics method definition
def get_bucket_statistics(
    self,
    *,
    accountId: str = ...,
) -> GetBucketStatisticsResponseTypeDef:  # (1)
    ...# get_bucket_statistics method usage example with argument unpacking
kwargs: GetBucketStatisticsRequestTypeDef = {  # (1)
    "accountId": ...,
}
parent.get_bucket_statistics(**kwargs)get_classification_export_configuration#
Retrieves the configuration settings for storing data classification results.
Type annotations and code completion for boto3.client("macie2").get_classification_export_configuration method.
 boto3 documentation
# get_classification_export_configuration method definition
def get_classification_export_configuration(
    self,
) -> GetClassificationExportConfigurationResponseTypeDef:  # (1)
    ...get_classification_scope#
Retrieves the classification scope settings for an account.
Type annotations and code completion for boto3.client("macie2").get_classification_scope method.
 boto3 documentation
# get_classification_scope method definition
def get_classification_scope(
    self,
    *,
    id: str,
) -> GetClassificationScopeResponseTypeDef:  # (1)
    ...# get_classification_scope method usage example with argument unpacking
kwargs: GetClassificationScopeRequestTypeDef = {  # (1)
    "id": ...,
}
parent.get_classification_scope(**kwargs)get_custom_data_identifier#
Retrieves the criteria and other settings for a custom data identifier.
Type annotations and code completion for boto3.client("macie2").get_custom_data_identifier method.
 boto3 documentation
# get_custom_data_identifier method definition
def get_custom_data_identifier(
    self,
    *,
    id: str,
) -> GetCustomDataIdentifierResponseTypeDef:  # (1)
    ...# get_custom_data_identifier method usage example with argument unpacking
kwargs: GetCustomDataIdentifierRequestTypeDef = {  # (1)
    "id": ...,
}
parent.get_custom_data_identifier(**kwargs)get_finding_statistics#
Retrieves (queries) aggregated statistical data about findings.
Type annotations and code completion for boto3.client("macie2").get_finding_statistics method.
 boto3 documentation
# get_finding_statistics method definition
def get_finding_statistics(
    self,
    *,
    groupBy: GroupByType,  # (1)
    findingCriteria: FindingCriteriaUnionTypeDef = ...,  # (2)
    size: int = ...,
    sortCriteria: FindingStatisticsSortCriteriaTypeDef = ...,  # (3)
) -> GetFindingStatisticsResponseTypeDef:  # (4)
    ...- See GroupByType
- See FindingCriteriaUnionTypeDef
- See FindingStatisticsSortCriteriaTypeDef
- See GetFindingStatisticsResponseTypeDef
# get_finding_statistics method usage example with argument unpacking
kwargs: GetFindingStatisticsRequestTypeDef = {  # (1)
    "groupBy": ...,
}
parent.get_finding_statistics(**kwargs)get_findings#
Retrieves the details of one or more findings.
Type annotations and code completion for boto3.client("macie2").get_findings method.
 boto3 documentation
# get_findings method definition
def get_findings(
    self,
    *,
    findingIds: Sequence[str],
    sortCriteria: SortCriteriaTypeDef = ...,  # (1)
) -> GetFindingsResponseTypeDef:  # (2)
    ...# get_findings method usage example with argument unpacking
kwargs: GetFindingsRequestTypeDef = {  # (1)
    "findingIds": ...,
}
parent.get_findings(**kwargs)get_findings_filter#
Retrieves the criteria and other settings for a findings filter.
Type annotations and code completion for boto3.client("macie2").get_findings_filter method.
 boto3 documentation
# get_findings_filter method definition
def get_findings_filter(
    self,
    *,
    id: str,
) -> GetFindingsFilterResponseTypeDef:  # (1)
    ...# get_findings_filter method usage example with argument unpacking
kwargs: GetFindingsFilterRequestTypeDef = {  # (1)
    "id": ...,
}
parent.get_findings_filter(**kwargs)get_findings_publication_configuration#
Retrieves the configuration settings for publishing findings to Security Hub.
Type annotations and code completion for boto3.client("macie2").get_findings_publication_configuration method.
 boto3 documentation
# get_findings_publication_configuration method definition
def get_findings_publication_configuration(
    self,
) -> GetFindingsPublicationConfigurationResponseTypeDef:  # (1)
    ...get_invitations_count#
Retrieves the count of Amazon Macie membership invitations that were received by an account.
Type annotations and code completion for boto3.client("macie2").get_invitations_count method.
 boto3 documentation
# get_invitations_count method definition
def get_invitations_count(
    self,
) -> GetInvitationsCountResponseTypeDef:  # (1)
    ...get_macie_session#
Retrieves the status and configuration settings for an Amazon Macie account.
Type annotations and code completion for boto3.client("macie2").get_macie_session method.
 boto3 documentation
# get_macie_session method definition
def get_macie_session(
    self,
) -> GetMacieSessionResponseTypeDef:  # (1)
    ...get_master_account#
(Deprecated) Retrieves information about the Amazon Macie administrator account for an account.
Type annotations and code completion for boto3.client("macie2").get_master_account method.
 boto3 documentation
# get_master_account method definition
def get_master_account(
    self,
) -> GetMasterAccountResponseTypeDef:  # (1)
    ...get_member#
Retrieves information about an account that's associated with an Amazon Macie administrator account.
Type annotations and code completion for boto3.client("macie2").get_member method.
 boto3 documentation
# get_member method definition
def get_member(
    self,
    *,
    id: str,
) -> GetMemberResponseTypeDef:  # (1)
    ...# get_member method usage example with argument unpacking
kwargs: GetMemberRequestTypeDef = {  # (1)
    "id": ...,
}
parent.get_member(**kwargs)get_resource_profile#
Retrieves (queries) sensitive data discovery statistics and the sensitivity score for an S3 bucket.
Type annotations and code completion for boto3.client("macie2").get_resource_profile method.
 boto3 documentation
# get_resource_profile method definition
def get_resource_profile(
    self,
    *,
    resourceArn: str,
) -> GetResourceProfileResponseTypeDef:  # (1)
    ...# get_resource_profile method usage example with argument unpacking
kwargs: GetResourceProfileRequestTypeDef = {  # (1)
    "resourceArn": ...,
}
parent.get_resource_profile(**kwargs)get_reveal_configuration#
Retrieves the status and configuration settings for retrieving occurrences of sensitive data reported by findings.
Type annotations and code completion for boto3.client("macie2").get_reveal_configuration method.
 boto3 documentation
# get_reveal_configuration method definition
def get_reveal_configuration(
    self,
) -> GetRevealConfigurationResponseTypeDef:  # (1)
    ...get_sensitive_data_occurrences#
Retrieves occurrences of sensitive data reported by a finding.
Type annotations and code completion for boto3.client("macie2").get_sensitive_data_occurrences method.
 boto3 documentation
# get_sensitive_data_occurrences method definition
def get_sensitive_data_occurrences(
    self,
    *,
    findingId: str,
) -> GetSensitiveDataOccurrencesResponseTypeDef:  # (1)
    ...# get_sensitive_data_occurrences method usage example with argument unpacking
kwargs: GetSensitiveDataOccurrencesRequestTypeDef = {  # (1)
    "findingId": ...,
}
parent.get_sensitive_data_occurrences(**kwargs)get_sensitive_data_occurrences_availability#
Checks whether occurrences of sensitive data can be retrieved for a finding.
Type annotations and code completion for boto3.client("macie2").get_sensitive_data_occurrences_availability method.
 boto3 documentation
# get_sensitive_data_occurrences_availability method definition
def get_sensitive_data_occurrences_availability(
    self,
    *,
    findingId: str,
) -> GetSensitiveDataOccurrencesAvailabilityResponseTypeDef:  # (1)
    ...# get_sensitive_data_occurrences_availability method usage example with argument unpacking
kwargs: GetSensitiveDataOccurrencesAvailabilityRequestTypeDef = {  # (1)
    "findingId": ...,
}
parent.get_sensitive_data_occurrences_availability(**kwargs)get_sensitivity_inspection_template#
Retrieves the settings for the sensitivity inspection template for an account.
Type annotations and code completion for boto3.client("macie2").get_sensitivity_inspection_template method.
 boto3 documentation
# get_sensitivity_inspection_template method definition
def get_sensitivity_inspection_template(
    self,
    *,
    id: str,
) -> GetSensitivityInspectionTemplateResponseTypeDef:  # (1)
    ...# get_sensitivity_inspection_template method usage example with argument unpacking
kwargs: GetSensitivityInspectionTemplateRequestTypeDef = {  # (1)
    "id": ...,
}
parent.get_sensitivity_inspection_template(**kwargs)get_usage_statistics#
Retrieves (queries) quotas and aggregated usage data for one or more accounts.
Type annotations and code completion for boto3.client("macie2").get_usage_statistics method.
 boto3 documentation
# get_usage_statistics method definition
def get_usage_statistics(
    self,
    *,
    filterBy: Sequence[UsageStatisticsFilterTypeDef] = ...,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
    sortBy: UsageStatisticsSortByTypeDef = ...,  # (2)
    timeRange: TimeRangeType = ...,  # (3)
) -> GetUsageStatisticsResponseTypeDef:  # (4)
    ...- See Sequence[UsageStatisticsFilterTypeDef]
- See UsageStatisticsSortByTypeDef
- See TimeRangeType
- See GetUsageStatisticsResponseTypeDef
# get_usage_statistics method usage example with argument unpacking
kwargs: GetUsageStatisticsRequestTypeDef = {  # (1)
    "filterBy": ...,
}
parent.get_usage_statistics(**kwargs)get_usage_totals#
Retrieves (queries) aggregated usage data for an account.
Type annotations and code completion for boto3.client("macie2").get_usage_totals method.
 boto3 documentation
# get_usage_totals method definition
def get_usage_totals(
    self,
    *,
    timeRange: str = ...,
) -> GetUsageTotalsResponseTypeDef:  # (1)
    ...# get_usage_totals method usage example with argument unpacking
kwargs: GetUsageTotalsRequestTypeDef = {  # (1)
    "timeRange": ...,
}
parent.get_usage_totals(**kwargs)list_allow_lists#
Retrieves a subset of information about all the allow lists for an account.
Type annotations and code completion for boto3.client("macie2").list_allow_lists method.
 boto3 documentation
# list_allow_lists method definition
def list_allow_lists(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListAllowListsResponseTypeDef:  # (1)
    ...# list_allow_lists method usage example with argument unpacking
kwargs: ListAllowListsRequestTypeDef = {  # (1)
    "maxResults": ...,
}
parent.list_allow_lists(**kwargs)list_automated_discovery_accounts#
Retrieves the status of automated sensitive data discovery for one or more accounts.
Type annotations and code completion for boto3.client("macie2").list_automated_discovery_accounts method.
 boto3 documentation
# list_automated_discovery_accounts method definition
def list_automated_discovery_accounts(
    self,
    *,
    accountIds: Sequence[str] = ...,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListAutomatedDiscoveryAccountsResponseTypeDef:  # (1)
    ...# list_automated_discovery_accounts method usage example with argument unpacking
kwargs: ListAutomatedDiscoveryAccountsRequestTypeDef = {  # (1)
    "accountIds": ...,
}
parent.list_automated_discovery_accounts(**kwargs)list_classification_jobs#
Retrieves a subset of information about one or more classification jobs.
Type annotations and code completion for boto3.client("macie2").list_classification_jobs method.
 boto3 documentation
# list_classification_jobs method definition
def list_classification_jobs(
    self,
    *,
    filterCriteria: ListJobsFilterCriteriaTypeDef = ...,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
    sortCriteria: ListJobsSortCriteriaTypeDef = ...,  # (2)
) -> ListClassificationJobsResponseTypeDef:  # (3)
    ...- See ListJobsFilterCriteriaTypeDef
- See ListJobsSortCriteriaTypeDef
- See ListClassificationJobsResponseTypeDef
# list_classification_jobs method usage example with argument unpacking
kwargs: ListClassificationJobsRequestTypeDef = {  # (1)
    "filterCriteria": ...,
}
parent.list_classification_jobs(**kwargs)list_classification_scopes#
Retrieves a subset of information about the classification scope for an account.
Type annotations and code completion for boto3.client("macie2").list_classification_scopes method.
 boto3 documentation
# list_classification_scopes method definition
def list_classification_scopes(
    self,
    *,
    name: str = ...,
    nextToken: str = ...,
) -> ListClassificationScopesResponseTypeDef:  # (1)
    ...# list_classification_scopes method usage example with argument unpacking
kwargs: ListClassificationScopesRequestTypeDef = {  # (1)
    "name": ...,
}
parent.list_classification_scopes(**kwargs)list_custom_data_identifiers#
Retrieves a subset of information about the custom data identifiers for an account.
Type annotations and code completion for boto3.client("macie2").list_custom_data_identifiers method.
 boto3 documentation
# list_custom_data_identifiers method definition
def list_custom_data_identifiers(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListCustomDataIdentifiersResponseTypeDef:  # (1)
    ...# list_custom_data_identifiers method usage example with argument unpacking
kwargs: ListCustomDataIdentifiersRequestTypeDef = {  # (1)
    "maxResults": ...,
}
parent.list_custom_data_identifiers(**kwargs)list_findings#
Retrieves a subset of information about one or more findings.
Type annotations and code completion for boto3.client("macie2").list_findings method.
 boto3 documentation
# list_findings method definition
def list_findings(
    self,
    *,
    findingCriteria: FindingCriteriaUnionTypeDef = ...,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
    sortCriteria: SortCriteriaTypeDef = ...,  # (2)
) -> ListFindingsResponseTypeDef:  # (3)
    ...# list_findings method usage example with argument unpacking
kwargs: ListFindingsRequestTypeDef = {  # (1)
    "findingCriteria": ...,
}
parent.list_findings(**kwargs)list_findings_filters#
Retrieves a subset of information about all the findings filters for an account.
Type annotations and code completion for boto3.client("macie2").list_findings_filters method.
 boto3 documentation
# list_findings_filters method definition
def list_findings_filters(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListFindingsFiltersResponseTypeDef:  # (1)
    ...# list_findings_filters method usage example with argument unpacking
kwargs: ListFindingsFiltersRequestTypeDef = {  # (1)
    "maxResults": ...,
}
parent.list_findings_filters(**kwargs)list_invitations#
Retrieves information about Amazon Macie membership invitations that were received by an account.
Type annotations and code completion for boto3.client("macie2").list_invitations method.
 boto3 documentation
# list_invitations method definition
def list_invitations(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListInvitationsResponseTypeDef:  # (1)
    ...# list_invitations method usage example with argument unpacking
kwargs: ListInvitationsRequestTypeDef = {  # (1)
    "maxResults": ...,
}
parent.list_invitations(**kwargs)list_managed_data_identifiers#
Retrieves information about all the managed data identifiers that Amazon Macie currently provides.
Type annotations and code completion for boto3.client("macie2").list_managed_data_identifiers method.
 boto3 documentation
# list_managed_data_identifiers method definition
def list_managed_data_identifiers(
    self,
    *,
    nextToken: str = ...,
) -> ListManagedDataIdentifiersResponseTypeDef:  # (1)
    ...# list_managed_data_identifiers method usage example with argument unpacking
kwargs: ListManagedDataIdentifiersRequestTypeDef = {  # (1)
    "nextToken": ...,
}
parent.list_managed_data_identifiers(**kwargs)list_members#
Retrieves information about the accounts that are associated with an Amazon Macie administrator account.
Type annotations and code completion for boto3.client("macie2").list_members method.
 boto3 documentation
# list_members method definition
def list_members(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
    onlyAssociated: str = ...,
) -> ListMembersResponseTypeDef:  # (1)
    ...# list_members method usage example with argument unpacking
kwargs: ListMembersRequestTypeDef = {  # (1)
    "maxResults": ...,
}
parent.list_members(**kwargs)list_organization_admin_accounts#
Retrieves information about the delegated Amazon Macie administrator account for an organization in Organizations.
Type annotations and code completion for boto3.client("macie2").list_organization_admin_accounts method.
 boto3 documentation
# list_organization_admin_accounts method definition
def list_organization_admin_accounts(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListOrganizationAdminAccountsResponseTypeDef:  # (1)
    ...# list_organization_admin_accounts method usage example with argument unpacking
kwargs: ListOrganizationAdminAccountsRequestTypeDef = {  # (1)
    "maxResults": ...,
}
parent.list_organization_admin_accounts(**kwargs)list_resource_profile_artifacts#
Retrieves information about objects that Amazon Macie selected from an S3 bucket for automated sensitive data discovery.
Type annotations and code completion for boto3.client("macie2").list_resource_profile_artifacts method.
 boto3 documentation
# list_resource_profile_artifacts method definition
def list_resource_profile_artifacts(
    self,
    *,
    resourceArn: str,
    nextToken: str = ...,
) -> ListResourceProfileArtifactsResponseTypeDef:  # (1)
    ...# list_resource_profile_artifacts method usage example with argument unpacking
kwargs: ListResourceProfileArtifactsRequestTypeDef = {  # (1)
    "resourceArn": ...,
}
parent.list_resource_profile_artifacts(**kwargs)list_resource_profile_detections#
Retrieves information about the types and amount of sensitive data that Amazon Macie found in an S3 bucket.
Type annotations and code completion for boto3.client("macie2").list_resource_profile_detections method.
 boto3 documentation
# list_resource_profile_detections method definition
def list_resource_profile_detections(
    self,
    *,
    resourceArn: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListResourceProfileDetectionsResponseTypeDef:  # (1)
    ...# list_resource_profile_detections method usage example with argument unpacking
kwargs: ListResourceProfileDetectionsRequestTypeDef = {  # (1)
    "resourceArn": ...,
}
parent.list_resource_profile_detections(**kwargs)list_sensitivity_inspection_templates#
Retrieves a subset of information about the sensitivity inspection template for an account.
Type annotations and code completion for boto3.client("macie2").list_sensitivity_inspection_templates method.
 boto3 documentation
# list_sensitivity_inspection_templates method definition
def list_sensitivity_inspection_templates(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListSensitivityInspectionTemplatesResponseTypeDef:  # (1)
    ...# list_sensitivity_inspection_templates method usage example with argument unpacking
kwargs: ListSensitivityInspectionTemplatesRequestTypeDef = {  # (1)
    "maxResults": ...,
}
parent.list_sensitivity_inspection_templates(**kwargs)list_tags_for_resource#
Retrieves the tags (keys and values) that are associated with an Amazon Macie resource.
Type annotations and code completion for boto3.client("macie2").list_tags_for_resource method.
 boto3 documentation
# list_tags_for_resource method definition
def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...# list_tags_for_resource method usage example with argument unpacking
kwargs: ListTagsForResourceRequestTypeDef = {  # (1)
    "resourceArn": ...,
}
parent.list_tags_for_resource(**kwargs)put_classification_export_configuration#
Adds or updates the configuration settings for storing data classification results.
Type annotations and code completion for boto3.client("macie2").put_classification_export_configuration method.
 boto3 documentation
# put_classification_export_configuration method definition
def put_classification_export_configuration(
    self,
    *,
    configuration: ClassificationExportConfigurationTypeDef,  # (1)
) -> PutClassificationExportConfigurationResponseTypeDef:  # (2)
    ...- See ClassificationExportConfigurationTypeDef
- See PutClassificationExportConfigurationResponseTypeDef
# put_classification_export_configuration method usage example with argument unpacking
kwargs: PutClassificationExportConfigurationRequestTypeDef = {  # (1)
    "configuration": ...,
}
parent.put_classification_export_configuration(**kwargs)put_findings_publication_configuration#
Updates the configuration settings for publishing findings to Security Hub.
Type annotations and code completion for boto3.client("macie2").put_findings_publication_configuration method.
 boto3 documentation
# put_findings_publication_configuration method definition
def put_findings_publication_configuration(
    self,
    *,
    clientToken: str = ...,
    securityHubConfiguration: SecurityHubConfigurationTypeDef = ...,  # (1)
) -> Dict[str, Any]:
    ...# put_findings_publication_configuration method usage example with argument unpacking
kwargs: PutFindingsPublicationConfigurationRequestTypeDef = {  # (1)
    "clientToken": ...,
}
parent.put_findings_publication_configuration(**kwargs)search_resources#
Retrieves (queries) statistical data and other information about Amazon Web Services resources that Amazon Macie monitors and analyzes for an account.
Type annotations and code completion for boto3.client("macie2").search_resources method.
 boto3 documentation
# search_resources method definition
def search_resources(
    self,
    *,
    bucketCriteria: SearchResourcesBucketCriteriaTypeDef = ...,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
    sortCriteria: SearchResourcesSortCriteriaTypeDef = ...,  # (2)
) -> SearchResourcesResponseTypeDef:  # (3)
    ...- See SearchResourcesBucketCriteriaTypeDef
- See SearchResourcesSortCriteriaTypeDef
- See SearchResourcesResponseTypeDef
# search_resources method usage example with argument unpacking
kwargs: SearchResourcesRequestTypeDef = {  # (1)
    "bucketCriteria": ...,
}
parent.search_resources(**kwargs)tag_resource#
Adds or updates one or more tags (keys and values) that are associated with an Amazon Macie resource.
Type annotations and code completion for boto3.client("macie2").tag_resource method.
 boto3 documentation
# tag_resource method definition
def tag_resource(
    self,
    *,
    resourceArn: str,
    tags: Mapping[str, str],
) -> Dict[str, Any]:
    ...# tag_resource method usage example with argument unpacking
kwargs: TagResourceRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tags": ...,
}
parent.tag_resource(**kwargs)test_custom_data_identifier#
Tests criteria for a custom data identifier.
Type annotations and code completion for boto3.client("macie2").test_custom_data_identifier method.
 boto3 documentation
# test_custom_data_identifier method definition
def test_custom_data_identifier(
    self,
    *,
    regex: str,
    sampleText: str,
    ignoreWords: Sequence[str] = ...,
    keywords: Sequence[str] = ...,
    maximumMatchDistance: int = ...,
) -> TestCustomDataIdentifierResponseTypeDef:  # (1)
    ...# test_custom_data_identifier method usage example with argument unpacking
kwargs: TestCustomDataIdentifierRequestTypeDef = {  # (1)
    "regex": ...,
    "sampleText": ...,
}
parent.test_custom_data_identifier(**kwargs)untag_resource#
Removes one or more tags (keys and values) from an Amazon Macie resource.
Type annotations and code completion for boto3.client("macie2").untag_resource method.
 boto3 documentation
# untag_resource method definition
def untag_resource(
    self,
    *,
    resourceArn: str,
    tagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...# untag_resource method usage example with argument unpacking
kwargs: UntagResourceRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tagKeys": ...,
}
parent.untag_resource(**kwargs)update_allow_list#
Updates the settings for an allow list.
Type annotations and code completion for boto3.client("macie2").update_allow_list method.
 boto3 documentation
# update_allow_list method definition
def update_allow_list(
    self,
    *,
    criteria: AllowListCriteriaTypeDef,  # (1)
    id: str,
    name: str,
    description: str = ...,
) -> UpdateAllowListResponseTypeDef:  # (2)
    ...# update_allow_list method usage example with argument unpacking
kwargs: UpdateAllowListRequestTypeDef = {  # (1)
    "criteria": ...,
    "id": ...,
    "name": ...,
}
parent.update_allow_list(**kwargs)update_automated_discovery_configuration#
Changes the configuration settings and status of automated sensitive data discovery for an organization or standalone account.
Type annotations and code completion for boto3.client("macie2").update_automated_discovery_configuration method.
 boto3 documentation
# update_automated_discovery_configuration method definition
def update_automated_discovery_configuration(
    self,
    *,
    status: AutomatedDiscoveryStatusType,  # (1)
    autoEnableOrganizationMembers: AutoEnableModeType = ...,  # (2)
) -> Dict[str, Any]:
    ...# update_automated_discovery_configuration method usage example with argument unpacking
kwargs: UpdateAutomatedDiscoveryConfigurationRequestTypeDef = {  # (1)
    "status": ...,
}
parent.update_automated_discovery_configuration(**kwargs)update_classification_job#
Changes the status of a classification job.
Type annotations and code completion for boto3.client("macie2").update_classification_job method.
 boto3 documentation
# update_classification_job method definition
def update_classification_job(
    self,
    *,
    jobId: str,
    jobStatus: JobStatusType,  # (1)
) -> Dict[str, Any]:
    ...- See JobStatusType
# update_classification_job method usage example with argument unpacking
kwargs: UpdateClassificationJobRequestTypeDef = {  # (1)
    "jobId": ...,
    "jobStatus": ...,
}
parent.update_classification_job(**kwargs)update_classification_scope#
Updates the classification scope settings for an account.
Type annotations and code completion for boto3.client("macie2").update_classification_scope method.
 boto3 documentation
# update_classification_scope method definition
def update_classification_scope(
    self,
    *,
    id: str,
    s3: S3ClassificationScopeUpdateTypeDef = ...,  # (1)
) -> Dict[str, Any]:
    ...# update_classification_scope method usage example with argument unpacking
kwargs: UpdateClassificationScopeRequestTypeDef = {  # (1)
    "id": ...,
}
parent.update_classification_scope(**kwargs)update_findings_filter#
Updates the criteria and other settings for a findings filter.
Type annotations and code completion for boto3.client("macie2").update_findings_filter method.
 boto3 documentation
# update_findings_filter method definition
def update_findings_filter(
    self,
    *,
    id: str,
    action: FindingsFilterActionType = ...,  # (1)
    clientToken: str = ...,
    description: str = ...,
    findingCriteria: FindingCriteriaUnionTypeDef = ...,  # (2)
    name: str = ...,
    position: int = ...,
) -> UpdateFindingsFilterResponseTypeDef:  # (3)
    ...- See FindingsFilterActionType
- See FindingCriteriaUnionTypeDef
- See UpdateFindingsFilterResponseTypeDef
# update_findings_filter method usage example with argument unpacking
kwargs: UpdateFindingsFilterRequestTypeDef = {  # (1)
    "id": ...,
}
parent.update_findings_filter(**kwargs)update_macie_session#
Suspends or re-enables Amazon Macie, or updates the configuration settings for a Macie account.
Type annotations and code completion for boto3.client("macie2").update_macie_session method.
 boto3 documentation
# update_macie_session method definition
def update_macie_session(
    self,
    *,
    findingPublishingFrequency: FindingPublishingFrequencyType = ...,  # (1)
    status: MacieStatusType = ...,  # (2)
) -> Dict[str, Any]:
    ...# update_macie_session method usage example with argument unpacking
kwargs: UpdateMacieSessionRequestTypeDef = {  # (1)
    "findingPublishingFrequency": ...,
}
parent.update_macie_session(**kwargs)update_member_session#
Enables an Amazon Macie administrator to suspend or re-enable Macie for a member account.
Type annotations and code completion for boto3.client("macie2").update_member_session method.
 boto3 documentation
# update_member_session method definition
def update_member_session(
    self,
    *,
    id: str,
    status: MacieStatusType,  # (1)
) -> Dict[str, Any]:
    ...- See MacieStatusType
# update_member_session method usage example with argument unpacking
kwargs: UpdateMemberSessionRequestTypeDef = {  # (1)
    "id": ...,
    "status": ...,
}
parent.update_member_session(**kwargs)update_organization_configuration#
Updates the Amazon Macie configuration settings for an organization in Organizations.
Type annotations and code completion for boto3.client("macie2").update_organization_configuration method.
 boto3 documentation
# update_organization_configuration method definition
def update_organization_configuration(
    self,
    *,
    autoEnable: bool,
) -> Dict[str, Any]:
    ...# update_organization_configuration method usage example with argument unpacking
kwargs: UpdateOrganizationConfigurationRequestTypeDef = {  # (1)
    "autoEnable": ...,
}
parent.update_organization_configuration(**kwargs)update_resource_profile#
Updates the sensitivity score for an S3 bucket.
Type annotations and code completion for boto3.client("macie2").update_resource_profile method.
 boto3 documentation
# update_resource_profile method definition
def update_resource_profile(
    self,
    *,
    resourceArn: str,
    sensitivityScoreOverride: int = ...,
) -> Dict[str, Any]:
    ...# update_resource_profile method usage example with argument unpacking
kwargs: UpdateResourceProfileRequestTypeDef = {  # (1)
    "resourceArn": ...,
}
parent.update_resource_profile(**kwargs)update_resource_profile_detections#
Updates the sensitivity scoring settings for an S3 bucket.
Type annotations and code completion for boto3.client("macie2").update_resource_profile_detections method.
 boto3 documentation
# update_resource_profile_detections method definition
def update_resource_profile_detections(
    self,
    *,
    resourceArn: str,
    suppressDataIdentifiers: Sequence[SuppressDataIdentifierTypeDef] = ...,  # (1)
) -> Dict[str, Any]:
    ...- See Sequence[SuppressDataIdentifierTypeDef]
# update_resource_profile_detections method usage example with argument unpacking
kwargs: UpdateResourceProfileDetectionsRequestTypeDef = {  # (1)
    "resourceArn": ...,
}
parent.update_resource_profile_detections(**kwargs)update_reveal_configuration#
Updates the status and configuration settings for retrieving occurrences of sensitive data reported by findings.
Type annotations and code completion for boto3.client("macie2").update_reveal_configuration method.
 boto3 documentation
# update_reveal_configuration method definition
def update_reveal_configuration(
    self,
    *,
    configuration: RevealConfigurationTypeDef,  # (1)
    retrievalConfiguration: UpdateRetrievalConfigurationTypeDef = ...,  # (2)
) -> UpdateRevealConfigurationResponseTypeDef:  # (3)
    ...- See RevealConfigurationTypeDef
- See UpdateRetrievalConfigurationTypeDef
- See UpdateRevealConfigurationResponseTypeDef
# update_reveal_configuration method usage example with argument unpacking
kwargs: UpdateRevealConfigurationRequestTypeDef = {  # (1)
    "configuration": ...,
}
parent.update_reveal_configuration(**kwargs)update_sensitivity_inspection_template#
Updates the settings for the sensitivity inspection template for an account.
Type annotations and code completion for boto3.client("macie2").update_sensitivity_inspection_template method.
 boto3 documentation
# update_sensitivity_inspection_template method definition
def update_sensitivity_inspection_template(
    self,
    *,
    id: str,
    description: str = ...,
    excludes: SensitivityInspectionTemplateExcludesUnionTypeDef = ...,  # (1)
    includes: SensitivityInspectionTemplateIncludesUnionTypeDef = ...,  # (2)
) -> Dict[str, Any]:
    ...- See SensitivityInspectionTemplateExcludesUnionTypeDef
- See SensitivityInspectionTemplateIncludesUnionTypeDef
# update_sensitivity_inspection_template method usage example with argument unpacking
kwargs: UpdateSensitivityInspectionTemplateRequestTypeDef = {  # (1)
    "id": ...,
}
parent.update_sensitivity_inspection_template(**kwargs)get_paginator#
Type annotations and code completion for boto3.client("macie2").get_paginator method with overloads.
- client.get_paginator("describe_buckets")-> DescribeBucketsPaginator
- client.get_paginator("get_usage_statistics")-> GetUsageStatisticsPaginator
- client.get_paginator("list_allow_lists")-> ListAllowListsPaginator
- client.get_paginator("list_automated_discovery_accounts")-> ListAutomatedDiscoveryAccountsPaginator
- client.get_paginator("list_classification_jobs")-> ListClassificationJobsPaginator
- client.get_paginator("list_classification_scopes")-> ListClassificationScopesPaginator
- client.get_paginator("list_custom_data_identifiers")-> ListCustomDataIdentifiersPaginator
- client.get_paginator("list_findings_filters")-> ListFindingsFiltersPaginator
- client.get_paginator("list_findings")-> ListFindingsPaginator
- client.get_paginator("list_invitations")-> ListInvitationsPaginator
- client.get_paginator("list_managed_data_identifiers")-> ListManagedDataIdentifiersPaginator
- client.get_paginator("list_members")-> ListMembersPaginator
- client.get_paginator("list_organization_admin_accounts")-> ListOrganizationAdminAccountsPaginator
- client.get_paginator("list_resource_profile_artifacts")-> ListResourceProfileArtifactsPaginator
- client.get_paginator("list_resource_profile_detections")-> ListResourceProfileDetectionsPaginator
- client.get_paginator("list_sensitivity_inspection_templates")-> ListSensitivityInspectionTemplatesPaginator
- client.get_paginator("search_resources")-> SearchResourcesPaginator
get_waiter#
Type annotations and code completion for boto3.client("macie2").get_waiter method with overloads.
- client.get_waiter("finding_revealed")-> FindingRevealedWaiter