Macie2Client#
Auto-generated documentation for Macie2 type annotations stubs module mypy-boto3-macie2.
Macie2Client#
Type annotations and code completion for boto3.client("macie2")
.
boto3 documentation
# Macie2Client usage example
from boto3.session import Session
from mypy_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 mypy_boto3_macie2.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods#
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: AcceptInvitationRequestRequestTypeDef = { # (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: BatchGetCustomDataIdentifiersRequestRequestTypeDef = { # (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)
...
# batch_update_automated_discovery_accounts method usage example with argument unpacking
kwargs: BatchUpdateAutomatedDiscoveryAccountsRequestRequestTypeDef = { # (1)
"accounts": ...,
}
parent.batch_update_automated_discovery_accounts(**kwargs)
can_paginate#
Check if an operation can be paginated.
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:
...
close#
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("macie2").close
method.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
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: CreateAllowListRequestRequestTypeDef = { # (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: S3JobDefinitionTypeDef, # (2)
allowListIds: Sequence[str] = ...,
customDataIdentifierIds: Sequence[str] = ...,
description: str = ...,
initialRun: bool = ...,
managedDataIdentifierIds: Sequence[str] = ...,
managedDataIdentifierSelector: ManagedDataIdentifierSelectorType = ..., # (3)
samplingPercentage: int = ...,
scheduleFrequency: JobScheduleFrequencyTypeDef = ..., # (4)
tags: Mapping[str, str] = ...,
) -> CreateClassificationJobResponseTypeDef: # (5)
...
- See JobTypeType
- See S3JobDefinitionTypeDef
- See ManagedDataIdentifierSelectorType
- See JobScheduleFrequencyTypeDef
- See CreateClassificationJobResponseTypeDef
# create_classification_job method usage example with argument unpacking
kwargs: CreateClassificationJobRequestRequestTypeDef = { # (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)
...
# create_custom_data_identifier method usage example with argument unpacking
kwargs: CreateCustomDataIdentifierRequestRequestTypeDef = { # (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: FindingCriteriaTypeDef, # (2)
name: str,
clientToken: str = ...,
description: str = ...,
position: int = ...,
tags: Mapping[str, str] = ...,
) -> CreateFindingsFilterResponseTypeDef: # (3)
...
# create_findings_filter method usage example with argument unpacking
kwargs: CreateFindingsFilterRequestRequestTypeDef = { # (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: CreateInvitationsRequestRequestTypeDef = { # (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: CreateMemberRequestRequestTypeDef = { # (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 FindingTypeType
# create_sample_findings method usage example with argument unpacking
kwargs: CreateSampleFindingsRequestRequestTypeDef = { # (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: DeclineInvitationsRequestRequestTypeDef = { # (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: DeleteAllowListRequestRequestTypeDef = { # (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: DeleteCustomDataIdentifierRequestRequestTypeDef = { # (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: DeleteFindingsFilterRequestRequestTypeDef = { # (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: DeleteInvitationsRequestRequestTypeDef = { # (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: DeleteMemberRequestRequestTypeDef = { # (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 BucketCriteriaAdditionalPropertiesTypeDef
- See BucketSortCriteriaTypeDef
- See DescribeBucketsResponseTypeDef
# describe_buckets method usage example with argument unpacking
kwargs: DescribeBucketsRequestRequestTypeDef = { # (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: DescribeClassificationJobRequestRequestTypeDef = { # (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: DisableOrganizationAdminAccountRequestRequestTypeDef = { # (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: DisassociateMemberRequestRequestTypeDef = { # (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: EnableMacieRequestRequestTypeDef = { # (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: EnableOrganizationAdminAccountRequestRequestTypeDef = { # (1)
"adminAccountId": ...,
}
parent.enable_organization_admin_account(**kwargs)
generate_presigned_url#
Generate a presigned url given a client, its method, and arguments.
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:
...
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: GetAllowListRequestRequestTypeDef = { # (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: GetBucketStatisticsRequestRequestTypeDef = { # (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: GetClassificationScopeRequestRequestTypeDef = { # (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: GetCustomDataIdentifierRequestRequestTypeDef = { # (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: FindingCriteriaTypeDef = ..., # (2)
size: int = ...,
sortCriteria: FindingStatisticsSortCriteriaTypeDef = ..., # (3)
) -> GetFindingStatisticsResponseTypeDef: # (4)
...
- See GroupByType
- See FindingCriteriaTypeDef
- See FindingStatisticsSortCriteriaTypeDef
- See GetFindingStatisticsResponseTypeDef
# get_finding_statistics method usage example with argument unpacking
kwargs: GetFindingStatisticsRequestRequestTypeDef = { # (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: GetFindingsRequestRequestTypeDef = { # (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: GetFindingsFilterRequestRequestTypeDef = { # (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: GetMemberRequestRequestTypeDef = { # (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: GetResourceProfileRequestRequestTypeDef = { # (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: GetSensitiveDataOccurrencesRequestRequestTypeDef = { # (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: GetSensitiveDataOccurrencesAvailabilityRequestRequestTypeDef = { # (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: GetSensitivityInspectionTemplateRequestRequestTypeDef = { # (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 UsageStatisticsFilterTypeDef
- See UsageStatisticsSortByTypeDef
- See TimeRangeType
- See GetUsageStatisticsResponseTypeDef
# get_usage_statistics method usage example with argument unpacking
kwargs: GetUsageStatisticsRequestRequestTypeDef = { # (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: GetUsageTotalsRequestRequestTypeDef = { # (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: ListAllowListsRequestRequestTypeDef = { # (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: ListAutomatedDiscoveryAccountsRequestRequestTypeDef = { # (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: ListClassificationJobsRequestRequestTypeDef = { # (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: ListClassificationScopesRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.list_classification_scopes(**kwargs)
list_custom_data_identifiers#
Retrieves a subset of information about all 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: ListCustomDataIdentifiersRequestRequestTypeDef = { # (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: FindingCriteriaTypeDef = ..., # (1)
maxResults: int = ...,
nextToken: str = ...,
sortCriteria: SortCriteriaTypeDef = ..., # (2)
) -> ListFindingsResponseTypeDef: # (3)
...
# list_findings method usage example with argument unpacking
kwargs: ListFindingsRequestRequestTypeDef = { # (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: ListFindingsFiltersRequestRequestTypeDef = { # (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: ListInvitationsRequestRequestTypeDef = { # (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: ListManagedDataIdentifiersRequestRequestTypeDef = { # (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: ListMembersRequestRequestTypeDef = { # (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: ListOrganizationAdminAccountsRequestRequestTypeDef = { # (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: ListResourceProfileArtifactsRequestRequestTypeDef = { # (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: ListResourceProfileDetectionsRequestRequestTypeDef = { # (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: ListSensitivityInspectionTemplatesRequestRequestTypeDef = { # (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: ListTagsForResourceRequestRequestTypeDef = { # (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: PutClassificationExportConfigurationRequestRequestTypeDef = { # (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: PutFindingsPublicationConfigurationRequestRequestTypeDef = { # (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.
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: SearchResourcesRequestRequestTypeDef = { # (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: TagResourceRequestRequestTypeDef = { # (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: TestCustomDataIdentifierRequestRequestTypeDef = { # (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: UntagResourceRequestRequestTypeDef = { # (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: UpdateAllowListRequestRequestTypeDef = { # (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: UpdateAutomatedDiscoveryConfigurationRequestRequestTypeDef = { # (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: UpdateClassificationJobRequestRequestTypeDef = { # (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: UpdateClassificationScopeRequestRequestTypeDef = { # (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: FindingCriteriaTypeDef = ..., # (2)
name: str = ...,
position: int = ...,
) -> UpdateFindingsFilterResponseTypeDef: # (3)
...
# update_findings_filter method usage example with argument unpacking
kwargs: UpdateFindingsFilterRequestRequestTypeDef = { # (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: UpdateMacieSessionRequestRequestTypeDef = { # (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: UpdateMemberSessionRequestRequestTypeDef = { # (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: UpdateOrganizationConfigurationRequestRequestTypeDef = { # (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: UpdateResourceProfileRequestRequestTypeDef = { # (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]:
...
# update_resource_profile_detections method usage example with argument unpacking
kwargs: UpdateResourceProfileDetectionsRequestRequestTypeDef = { # (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: UpdateRevealConfigurationRequestRequestTypeDef = { # (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: SensitivityInspectionTemplateExcludesTypeDef = ..., # (1)
includes: SensitivityInspectionTemplateIncludesTypeDef = ..., # (2)
) -> Dict[str, Any]:
...
# update_sensitivity_inspection_template method usage example with argument unpacking
kwargs: UpdateSensitivityInspectionTemplateRequestRequestTypeDef = { # (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")
-> DescribeBucketsPaginatorclient.get_paginator("get_usage_statistics")
-> GetUsageStatisticsPaginatorclient.get_paginator("list_allow_lists")
-> ListAllowListsPaginatorclient.get_paginator("list_automated_discovery_accounts")
-> ListAutomatedDiscoveryAccountsPaginatorclient.get_paginator("list_classification_jobs")
-> ListClassificationJobsPaginatorclient.get_paginator("list_classification_scopes")
-> ListClassificationScopesPaginatorclient.get_paginator("list_custom_data_identifiers")
-> ListCustomDataIdentifiersPaginatorclient.get_paginator("list_findings_filters")
-> ListFindingsFiltersPaginatorclient.get_paginator("list_findings")
-> ListFindingsPaginatorclient.get_paginator("list_invitations")
-> ListInvitationsPaginatorclient.get_paginator("list_managed_data_identifiers")
-> ListManagedDataIdentifiersPaginatorclient.get_paginator("list_members")
-> ListMembersPaginatorclient.get_paginator("list_organization_admin_accounts")
-> ListOrganizationAdminAccountsPaginatorclient.get_paginator("list_resource_profile_artifacts")
-> ListResourceProfileArtifactsPaginatorclient.get_paginator("list_resource_profile_detections")
-> ListResourceProfileDetectionsPaginatorclient.get_paginator("list_sensitivity_inspection_templates")
-> ListSensitivityInspectionTemplatesPaginatorclient.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