Skip to content

DataZoneClient#

Index > DataZone > DataZoneClient

Auto-generated documentation for DataZone type annotations stubs module types-boto3-datazone.

DataZoneClient#

Type annotations and code completion for boto3.client("datazone"). boto3 documentation

# DataZoneClient usage example

from boto3.session import Session
from types_boto3_datazone.client import DataZoneClient

def get_datazone_client() -> DataZoneClient:
    return Session().client("datazone")

Exceptions#

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("datazone").exceptions structure.

# Exceptions.exceptions usage example

client = boto3.client("datazone")

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.UnauthorizedException,
    client.exceptions.ValidationException,
) as e:
    print(e)
# Exceptions.exceptions type checking example

from types_boto3_datazone.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods#

can_paginate#

Type annotations and code completion for boto3.client("datazone").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("datazone").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_predictions#

Accepts automatically generated business-friendly metadata for your Amazon DataZone assets.

Type annotations and code completion for boto3.client("datazone").accept_predictions method. boto3 documentation

# accept_predictions method definition

def accept_predictions(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    acceptChoices: Sequence[AcceptChoiceTypeDef] = ...,  # (1)
    acceptRule: AcceptRuleTypeDef = ...,  # (2)
    clientToken: str = ...,
    revision: str = ...,
) -> AcceptPredictionsOutputTypeDef:  # (3)
    ...
  1. See AcceptChoiceTypeDef
  2. See AcceptRuleTypeDef
  3. See AcceptPredictionsOutputTypeDef
# accept_predictions method usage example with argument unpacking

kwargs: AcceptPredictionsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.accept_predictions(**kwargs)
  1. See AcceptPredictionsInputTypeDef

accept_subscription_request#

Accepts a subscription request to a specific asset.

Type annotations and code completion for boto3.client("datazone").accept_subscription_request method. boto3 documentation

# accept_subscription_request method definition

def accept_subscription_request(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    assetScopes: Sequence[AcceptedAssetScopeTypeDef] = ...,  # (1)
    decisionComment: str = ...,
) -> AcceptSubscriptionRequestOutputTypeDef:  # (2)
    ...
  1. See AcceptedAssetScopeTypeDef
  2. See AcceptSubscriptionRequestOutputTypeDef
# accept_subscription_request method usage example with argument unpacking

kwargs: AcceptSubscriptionRequestInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.accept_subscription_request(**kwargs)
  1. See AcceptSubscriptionRequestInputTypeDef

add_entity_owner#

Adds the owner of an entity (a domain unit).

Type annotations and code completion for boto3.client("datazone").add_entity_owner method. boto3 documentation

# add_entity_owner method definition

def add_entity_owner(
    self,
    *,
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: DataZoneEntityTypeType,  # (1)
    owner: OwnerPropertiesTypeDef,  # (2)
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...
  1. See DataZoneEntityTypeType
  2. See OwnerPropertiesTypeDef
# add_entity_owner method usage example with argument unpacking

kwargs: AddEntityOwnerInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
    "owner": ...,
}

parent.add_entity_owner(**kwargs)
  1. See AddEntityOwnerInputTypeDef

add_policy_grant#

Adds a policy grant (an authorization policy) to a specified entity, including domain units, environment blueprint configurations, or environment profiles.

Type annotations and code completion for boto3.client("datazone").add_policy_grant method. boto3 documentation

# add_policy_grant method definition

def add_policy_grant(
    self,
    *,
    detail: PolicyGrantDetailUnionTypeDef,  # (1)
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: TargetEntityTypeType,  # (2)
    policyType: ManagedPolicyTypeType,  # (3)
    principal: PolicyGrantPrincipalUnionTypeDef,  # (4)
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...
  1. See PolicyGrantDetailTypeDef PolicyGrantDetailOutputTypeDef
  2. See TargetEntityTypeType
  3. See ManagedPolicyTypeType
  4. See PolicyGrantPrincipalTypeDef PolicyGrantPrincipalOutputTypeDef
# add_policy_grant method usage example with argument unpacking

kwargs: AddPolicyGrantInputTypeDef = {  # (1)
    "detail": ...,
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
    "policyType": ...,
    "principal": ...,
}

parent.add_policy_grant(**kwargs)
  1. See AddPolicyGrantInputTypeDef

associate_environment_role#

Associates the environment role in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").associate_environment_role method. boto3 documentation

# associate_environment_role method definition

def associate_environment_role(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    environmentRoleArn: str,
) -> Dict[str, Any]:
    ...
# associate_environment_role method usage example with argument unpacking

kwargs: AssociateEnvironmentRoleInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "environmentRoleArn": ...,
}

parent.associate_environment_role(**kwargs)
  1. See AssociateEnvironmentRoleInputTypeDef

cancel_metadata_generation_run#

Cancels the metadata generation run.

Type annotations and code completion for boto3.client("datazone").cancel_metadata_generation_run method. boto3 documentation

# cancel_metadata_generation_run method definition

def cancel_metadata_generation_run(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# cancel_metadata_generation_run method usage example with argument unpacking

kwargs: CancelMetadataGenerationRunInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.cancel_metadata_generation_run(**kwargs)
  1. See CancelMetadataGenerationRunInputTypeDef

cancel_subscription#

Cancels the subscription to the specified asset.

Type annotations and code completion for boto3.client("datazone").cancel_subscription method. boto3 documentation

# cancel_subscription method definition

def cancel_subscription(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> CancelSubscriptionOutputTypeDef:  # (1)
    ...
  1. See CancelSubscriptionOutputTypeDef
# cancel_subscription method usage example with argument unpacking

kwargs: CancelSubscriptionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.cancel_subscription(**kwargs)
  1. See CancelSubscriptionInputTypeDef

create_asset#

Creates an asset in Amazon DataZone catalog.

Type annotations and code completion for boto3.client("datazone").create_asset method. boto3 documentation

# create_asset method definition

def create_asset(
    self,
    *,
    domainIdentifier: str,
    name: str,
    owningProjectIdentifier: str,
    typeIdentifier: str,
    clientToken: str = ...,
    description: str = ...,
    externalIdentifier: str = ...,
    formsInput: Sequence[FormInputTypeDef] = ...,  # (1)
    glossaryTerms: Sequence[str] = ...,
    predictionConfiguration: PredictionConfigurationTypeDef = ...,  # (2)
    typeRevision: str = ...,
) -> CreateAssetOutputTypeDef:  # (3)
    ...
  1. See FormInputTypeDef
  2. See PredictionConfigurationTypeDef
  3. See CreateAssetOutputTypeDef
# create_asset method usage example with argument unpacking

kwargs: CreateAssetInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "name": ...,
    "owningProjectIdentifier": ...,
    "typeIdentifier": ...,
}

parent.create_asset(**kwargs)
  1. See CreateAssetInputTypeDef

create_asset_filter#

Creates a data asset filter.

Type annotations and code completion for boto3.client("datazone").create_asset_filter method. boto3 documentation

# create_asset_filter method definition

def create_asset_filter(
    self,
    *,
    assetIdentifier: str,
    configuration: AssetFilterConfigurationUnionTypeDef,  # (1)
    domainIdentifier: str,
    name: str,
    clientToken: str = ...,
    description: str = ...,
) -> CreateAssetFilterOutputTypeDef:  # (2)
    ...
  1. See AssetFilterConfigurationTypeDef AssetFilterConfigurationOutputTypeDef
  2. See CreateAssetFilterOutputTypeDef
# create_asset_filter method usage example with argument unpacking

kwargs: CreateAssetFilterInputTypeDef = {  # (1)
    "assetIdentifier": ...,
    "configuration": ...,
    "domainIdentifier": ...,
    "name": ...,
}

parent.create_asset_filter(**kwargs)
  1. See CreateAssetFilterInputTypeDef

create_asset_revision#

Creates a revision of the asset.

Type annotations and code completion for boto3.client("datazone").create_asset_revision method. boto3 documentation

# create_asset_revision method definition

def create_asset_revision(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    name: str,
    clientToken: str = ...,
    description: str = ...,
    formsInput: Sequence[FormInputTypeDef] = ...,  # (1)
    glossaryTerms: Sequence[str] = ...,
    predictionConfiguration: PredictionConfigurationTypeDef = ...,  # (2)
    typeRevision: str = ...,
) -> CreateAssetRevisionOutputTypeDef:  # (3)
    ...
  1. See FormInputTypeDef
  2. See PredictionConfigurationTypeDef
  3. See CreateAssetRevisionOutputTypeDef
# create_asset_revision method usage example with argument unpacking

kwargs: CreateAssetRevisionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
    "name": ...,
}

parent.create_asset_revision(**kwargs)
  1. See CreateAssetRevisionInputTypeDef

create_asset_type#

Creates a custom asset type.

Type annotations and code completion for boto3.client("datazone").create_asset_type method. boto3 documentation

# create_asset_type method definition

def create_asset_type(
    self,
    *,
    domainIdentifier: str,
    formsInput: Mapping[str, FormEntryInputTypeDef],  # (1)
    name: str,
    owningProjectIdentifier: str,
    description: str = ...,
) -> CreateAssetTypeOutputTypeDef:  # (2)
    ...
  1. See FormEntryInputTypeDef
  2. See CreateAssetTypeOutputTypeDef
# create_asset_type method usage example with argument unpacking

kwargs: CreateAssetTypeInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "formsInput": ...,
    "name": ...,
    "owningProjectIdentifier": ...,
}

parent.create_asset_type(**kwargs)
  1. See CreateAssetTypeInputTypeDef

create_connection#

Creates a new connection.

Type annotations and code completion for boto3.client("datazone").create_connection method. boto3 documentation

# create_connection method definition

def create_connection(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    name: str,
    awsLocation: AwsLocationTypeDef = ...,  # (1)
    clientToken: str = ...,
    description: str = ...,
    props: ConnectionPropertiesInputTypeDef = ...,  # (2)
) -> CreateConnectionOutputTypeDef:  # (3)
    ...
  1. See AwsLocationTypeDef
  2. See ConnectionPropertiesInputTypeDef
  3. See CreateConnectionOutputTypeDef
# create_connection method usage example with argument unpacking

kwargs: CreateConnectionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "name": ...,
}

parent.create_connection(**kwargs)
  1. See CreateConnectionInputTypeDef

create_data_product#

Creates a data product.

Type annotations and code completion for boto3.client("datazone").create_data_product method. boto3 documentation

# create_data_product method definition

def create_data_product(
    self,
    *,
    domainIdentifier: str,
    name: str,
    owningProjectIdentifier: str,
    clientToken: str = ...,
    description: str = ...,
    formsInput: Sequence[FormInputTypeDef] = ...,  # (1)
    glossaryTerms: Sequence[str] = ...,
    items: Sequence[DataProductItemUnionTypeDef] = ...,  # (2)
) -> CreateDataProductOutputTypeDef:  # (3)
    ...
  1. See FormInputTypeDef
  2. See DataProductItemTypeDef DataProductItemOutputTypeDef
  3. See CreateDataProductOutputTypeDef
# create_data_product method usage example with argument unpacking

kwargs: CreateDataProductInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "name": ...,
    "owningProjectIdentifier": ...,
}

parent.create_data_product(**kwargs)
  1. See CreateDataProductInputTypeDef

create_data_product_revision#

Creates a data product revision.

Type annotations and code completion for boto3.client("datazone").create_data_product_revision method. boto3 documentation

# create_data_product_revision method definition

def create_data_product_revision(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    name: str,
    clientToken: str = ...,
    description: str = ...,
    formsInput: Sequence[FormInputTypeDef] = ...,  # (1)
    glossaryTerms: Sequence[str] = ...,
    items: Sequence[DataProductItemUnionTypeDef] = ...,  # (2)
) -> CreateDataProductRevisionOutputTypeDef:  # (3)
    ...
  1. See FormInputTypeDef
  2. See DataProductItemTypeDef DataProductItemOutputTypeDef
  3. See CreateDataProductRevisionOutputTypeDef
# create_data_product_revision method usage example with argument unpacking

kwargs: CreateDataProductRevisionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
    "name": ...,
}

parent.create_data_product_revision(**kwargs)
  1. See CreateDataProductRevisionInputTypeDef

create_data_source#

Creates an Amazon DataZone data source.

Type annotations and code completion for boto3.client("datazone").create_data_source method. boto3 documentation

# create_data_source method definition

def create_data_source(
    self,
    *,
    domainIdentifier: str,
    name: str,
    projectIdentifier: str,
    type: str,
    assetFormsInput: Sequence[FormInputTypeDef] = ...,  # (1)
    clientToken: str = ...,
    configuration: DataSourceConfigurationInputTypeDef = ...,  # (2)
    connectionIdentifier: str = ...,
    description: str = ...,
    enableSetting: EnableSettingType = ...,  # (3)
    environmentIdentifier: str = ...,
    publishOnImport: bool = ...,
    recommendation: RecommendationConfigurationTypeDef = ...,  # (4)
    schedule: ScheduleConfigurationTypeDef = ...,  # (5)
) -> CreateDataSourceOutputTypeDef:  # (6)
    ...
  1. See FormInputTypeDef
  2. See DataSourceConfigurationInputTypeDef
  3. See EnableSettingType
  4. See RecommendationConfigurationTypeDef
  5. See ScheduleConfigurationTypeDef
  6. See CreateDataSourceOutputTypeDef
# create_data_source method usage example with argument unpacking

kwargs: CreateDataSourceInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "name": ...,
    "projectIdentifier": ...,
    "type": ...,
}

parent.create_data_source(**kwargs)
  1. See CreateDataSourceInputTypeDef

create_domain#

Creates an Amazon DataZone domain.

Type annotations and code completion for boto3.client("datazone").create_domain method. boto3 documentation

# create_domain method definition

def create_domain(
    self,
    *,
    domainExecutionRole: str,
    name: str,
    clientToken: str = ...,
    description: str = ...,
    domainVersion: DomainVersionType = ...,  # (1)
    kmsKeyIdentifier: str = ...,
    serviceRole: str = ...,
    singleSignOn: SingleSignOnTypeDef = ...,  # (2)
    tags: Mapping[str, str] = ...,
) -> CreateDomainOutputTypeDef:  # (3)
    ...
  1. See DomainVersionType
  2. See SingleSignOnTypeDef
  3. See CreateDomainOutputTypeDef
# create_domain method usage example with argument unpacking

kwargs: CreateDomainInputTypeDef = {  # (1)
    "domainExecutionRole": ...,
    "name": ...,
}

parent.create_domain(**kwargs)
  1. See CreateDomainInputTypeDef

create_domain_unit#

Creates a domain unit in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").create_domain_unit method. boto3 documentation

# create_domain_unit method definition

def create_domain_unit(
    self,
    *,
    domainIdentifier: str,
    name: str,
    parentDomainUnitIdentifier: str,
    clientToken: str = ...,
    description: str = ...,
) -> CreateDomainUnitOutputTypeDef:  # (1)
    ...
  1. See CreateDomainUnitOutputTypeDef
# create_domain_unit method usage example with argument unpacking

kwargs: CreateDomainUnitInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "name": ...,
    "parentDomainUnitIdentifier": ...,
}

parent.create_domain_unit(**kwargs)
  1. See CreateDomainUnitInputTypeDef

create_environment#

Create an Amazon DataZone environment.

Type annotations and code completion for boto3.client("datazone").create_environment method. boto3 documentation

# create_environment method definition

def create_environment(
    self,
    *,
    domainIdentifier: str,
    environmentProfileIdentifier: str,
    name: str,
    projectIdentifier: str,
    deploymentOrder: int = ...,
    description: str = ...,
    environmentAccountIdentifier: str = ...,
    environmentAccountRegion: str = ...,
    environmentBlueprintIdentifier: str = ...,
    environmentConfigurationId: str = ...,
    glossaryTerms: Sequence[str] = ...,
    userParameters: Sequence[EnvironmentParameterTypeDef] = ...,  # (1)
) -> CreateEnvironmentOutputTypeDef:  # (2)
    ...
  1. See EnvironmentParameterTypeDef
  2. See CreateEnvironmentOutputTypeDef
# create_environment method usage example with argument unpacking

kwargs: CreateEnvironmentInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentProfileIdentifier": ...,
    "name": ...,
    "projectIdentifier": ...,
}

parent.create_environment(**kwargs)
  1. See CreateEnvironmentInputTypeDef

create_environment_action#

Creates an action for the environment, for example, creates a console link for an analytics tool that is available in this environment.

Type annotations and code completion for boto3.client("datazone").create_environment_action method. boto3 documentation

# create_environment_action method definition

def create_environment_action(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    name: str,
    parameters: ActionParametersTypeDef,  # (1)
    description: str = ...,
) -> CreateEnvironmentActionOutputTypeDef:  # (2)
    ...
  1. See ActionParametersTypeDef
  2. See CreateEnvironmentActionOutputTypeDef
# create_environment_action method usage example with argument unpacking

kwargs: CreateEnvironmentActionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "name": ...,
    "parameters": ...,
}

parent.create_environment_action(**kwargs)
  1. See CreateEnvironmentActionInputTypeDef

create_environment_profile#

Creates an Amazon DataZone environment profile.

Type annotations and code completion for boto3.client("datazone").create_environment_profile method. boto3 documentation

# create_environment_profile method definition

def create_environment_profile(
    self,
    *,
    domainIdentifier: str,
    environmentBlueprintIdentifier: str,
    name: str,
    projectIdentifier: str,
    awsAccountId: str = ...,
    awsAccountRegion: str = ...,
    description: str = ...,
    userParameters: Sequence[EnvironmentParameterTypeDef] = ...,  # (1)
) -> CreateEnvironmentProfileOutputTypeDef:  # (2)
    ...
  1. See EnvironmentParameterTypeDef
  2. See CreateEnvironmentProfileOutputTypeDef
# create_environment_profile method usage example with argument unpacking

kwargs: CreateEnvironmentProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentBlueprintIdentifier": ...,
    "name": ...,
    "projectIdentifier": ...,
}

parent.create_environment_profile(**kwargs)
  1. See CreateEnvironmentProfileInputTypeDef

create_form_type#

Creates a metadata form type.

Type annotations and code completion for boto3.client("datazone").create_form_type method. boto3 documentation

# create_form_type method definition

def create_form_type(
    self,
    *,
    domainIdentifier: str,
    model: ModelTypeDef,  # (1)
    name: str,
    owningProjectIdentifier: str,
    description: str = ...,
    status: FormTypeStatusType = ...,  # (2)
) -> CreateFormTypeOutputTypeDef:  # (3)
    ...
  1. See ModelTypeDef
  2. See FormTypeStatusType
  3. See CreateFormTypeOutputTypeDef
# create_form_type method usage example with argument unpacking

kwargs: CreateFormTypeInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "model": ...,
    "name": ...,
    "owningProjectIdentifier": ...,
}

parent.create_form_type(**kwargs)
  1. See CreateFormTypeInputTypeDef

create_glossary#

Creates an Amazon DataZone business glossary.

Type annotations and code completion for boto3.client("datazone").create_glossary method. boto3 documentation

# create_glossary method definition

def create_glossary(
    self,
    *,
    domainIdentifier: str,
    name: str,
    owningProjectIdentifier: str,
    clientToken: str = ...,
    description: str = ...,
    status: GlossaryStatusType = ...,  # (1)
) -> CreateGlossaryOutputTypeDef:  # (2)
    ...
  1. See GlossaryStatusType
  2. See CreateGlossaryOutputTypeDef
# create_glossary method usage example with argument unpacking

kwargs: CreateGlossaryInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "name": ...,
    "owningProjectIdentifier": ...,
}

parent.create_glossary(**kwargs)
  1. See CreateGlossaryInputTypeDef

create_glossary_term#

Creates a business glossary term.

Type annotations and code completion for boto3.client("datazone").create_glossary_term method. boto3 documentation

# create_glossary_term method definition

def create_glossary_term(
    self,
    *,
    domainIdentifier: str,
    glossaryIdentifier: str,
    name: str,
    clientToken: str = ...,
    longDescription: str = ...,
    shortDescription: str = ...,
    status: GlossaryTermStatusType = ...,  # (1)
    termRelations: TermRelationsUnionTypeDef = ...,  # (2)
) -> CreateGlossaryTermOutputTypeDef:  # (3)
    ...
  1. See GlossaryTermStatusType
  2. See TermRelationsTypeDef TermRelationsOutputTypeDef
  3. See CreateGlossaryTermOutputTypeDef
# create_glossary_term method usage example with argument unpacking

kwargs: CreateGlossaryTermInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "glossaryIdentifier": ...,
    "name": ...,
}

parent.create_glossary_term(**kwargs)
  1. See CreateGlossaryTermInputTypeDef

create_group_profile#

Creates a group profile in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").create_group_profile method. boto3 documentation

# create_group_profile method definition

def create_group_profile(
    self,
    *,
    domainIdentifier: str,
    groupIdentifier: str,
    clientToken: str = ...,
) -> CreateGroupProfileOutputTypeDef:  # (1)
    ...
  1. See CreateGroupProfileOutputTypeDef
# create_group_profile method usage example with argument unpacking

kwargs: CreateGroupProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "groupIdentifier": ...,
}

parent.create_group_profile(**kwargs)
  1. See CreateGroupProfileInputTypeDef

create_listing_change_set#

Publishes a listing (a record of an asset at a given time) or removes a listing from the catalog.

Type annotations and code completion for boto3.client("datazone").create_listing_change_set method. boto3 documentation

# create_listing_change_set method definition

def create_listing_change_set(
    self,
    *,
    action: ChangeActionType,  # (1)
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: EntityTypeType,  # (2)
    clientToken: str = ...,
    entityRevision: str = ...,
) -> CreateListingChangeSetOutputTypeDef:  # (3)
    ...
  1. See ChangeActionType
  2. See EntityTypeType
  3. See CreateListingChangeSetOutputTypeDef
# create_listing_change_set method usage example with argument unpacking

kwargs: CreateListingChangeSetInputTypeDef = {  # (1)
    "action": ...,
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
}

parent.create_listing_change_set(**kwargs)
  1. See CreateListingChangeSetInputTypeDef

create_project#

Creates an Amazon DataZone project.

Type annotations and code completion for boto3.client("datazone").create_project method. boto3 documentation

# create_project method definition

def create_project(
    self,
    *,
    domainIdentifier: str,
    name: str,
    description: str = ...,
    domainUnitId: str = ...,
    glossaryTerms: Sequence[str] = ...,
    projectProfileId: str = ...,
    userParameters: Sequence[EnvironmentConfigurationUserParameterUnionTypeDef] = ...,  # (1)
) -> CreateProjectOutputTypeDef:  # (2)
    ...
  1. See EnvironmentConfigurationUserParameterTypeDef EnvironmentConfigurationUserParameterOutputTypeDef
  2. See CreateProjectOutputTypeDef
# create_project method usage example with argument unpacking

kwargs: CreateProjectInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "name": ...,
}

parent.create_project(**kwargs)
  1. See CreateProjectInputTypeDef

create_project_membership#

Creates a project membership in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").create_project_membership method. boto3 documentation

# create_project_membership method definition

def create_project_membership(
    self,
    *,
    designation: UserDesignationType,  # (1)
    domainIdentifier: str,
    member: MemberTypeDef,  # (2)
    projectIdentifier: str,
) -> Dict[str, Any]:
    ...
  1. See UserDesignationType
  2. See MemberTypeDef
# create_project_membership method usage example with argument unpacking

kwargs: CreateProjectMembershipInputTypeDef = {  # (1)
    "designation": ...,
    "domainIdentifier": ...,
    "member": ...,
    "projectIdentifier": ...,
}

parent.create_project_membership(**kwargs)
  1. See CreateProjectMembershipInputTypeDef

create_project_profile#

Creates a project profile.

Type annotations and code completion for boto3.client("datazone").create_project_profile method. boto3 documentation

# create_project_profile method definition

def create_project_profile(
    self,
    *,
    domainIdentifier: str,
    name: str,
    description: str = ...,
    domainUnitIdentifier: str = ...,
    environmentConfigurations: Sequence[EnvironmentConfigurationUnionTypeDef] = ...,  # (1)
    status: StatusType = ...,  # (2)
) -> CreateProjectProfileOutputTypeDef:  # (3)
    ...
  1. See EnvironmentConfigurationTypeDef EnvironmentConfigurationOutputTypeDef
  2. See StatusType
  3. See CreateProjectProfileOutputTypeDef
# create_project_profile method usage example with argument unpacking

kwargs: CreateProjectProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "name": ...,
}

parent.create_project_profile(**kwargs)
  1. See CreateProjectProfileInputTypeDef

create_rule#

Creates a rule in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").create_rule method. boto3 documentation

# create_rule method definition

def create_rule(
    self,
    *,
    action: RuleActionType,  # (1)
    detail: RuleDetailUnionTypeDef,  # (2)
    domainIdentifier: str,
    name: str,
    scope: RuleScopeUnionTypeDef,  # (3)
    target: RuleTargetTypeDef,  # (4)
    clientToken: str = ...,
    description: str = ...,
) -> CreateRuleOutputTypeDef:  # (5)
    ...
  1. See RuleActionType
  2. See RuleDetailTypeDef RuleDetailOutputTypeDef
  3. See RuleScopeTypeDef RuleScopeOutputTypeDef
  4. See RuleTargetTypeDef
  5. See CreateRuleOutputTypeDef
# create_rule method usage example with argument unpacking

kwargs: CreateRuleInputTypeDef = {  # (1)
    "action": ...,
    "detail": ...,
    "domainIdentifier": ...,
    "name": ...,
    "scope": ...,
    "target": ...,
}

parent.create_rule(**kwargs)
  1. See CreateRuleInputTypeDef

create_subscription_grant#

Creates a subsscription grant in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").create_subscription_grant method. boto3 documentation

# create_subscription_grant method definition

def create_subscription_grant(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    grantedEntity: GrantedEntityInputTypeDef,  # (1)
    assetTargetNames: Sequence[AssetTargetNameMapTypeDef] = ...,  # (2)
    clientToken: str = ...,
    subscriptionTargetIdentifier: str = ...,
) -> CreateSubscriptionGrantOutputTypeDef:  # (3)
    ...
  1. See GrantedEntityInputTypeDef
  2. See AssetTargetNameMapTypeDef
  3. See CreateSubscriptionGrantOutputTypeDef
# create_subscription_grant method usage example with argument unpacking

kwargs: CreateSubscriptionGrantInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "grantedEntity": ...,
}

parent.create_subscription_grant(**kwargs)
  1. See CreateSubscriptionGrantInputTypeDef

create_subscription_request#

Creates a subscription request in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").create_subscription_request method. boto3 documentation

# create_subscription_request method definition

def create_subscription_request(
    self,
    *,
    domainIdentifier: str,
    requestReason: str,
    subscribedListings: Sequence[SubscribedListingInputTypeDef],  # (1)
    subscribedPrincipals: Sequence[SubscribedPrincipalInputTypeDef],  # (2)
    clientToken: str = ...,
    metadataForms: Sequence[FormInputTypeDef] = ...,  # (3)
) -> CreateSubscriptionRequestOutputTypeDef:  # (4)
    ...
  1. See SubscribedListingInputTypeDef
  2. See SubscribedPrincipalInputTypeDef
  3. See FormInputTypeDef
  4. See CreateSubscriptionRequestOutputTypeDef
# create_subscription_request method usage example with argument unpacking

kwargs: CreateSubscriptionRequestInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "requestReason": ...,
    "subscribedListings": ...,
    "subscribedPrincipals": ...,
}

parent.create_subscription_request(**kwargs)
  1. See CreateSubscriptionRequestInputTypeDef

create_subscription_target#

Creates a subscription target in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").create_subscription_target method. boto3 documentation

# create_subscription_target method definition

def create_subscription_target(
    self,
    *,
    applicableAssetTypes: Sequence[str],
    authorizedPrincipals: Sequence[str],
    domainIdentifier: str,
    environmentIdentifier: str,
    manageAccessRole: str,
    name: str,
    subscriptionTargetConfig: Sequence[SubscriptionTargetFormTypeDef],  # (1)
    type: str,
    clientToken: str = ...,
    provider: str = ...,
) -> CreateSubscriptionTargetOutputTypeDef:  # (2)
    ...
  1. See SubscriptionTargetFormTypeDef
  2. See CreateSubscriptionTargetOutputTypeDef
# create_subscription_target method usage example with argument unpacking

kwargs: CreateSubscriptionTargetInputTypeDef = {  # (1)
    "applicableAssetTypes": ...,
    "authorizedPrincipals": ...,
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "manageAccessRole": ...,
    "name": ...,
    "subscriptionTargetConfig": ...,
    "type": ...,
}

parent.create_subscription_target(**kwargs)
  1. See CreateSubscriptionTargetInputTypeDef

create_user_profile#

Creates a user profile in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").create_user_profile method. boto3 documentation

# create_user_profile method definition

def create_user_profile(
    self,
    *,
    domainIdentifier: str,
    userIdentifier: str,
    clientToken: str = ...,
    userType: UserTypeType = ...,  # (1)
) -> CreateUserProfileOutputTypeDef:  # (2)
    ...
  1. See UserTypeType
  2. See CreateUserProfileOutputTypeDef
# create_user_profile method usage example with argument unpacking

kwargs: CreateUserProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "userIdentifier": ...,
}

parent.create_user_profile(**kwargs)
  1. See CreateUserProfileInputTypeDef

delete_asset#

Deletes an asset in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_asset method. boto3 documentation

# delete_asset method definition

def delete_asset(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# delete_asset method usage example with argument unpacking

kwargs: DeleteAssetInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_asset(**kwargs)
  1. See DeleteAssetInputTypeDef

delete_asset_filter#

Deletes an asset filter.

Type annotations and code completion for boto3.client("datazone").delete_asset_filter method. boto3 documentation

# delete_asset_filter method definition

def delete_asset_filter(
    self,
    *,
    assetIdentifier: str,
    domainIdentifier: str,
    identifier: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_asset_filter method usage example with argument unpacking

kwargs: DeleteAssetFilterInputTypeDef = {  # (1)
    "assetIdentifier": ...,
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_asset_filter(**kwargs)
  1. See DeleteAssetFilterInputTypeDef

delete_asset_type#

Deletes an asset type in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_asset_type method. boto3 documentation

# delete_asset_type method definition

def delete_asset_type(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# delete_asset_type method usage example with argument unpacking

kwargs: DeleteAssetTypeInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_asset_type(**kwargs)
  1. See DeleteAssetTypeInputTypeDef

delete_connection#

Deletes and connection.

Type annotations and code completion for boto3.client("datazone").delete_connection method. boto3 documentation

# delete_connection method definition

def delete_connection(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> DeleteConnectionOutputTypeDef:  # (1)
    ...
  1. See DeleteConnectionOutputTypeDef
# delete_connection method usage example with argument unpacking

kwargs: DeleteConnectionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_connection(**kwargs)
  1. See DeleteConnectionInputTypeDef

delete_data_product#

Deletes a data product in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_data_product method. boto3 documentation

# delete_data_product method definition

def delete_data_product(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# delete_data_product method usage example with argument unpacking

kwargs: DeleteDataProductInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_data_product(**kwargs)
  1. See DeleteDataProductInputTypeDef

delete_data_source#

Deletes a data source in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_data_source method. boto3 documentation

# delete_data_source method definition

def delete_data_source(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    clientToken: str = ...,
    retainPermissionsOnRevokeFailure: bool = ...,
) -> DeleteDataSourceOutputTypeDef:  # (1)
    ...
  1. See DeleteDataSourceOutputTypeDef
# delete_data_source method usage example with argument unpacking

kwargs: DeleteDataSourceInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_data_source(**kwargs)
  1. See DeleteDataSourceInputTypeDef

delete_domain#

Deletes a Amazon DataZone domain.

Type annotations and code completion for boto3.client("datazone").delete_domain method. boto3 documentation

# delete_domain method definition

def delete_domain(
    self,
    *,
    identifier: str,
    clientToken: str = ...,
    skipDeletionCheck: bool = ...,
) -> DeleteDomainOutputTypeDef:  # (1)
    ...
  1. See DeleteDomainOutputTypeDef
# delete_domain method usage example with argument unpacking

kwargs: DeleteDomainInputTypeDef = {  # (1)
    "identifier": ...,
}

parent.delete_domain(**kwargs)
  1. See DeleteDomainInputTypeDef

delete_domain_unit#

Deletes a domain unit.

Type annotations and code completion for boto3.client("datazone").delete_domain_unit method. boto3 documentation

# delete_domain_unit method definition

def delete_domain_unit(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# delete_domain_unit method usage example with argument unpacking

kwargs: DeleteDomainUnitInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_domain_unit(**kwargs)
  1. See DeleteDomainUnitInputTypeDef

delete_environment#

Deletes an environment in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_environment method. boto3 documentation

# delete_environment method definition

def delete_environment(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_environment method usage example with argument unpacking

kwargs: DeleteEnvironmentInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_environment(**kwargs)
  1. See DeleteEnvironmentInputTypeDef

delete_environment_action#

Deletes an action for the environment, for example, deletes a console link for an analytics tool that is available in this environment.

Type annotations and code completion for boto3.client("datazone").delete_environment_action method. boto3 documentation

# delete_environment_action method definition

def delete_environment_action(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    identifier: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_environment_action method usage example with argument unpacking

kwargs: DeleteEnvironmentActionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "identifier": ...,
}

parent.delete_environment_action(**kwargs)
  1. See DeleteEnvironmentActionInputTypeDef

delete_environment_blueprint_configuration#

Deletes the blueprint configuration in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_environment_blueprint_configuration method. boto3 documentation

# delete_environment_blueprint_configuration method definition

def delete_environment_blueprint_configuration(
    self,
    *,
    domainIdentifier: str,
    environmentBlueprintIdentifier: str,
) -> Dict[str, Any]:
    ...
# delete_environment_blueprint_configuration method usage example with argument unpacking

kwargs: DeleteEnvironmentBlueprintConfigurationInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentBlueprintIdentifier": ...,
}

parent.delete_environment_blueprint_configuration(**kwargs)
  1. See DeleteEnvironmentBlueprintConfigurationInputTypeDef

delete_environment_profile#

Deletes an environment profile in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_environment_profile method. boto3 documentation

# delete_environment_profile method definition

def delete_environment_profile(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_environment_profile method usage example with argument unpacking

kwargs: DeleteEnvironmentProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_environment_profile(**kwargs)
  1. See DeleteEnvironmentProfileInputTypeDef

delete_form_type#

Delets and metadata form type in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_form_type method. boto3 documentation

# delete_form_type method definition

def delete_form_type(
    self,
    *,
    domainIdentifier: str,
    formTypeIdentifier: str,
) -> Dict[str, Any]:
    ...
# delete_form_type method usage example with argument unpacking

kwargs: DeleteFormTypeInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "formTypeIdentifier": ...,
}

parent.delete_form_type(**kwargs)
  1. See DeleteFormTypeInputTypeDef

delete_glossary#

Deletes a business glossary in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_glossary method. boto3 documentation

# delete_glossary method definition

def delete_glossary(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# delete_glossary method usage example with argument unpacking

kwargs: DeleteGlossaryInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_glossary(**kwargs)
  1. See DeleteGlossaryInputTypeDef

delete_glossary_term#

Deletes a business glossary term in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_glossary_term method. boto3 documentation

# delete_glossary_term method definition

def delete_glossary_term(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# delete_glossary_term method usage example with argument unpacking

kwargs: DeleteGlossaryTermInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_glossary_term(**kwargs)
  1. See DeleteGlossaryTermInputTypeDef

delete_listing#

Deletes a listing (a record of an asset at a given time).

Type annotations and code completion for boto3.client("datazone").delete_listing method. boto3 documentation

# delete_listing method definition

def delete_listing(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# delete_listing method usage example with argument unpacking

kwargs: DeleteListingInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_listing(**kwargs)
  1. See DeleteListingInputTypeDef

delete_project#

Deletes a project in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_project method. boto3 documentation

# delete_project method definition

def delete_project(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    skipDeletionCheck: bool = ...,
) -> Dict[str, Any]:
    ...
# delete_project method usage example with argument unpacking

kwargs: DeleteProjectInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_project(**kwargs)
  1. See DeleteProjectInputTypeDef

delete_project_membership#

Deletes project membership in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_project_membership method. boto3 documentation

# delete_project_membership method definition

def delete_project_membership(
    self,
    *,
    domainIdentifier: str,
    member: MemberTypeDef,  # (1)
    projectIdentifier: str,
) -> Dict[str, Any]:
    ...
  1. See MemberTypeDef
# delete_project_membership method usage example with argument unpacking

kwargs: DeleteProjectMembershipInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "member": ...,
    "projectIdentifier": ...,
}

parent.delete_project_membership(**kwargs)
  1. See DeleteProjectMembershipInputTypeDef

delete_project_profile#

Deletes a project profile.

Type annotations and code completion for boto3.client("datazone").delete_project_profile method. boto3 documentation

# delete_project_profile method definition

def delete_project_profile(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# delete_project_profile method usage example with argument unpacking

kwargs: DeleteProjectProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_project_profile(**kwargs)
  1. See DeleteProjectProfileInputTypeDef

delete_rule#

Deletes a rule in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_rule method. boto3 documentation

# delete_rule method definition

def delete_rule(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> Dict[str, Any]:
    ...
# delete_rule method usage example with argument unpacking

kwargs: DeleteRuleInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_rule(**kwargs)
  1. See DeleteRuleInputTypeDef

delete_subscription_grant#

Deletes and subscription grant in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_subscription_grant method. boto3 documentation

# delete_subscription_grant method definition

def delete_subscription_grant(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> DeleteSubscriptionGrantOutputTypeDef:  # (1)
    ...
  1. See DeleteSubscriptionGrantOutputTypeDef
# delete_subscription_grant method usage example with argument unpacking

kwargs: DeleteSubscriptionGrantInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_subscription_grant(**kwargs)
  1. See DeleteSubscriptionGrantInputTypeDef

delete_subscription_request#

Deletes a subscription request in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_subscription_request method. boto3 documentation

# delete_subscription_request method definition

def delete_subscription_request(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_subscription_request method usage example with argument unpacking

kwargs: DeleteSubscriptionRequestInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.delete_subscription_request(**kwargs)
  1. See DeleteSubscriptionRequestInputTypeDef

delete_subscription_target#

Deletes a subscription target in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").delete_subscription_target method. boto3 documentation

# delete_subscription_target method definition

def delete_subscription_target(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    identifier: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_subscription_target method usage example with argument unpacking

kwargs: DeleteSubscriptionTargetInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "identifier": ...,
}

parent.delete_subscription_target(**kwargs)
  1. See DeleteSubscriptionTargetInputTypeDef

delete_time_series_data_points#

Deletes the specified time series form for the specified asset.

Type annotations and code completion for boto3.client("datazone").delete_time_series_data_points method. boto3 documentation

# delete_time_series_data_points method definition

def delete_time_series_data_points(
    self,
    *,
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: TimeSeriesEntityTypeType,  # (1)
    formName: str,
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...
  1. See TimeSeriesEntityTypeType
# delete_time_series_data_points method usage example with argument unpacking

kwargs: DeleteTimeSeriesDataPointsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
    "formName": ...,
}

parent.delete_time_series_data_points(**kwargs)
  1. See DeleteTimeSeriesDataPointsInputTypeDef

disassociate_environment_role#

Disassociates the environment role in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").disassociate_environment_role method. boto3 documentation

# disassociate_environment_role method definition

def disassociate_environment_role(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    environmentRoleArn: str,
) -> Dict[str, Any]:
    ...
# disassociate_environment_role method usage example with argument unpacking

kwargs: DisassociateEnvironmentRoleInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "environmentRoleArn": ...,
}

parent.disassociate_environment_role(**kwargs)
  1. See DisassociateEnvironmentRoleInputTypeDef

get_asset#

Gets an Amazon DataZone asset.

Type annotations and code completion for boto3.client("datazone").get_asset method. boto3 documentation

# get_asset method definition

def get_asset(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    revision: str = ...,
) -> GetAssetOutputTypeDef:  # (1)
    ...
  1. See GetAssetOutputTypeDef
# get_asset method usage example with argument unpacking

kwargs: GetAssetInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_asset(**kwargs)
  1. See GetAssetInputTypeDef

get_asset_filter#

Gets an asset filter.

Type annotations and code completion for boto3.client("datazone").get_asset_filter method. boto3 documentation

# get_asset_filter method definition

def get_asset_filter(
    self,
    *,
    assetIdentifier: str,
    domainIdentifier: str,
    identifier: str,
) -> GetAssetFilterOutputTypeDef:  # (1)
    ...
  1. See GetAssetFilterOutputTypeDef
# get_asset_filter method usage example with argument unpacking

kwargs: GetAssetFilterInputTypeDef = {  # (1)
    "assetIdentifier": ...,
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_asset_filter(**kwargs)
  1. See GetAssetFilterInputTypeDef

get_asset_type#

Gets an Amazon DataZone asset type.

Type annotations and code completion for boto3.client("datazone").get_asset_type method. boto3 documentation

# get_asset_type method definition

def get_asset_type(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    revision: str = ...,
) -> GetAssetTypeOutputTypeDef:  # (1)
    ...
  1. See GetAssetTypeOutputTypeDef
# get_asset_type method usage example with argument unpacking

kwargs: GetAssetTypeInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_asset_type(**kwargs)
  1. See GetAssetTypeInputTypeDef

get_connection#

Gets a connection.

Type annotations and code completion for boto3.client("datazone").get_connection method. boto3 documentation

# get_connection method definition

def get_connection(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    withSecret: bool = ...,
) -> GetConnectionOutputTypeDef:  # (1)
    ...
  1. See GetConnectionOutputTypeDef
# get_connection method usage example with argument unpacking

kwargs: GetConnectionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_connection(**kwargs)
  1. See GetConnectionInputTypeDef

get_data_product#

Gets the data product.

Type annotations and code completion for boto3.client("datazone").get_data_product method. boto3 documentation

# get_data_product method definition

def get_data_product(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    revision: str = ...,
) -> GetDataProductOutputTypeDef:  # (1)
    ...
  1. See GetDataProductOutputTypeDef
# get_data_product method usage example with argument unpacking

kwargs: GetDataProductInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_data_product(**kwargs)
  1. See GetDataProductInputTypeDef

get_data_source#

Gets an Amazon DataZone data source.

Type annotations and code completion for boto3.client("datazone").get_data_source method. boto3 documentation

# get_data_source method definition

def get_data_source(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetDataSourceOutputTypeDef:  # (1)
    ...
  1. See GetDataSourceOutputTypeDef
# get_data_source method usage example with argument unpacking

kwargs: GetDataSourceInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_data_source(**kwargs)
  1. See GetDataSourceInputTypeDef

get_data_source_run#

Gets an Amazon DataZone data source run.

Type annotations and code completion for boto3.client("datazone").get_data_source_run method. boto3 documentation

# get_data_source_run method definition

def get_data_source_run(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetDataSourceRunOutputTypeDef:  # (1)
    ...
  1. See GetDataSourceRunOutputTypeDef
# get_data_source_run method usage example with argument unpacking

kwargs: GetDataSourceRunInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_data_source_run(**kwargs)
  1. See GetDataSourceRunInputTypeDef

get_domain#

Gets an Amazon DataZone domain.

Type annotations and code completion for boto3.client("datazone").get_domain method. boto3 documentation

# get_domain method definition

def get_domain(
    self,
    *,
    identifier: str,
) -> GetDomainOutputTypeDef:  # (1)
    ...
  1. See GetDomainOutputTypeDef
# get_domain method usage example with argument unpacking

kwargs: GetDomainInputTypeDef = {  # (1)
    "identifier": ...,
}

parent.get_domain(**kwargs)
  1. See GetDomainInputTypeDef

get_domain_unit#

Gets the details of the specified domain unit.

Type annotations and code completion for boto3.client("datazone").get_domain_unit method. boto3 documentation

# get_domain_unit method definition

def get_domain_unit(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetDomainUnitOutputTypeDef:  # (1)
    ...
  1. See GetDomainUnitOutputTypeDef
# get_domain_unit method usage example with argument unpacking

kwargs: GetDomainUnitInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_domain_unit(**kwargs)
  1. See GetDomainUnitInputTypeDef

get_environment#

Gets an Amazon DataZone environment.

Type annotations and code completion for boto3.client("datazone").get_environment method. boto3 documentation

# get_environment method definition

def get_environment(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetEnvironmentOutputTypeDef:  # (1)
    ...
  1. See GetEnvironmentOutputTypeDef
# get_environment method usage example with argument unpacking

kwargs: GetEnvironmentInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_environment(**kwargs)
  1. See GetEnvironmentInputTypeDef

get_environment_action#

Gets the specified environment action.

Type annotations and code completion for boto3.client("datazone").get_environment_action method. boto3 documentation

# get_environment_action method definition

def get_environment_action(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    identifier: str,
) -> GetEnvironmentActionOutputTypeDef:  # (1)
    ...
  1. See GetEnvironmentActionOutputTypeDef
# get_environment_action method usage example with argument unpacking

kwargs: GetEnvironmentActionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "identifier": ...,
}

parent.get_environment_action(**kwargs)
  1. See GetEnvironmentActionInputTypeDef

get_environment_blueprint#

Gets an Amazon DataZone blueprint.

Type annotations and code completion for boto3.client("datazone").get_environment_blueprint method. boto3 documentation

# get_environment_blueprint method definition

def get_environment_blueprint(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetEnvironmentBlueprintOutputTypeDef:  # (1)
    ...
  1. See GetEnvironmentBlueprintOutputTypeDef
# get_environment_blueprint method usage example with argument unpacking

kwargs: GetEnvironmentBlueprintInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_environment_blueprint(**kwargs)
  1. See GetEnvironmentBlueprintInputTypeDef

get_environment_blueprint_configuration#

Gets the blueprint configuration in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_environment_blueprint_configuration method. boto3 documentation

# get_environment_blueprint_configuration method definition

def get_environment_blueprint_configuration(
    self,
    *,
    domainIdentifier: str,
    environmentBlueprintIdentifier: str,
) -> GetEnvironmentBlueprintConfigurationOutputTypeDef:  # (1)
    ...
  1. See GetEnvironmentBlueprintConfigurationOutputTypeDef
# get_environment_blueprint_configuration method usage example with argument unpacking

kwargs: GetEnvironmentBlueprintConfigurationInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentBlueprintIdentifier": ...,
}

parent.get_environment_blueprint_configuration(**kwargs)
  1. See GetEnvironmentBlueprintConfigurationInputTypeDef

get_environment_credentials#

Gets the credentials of an environment in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_environment_credentials method. boto3 documentation

# get_environment_credentials method definition

def get_environment_credentials(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
) -> GetEnvironmentCredentialsOutputTypeDef:  # (1)
    ...
  1. See GetEnvironmentCredentialsOutputTypeDef
# get_environment_credentials method usage example with argument unpacking

kwargs: GetEnvironmentCredentialsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
}

parent.get_environment_credentials(**kwargs)
  1. See GetEnvironmentCredentialsInputTypeDef

get_environment_profile#

Gets an evinronment profile in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_environment_profile method. boto3 documentation

# get_environment_profile method definition

def get_environment_profile(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetEnvironmentProfileOutputTypeDef:  # (1)
    ...
  1. See GetEnvironmentProfileOutputTypeDef
# get_environment_profile method usage example with argument unpacking

kwargs: GetEnvironmentProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_environment_profile(**kwargs)
  1. See GetEnvironmentProfileInputTypeDef

get_form_type#

Gets a metadata form type in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_form_type method. boto3 documentation

# get_form_type method definition

def get_form_type(
    self,
    *,
    domainIdentifier: str,
    formTypeIdentifier: str,
    revision: str = ...,
) -> GetFormTypeOutputTypeDef:  # (1)
    ...
  1. See GetFormTypeOutputTypeDef
# get_form_type method usage example with argument unpacking

kwargs: GetFormTypeInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "formTypeIdentifier": ...,
}

parent.get_form_type(**kwargs)
  1. See GetFormTypeInputTypeDef

get_glossary#

Gets a business glossary in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_glossary method. boto3 documentation

# get_glossary method definition

def get_glossary(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetGlossaryOutputTypeDef:  # (1)
    ...
  1. See GetGlossaryOutputTypeDef
# get_glossary method usage example with argument unpacking

kwargs: GetGlossaryInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_glossary(**kwargs)
  1. See GetGlossaryInputTypeDef

get_glossary_term#

Gets a business glossary term in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_glossary_term method. boto3 documentation

# get_glossary_term method definition

def get_glossary_term(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetGlossaryTermOutputTypeDef:  # (1)
    ...
  1. See GetGlossaryTermOutputTypeDef
# get_glossary_term method usage example with argument unpacking

kwargs: GetGlossaryTermInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_glossary_term(**kwargs)
  1. See GetGlossaryTermInputTypeDef

get_group_profile#

Gets a group profile in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_group_profile method. boto3 documentation

# get_group_profile method definition

def get_group_profile(
    self,
    *,
    domainIdentifier: str,
    groupIdentifier: str,
) -> GetGroupProfileOutputTypeDef:  # (1)
    ...
  1. See GetGroupProfileOutputTypeDef
# get_group_profile method usage example with argument unpacking

kwargs: GetGroupProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "groupIdentifier": ...,
}

parent.get_group_profile(**kwargs)
  1. See GetGroupProfileInputTypeDef

get_iam_portal_login_url#

Gets the data portal URL for the specified Amazon DataZone domain.

Type annotations and code completion for boto3.client("datazone").get_iam_portal_login_url method. boto3 documentation

# get_iam_portal_login_url method definition

def get_iam_portal_login_url(
    self,
    *,
    domainIdentifier: str,
) -> GetIamPortalLoginUrlOutputTypeDef:  # (1)
    ...
  1. See GetIamPortalLoginUrlOutputTypeDef
# get_iam_portal_login_url method usage example with argument unpacking

kwargs: GetIamPortalLoginUrlInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.get_iam_portal_login_url(**kwargs)
  1. See GetIamPortalLoginUrlInputTypeDef

get_job_run#

The details of the job run.

Type annotations and code completion for boto3.client("datazone").get_job_run method. boto3 documentation

# get_job_run method definition

def get_job_run(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetJobRunOutputTypeDef:  # (1)
    ...
  1. See GetJobRunOutputTypeDef
# get_job_run method usage example with argument unpacking

kwargs: GetJobRunInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_job_run(**kwargs)
  1. See GetJobRunInputTypeDef

get_lineage_event#

Describes the lineage event.

Type annotations and code completion for boto3.client("datazone").get_lineage_event method. boto3 documentation

# get_lineage_event method definition

def get_lineage_event(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetLineageEventOutputTypeDef:  # (1)
    ...
  1. See GetLineageEventOutputTypeDef
# get_lineage_event method usage example with argument unpacking

kwargs: GetLineageEventInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_lineage_event(**kwargs)
  1. See GetLineageEventInputTypeDef

get_lineage_node#

Gets the data lineage node.

Type annotations and code completion for boto3.client("datazone").get_lineage_node method. boto3 documentation

# get_lineage_node method definition

def get_lineage_node(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    eventTimestamp: TimestampTypeDef = ...,
) -> GetLineageNodeOutputTypeDef:  # (1)
    ...
  1. See GetLineageNodeOutputTypeDef
# get_lineage_node method usage example with argument unpacking

kwargs: GetLineageNodeInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_lineage_node(**kwargs)
  1. See GetLineageNodeInputTypeDef

get_listing#

Gets a listing (a record of an asset at a given time).

Type annotations and code completion for boto3.client("datazone").get_listing method. boto3 documentation

# get_listing method definition

def get_listing(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    listingRevision: str = ...,
) -> GetListingOutputTypeDef:  # (1)
    ...
  1. See GetListingOutputTypeDef
# get_listing method usage example with argument unpacking

kwargs: GetListingInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_listing(**kwargs)
  1. See GetListingInputTypeDef

get_metadata_generation_run#

Gets a metadata generation run in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_metadata_generation_run method. boto3 documentation

# get_metadata_generation_run method definition

def get_metadata_generation_run(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetMetadataGenerationRunOutputTypeDef:  # (1)
    ...
  1. See GetMetadataGenerationRunOutputTypeDef
# get_metadata_generation_run method usage example with argument unpacking

kwargs: GetMetadataGenerationRunInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_metadata_generation_run(**kwargs)
  1. See GetMetadataGenerationRunInputTypeDef

get_project#

Gets a project in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_project method. boto3 documentation

# get_project method definition

def get_project(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetProjectOutputTypeDef:  # (1)
    ...
  1. See GetProjectOutputTypeDef
# get_project method usage example with argument unpacking

kwargs: GetProjectInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_project(**kwargs)
  1. See GetProjectInputTypeDef

get_project_profile#

The details of the project profile.

Type annotations and code completion for boto3.client("datazone").get_project_profile method. boto3 documentation

# get_project_profile method definition

def get_project_profile(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetProjectProfileOutputTypeDef:  # (1)
    ...
  1. See GetProjectProfileOutputTypeDef
# get_project_profile method usage example with argument unpacking

kwargs: GetProjectProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_project_profile(**kwargs)
  1. See GetProjectProfileInputTypeDef

get_rule#

Gets the details of a rule in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_rule method. boto3 documentation

# get_rule method definition

def get_rule(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    revision: str = ...,
) -> GetRuleOutputTypeDef:  # (1)
    ...
  1. See GetRuleOutputTypeDef
# get_rule method usage example with argument unpacking

kwargs: GetRuleInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_rule(**kwargs)
  1. See GetRuleInputTypeDef

get_subscription#

Gets a subscription in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_subscription method. boto3 documentation

# get_subscription method definition

def get_subscription(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetSubscriptionOutputTypeDef:  # (1)
    ...
  1. See GetSubscriptionOutputTypeDef
# get_subscription method usage example with argument unpacking

kwargs: GetSubscriptionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_subscription(**kwargs)
  1. See GetSubscriptionInputTypeDef

get_subscription_grant#

Gets the subscription grant in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_subscription_grant method. boto3 documentation

# get_subscription_grant method definition

def get_subscription_grant(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetSubscriptionGrantOutputTypeDef:  # (1)
    ...
  1. See GetSubscriptionGrantOutputTypeDef
# get_subscription_grant method usage example with argument unpacking

kwargs: GetSubscriptionGrantInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_subscription_grant(**kwargs)
  1. See GetSubscriptionGrantInputTypeDef

get_subscription_request_details#

Gets the details of the specified subscription request.

Type annotations and code completion for boto3.client("datazone").get_subscription_request_details method. boto3 documentation

# get_subscription_request_details method definition

def get_subscription_request_details(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
) -> GetSubscriptionRequestDetailsOutputTypeDef:  # (1)
    ...
  1. See GetSubscriptionRequestDetailsOutputTypeDef
# get_subscription_request_details method usage example with argument unpacking

kwargs: GetSubscriptionRequestDetailsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.get_subscription_request_details(**kwargs)
  1. See GetSubscriptionRequestDetailsInputTypeDef

get_subscription_target#

Gets the subscription target in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_subscription_target method. boto3 documentation

# get_subscription_target method definition

def get_subscription_target(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    identifier: str,
) -> GetSubscriptionTargetOutputTypeDef:  # (1)
    ...
  1. See GetSubscriptionTargetOutputTypeDef
# get_subscription_target method usage example with argument unpacking

kwargs: GetSubscriptionTargetInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "identifier": ...,
}

parent.get_subscription_target(**kwargs)
  1. See GetSubscriptionTargetInputTypeDef

get_time_series_data_point#

Gets the existing data point for the asset.

Type annotations and code completion for boto3.client("datazone").get_time_series_data_point method. boto3 documentation

# get_time_series_data_point method definition

def get_time_series_data_point(
    self,
    *,
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: TimeSeriesEntityTypeType,  # (1)
    formName: str,
    identifier: str,
) -> GetTimeSeriesDataPointOutputTypeDef:  # (2)
    ...
  1. See TimeSeriesEntityTypeType
  2. See GetTimeSeriesDataPointOutputTypeDef
# get_time_series_data_point method usage example with argument unpacking

kwargs: GetTimeSeriesDataPointInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
    "formName": ...,
    "identifier": ...,
}

parent.get_time_series_data_point(**kwargs)
  1. See GetTimeSeriesDataPointInputTypeDef

get_user_profile#

Gets a user profile in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").get_user_profile method. boto3 documentation

# get_user_profile method definition

def get_user_profile(
    self,
    *,
    domainIdentifier: str,
    userIdentifier: str,
    type: UserProfileTypeType = ...,  # (1)
) -> GetUserProfileOutputTypeDef:  # (2)
    ...
  1. See UserProfileTypeType
  2. See GetUserProfileOutputTypeDef
# get_user_profile method usage example with argument unpacking

kwargs: GetUserProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "userIdentifier": ...,
}

parent.get_user_profile(**kwargs)
  1. See GetUserProfileInputTypeDef

list_asset_filters#

Lists asset filters.

Type annotations and code completion for boto3.client("datazone").list_asset_filters method. boto3 documentation

# list_asset_filters method definition

def list_asset_filters(
    self,
    *,
    assetIdentifier: str,
    domainIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
    status: FilterStatusType = ...,  # (1)
) -> ListAssetFiltersOutputTypeDef:  # (2)
    ...
  1. See FilterStatusType
  2. See ListAssetFiltersOutputTypeDef
# list_asset_filters method usage example with argument unpacking

kwargs: ListAssetFiltersInputTypeDef = {  # (1)
    "assetIdentifier": ...,
    "domainIdentifier": ...,
}

parent.list_asset_filters(**kwargs)
  1. See ListAssetFiltersInputTypeDef

list_asset_revisions#

Lists the revisions for the asset.

Type annotations and code completion for boto3.client("datazone").list_asset_revisions method. boto3 documentation

# list_asset_revisions method definition

def list_asset_revisions(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListAssetRevisionsOutputTypeDef:  # (1)
    ...
  1. See ListAssetRevisionsOutputTypeDef
# list_asset_revisions method usage example with argument unpacking

kwargs: ListAssetRevisionsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.list_asset_revisions(**kwargs)
  1. See ListAssetRevisionsInputTypeDef

list_connections#

Lists connections.

Type annotations and code completion for boto3.client("datazone").list_connections method. boto3 documentation

# list_connections method definition

def list_connections(
    self,
    *,
    domainIdentifier: str,
    projectIdentifier: str,
    environmentIdentifier: str = ...,
    maxResults: int = ...,
    name: str = ...,
    nextToken: str = ...,
    sortBy: SortFieldConnectionType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
    type: ConnectionTypeType = ...,  # (3)
) -> ListConnectionsOutputTypeDef:  # (4)
    ...
  1. See SortFieldConnectionType
  2. See SortOrderType
  3. See ConnectionTypeType
  4. See ListConnectionsOutputTypeDef
# list_connections method usage example with argument unpacking

kwargs: ListConnectionsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "projectIdentifier": ...,
}

parent.list_connections(**kwargs)
  1. See ListConnectionsInputTypeDef

list_data_product_revisions#

Lists data product revisions.

Type annotations and code completion for boto3.client("datazone").list_data_product_revisions method. boto3 documentation

# list_data_product_revisions method definition

def list_data_product_revisions(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListDataProductRevisionsOutputTypeDef:  # (1)
    ...
  1. See ListDataProductRevisionsOutputTypeDef
# list_data_product_revisions method usage example with argument unpacking

kwargs: ListDataProductRevisionsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.list_data_product_revisions(**kwargs)
  1. See ListDataProductRevisionsInputTypeDef

list_data_source_run_activities#

Lists data source run activities.

Type annotations and code completion for boto3.client("datazone").list_data_source_run_activities method. boto3 documentation

# list_data_source_run_activities method definition

def list_data_source_run_activities(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
    status: DataAssetActivityStatusType = ...,  # (1)
) -> ListDataSourceRunActivitiesOutputTypeDef:  # (2)
    ...
  1. See DataAssetActivityStatusType
  2. See ListDataSourceRunActivitiesOutputTypeDef
# list_data_source_run_activities method usage example with argument unpacking

kwargs: ListDataSourceRunActivitiesInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.list_data_source_run_activities(**kwargs)
  1. See ListDataSourceRunActivitiesInputTypeDef

list_data_source_runs#

Lists data source runs in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").list_data_source_runs method. boto3 documentation

# list_data_source_runs method definition

def list_data_source_runs(
    self,
    *,
    dataSourceIdentifier: str,
    domainIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
    status: DataSourceRunStatusType = ...,  # (1)
) -> ListDataSourceRunsOutputTypeDef:  # (2)
    ...
  1. See DataSourceRunStatusType
  2. See ListDataSourceRunsOutputTypeDef
# list_data_source_runs method usage example with argument unpacking

kwargs: ListDataSourceRunsInputTypeDef = {  # (1)
    "dataSourceIdentifier": ...,
    "domainIdentifier": ...,
}

parent.list_data_source_runs(**kwargs)
  1. See ListDataSourceRunsInputTypeDef

list_data_sources#

Lists data sources in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").list_data_sources method. boto3 documentation

# list_data_sources method definition

def list_data_sources(
    self,
    *,
    domainIdentifier: str,
    projectIdentifier: str,
    connectionIdentifier: str = ...,
    environmentIdentifier: str = ...,
    maxResults: int = ...,
    name: str = ...,
    nextToken: str = ...,
    status: DataSourceStatusType = ...,  # (1)
    type: str = ...,
) -> ListDataSourcesOutputTypeDef:  # (2)
    ...
  1. See DataSourceStatusType
  2. See ListDataSourcesOutputTypeDef
# list_data_sources method usage example with argument unpacking

kwargs: ListDataSourcesInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "projectIdentifier": ...,
}

parent.list_data_sources(**kwargs)
  1. See ListDataSourcesInputTypeDef

list_domain_units_for_parent#

Lists child domain units for the specified parent domain unit.

Type annotations and code completion for boto3.client("datazone").list_domain_units_for_parent method. boto3 documentation

# list_domain_units_for_parent method definition

def list_domain_units_for_parent(
    self,
    *,
    domainIdentifier: str,
    parentDomainUnitIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListDomainUnitsForParentOutputTypeDef:  # (1)
    ...
  1. See ListDomainUnitsForParentOutputTypeDef
# list_domain_units_for_parent method usage example with argument unpacking

kwargs: ListDomainUnitsForParentInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "parentDomainUnitIdentifier": ...,
}

parent.list_domain_units_for_parent(**kwargs)
  1. See ListDomainUnitsForParentInputTypeDef

list_domains#

Lists Amazon DataZone domains.

Type annotations and code completion for boto3.client("datazone").list_domains method. boto3 documentation

# list_domains method definition

def list_domains(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
    status: DomainStatusType = ...,  # (1)
) -> ListDomainsOutputTypeDef:  # (2)
    ...
  1. See DomainStatusType
  2. See ListDomainsOutputTypeDef
# list_domains method usage example with argument unpacking

kwargs: ListDomainsInputTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_domains(**kwargs)
  1. See ListDomainsInputTypeDef

list_entity_owners#

Lists the entity (domain units) owners.

Type annotations and code completion for boto3.client("datazone").list_entity_owners method. boto3 documentation

# list_entity_owners method definition

def list_entity_owners(
    self,
    *,
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: DataZoneEntityTypeType,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListEntityOwnersOutputTypeDef:  # (2)
    ...
  1. See DataZoneEntityTypeType
  2. See ListEntityOwnersOutputTypeDef
# list_entity_owners method usage example with argument unpacking

kwargs: ListEntityOwnersInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
}

parent.list_entity_owners(**kwargs)
  1. See ListEntityOwnersInputTypeDef

list_environment_actions#

Lists existing environment actions.

Type annotations and code completion for boto3.client("datazone").list_environment_actions method. boto3 documentation

# list_environment_actions method definition

def list_environment_actions(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListEnvironmentActionsOutputTypeDef:  # (1)
    ...
  1. See ListEnvironmentActionsOutputTypeDef
# list_environment_actions method usage example with argument unpacking

kwargs: ListEnvironmentActionsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
}

parent.list_environment_actions(**kwargs)
  1. See ListEnvironmentActionsInputTypeDef

list_environment_blueprint_configurations#

Lists blueprint configurations for a Amazon DataZone environment.

Type annotations and code completion for boto3.client("datazone").list_environment_blueprint_configurations method. boto3 documentation

# list_environment_blueprint_configurations method definition

def list_environment_blueprint_configurations(
    self,
    *,
    domainIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListEnvironmentBlueprintConfigurationsOutputTypeDef:  # (1)
    ...
  1. See ListEnvironmentBlueprintConfigurationsOutputTypeDef
# list_environment_blueprint_configurations method usage example with argument unpacking

kwargs: ListEnvironmentBlueprintConfigurationsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_environment_blueprint_configurations(**kwargs)
  1. See ListEnvironmentBlueprintConfigurationsInputTypeDef

list_environment_blueprints#

Lists blueprints in an Amazon DataZone environment.

Type annotations and code completion for boto3.client("datazone").list_environment_blueprints method. boto3 documentation

# list_environment_blueprints method definition

def list_environment_blueprints(
    self,
    *,
    domainIdentifier: str,
    managed: bool = ...,
    maxResults: int = ...,
    name: str = ...,
    nextToken: str = ...,
) -> ListEnvironmentBlueprintsOutputTypeDef:  # (1)
    ...
  1. See ListEnvironmentBlueprintsOutputTypeDef
# list_environment_blueprints method usage example with argument unpacking

kwargs: ListEnvironmentBlueprintsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_environment_blueprints(**kwargs)
  1. See ListEnvironmentBlueprintsInputTypeDef

list_environment_profiles#

Lists Amazon DataZone environment profiles.

Type annotations and code completion for boto3.client("datazone").list_environment_profiles method. boto3 documentation

# list_environment_profiles method definition

def list_environment_profiles(
    self,
    *,
    domainIdentifier: str,
    awsAccountId: str = ...,
    awsAccountRegion: str = ...,
    environmentBlueprintIdentifier: str = ...,
    maxResults: int = ...,
    name: str = ...,
    nextToken: str = ...,
    projectIdentifier: str = ...,
) -> ListEnvironmentProfilesOutputTypeDef:  # (1)
    ...
  1. See ListEnvironmentProfilesOutputTypeDef
# list_environment_profiles method usage example with argument unpacking

kwargs: ListEnvironmentProfilesInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_environment_profiles(**kwargs)
  1. See ListEnvironmentProfilesInputTypeDef

list_environments#

Lists Amazon DataZone environments.

Type annotations and code completion for boto3.client("datazone").list_environments method. boto3 documentation

# list_environments method definition

def list_environments(
    self,
    *,
    domainIdentifier: str,
    projectIdentifier: str,
    awsAccountId: str = ...,
    awsAccountRegion: str = ...,
    environmentBlueprintIdentifier: str = ...,
    environmentProfileIdentifier: str = ...,
    maxResults: int = ...,
    name: str = ...,
    nextToken: str = ...,
    provider: str = ...,
    status: EnvironmentStatusType = ...,  # (1)
) -> ListEnvironmentsOutputTypeDef:  # (2)
    ...
  1. See EnvironmentStatusType
  2. See ListEnvironmentsOutputTypeDef
# list_environments method usage example with argument unpacking

kwargs: ListEnvironmentsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "projectIdentifier": ...,
}

parent.list_environments(**kwargs)
  1. See ListEnvironmentsInputTypeDef

list_job_runs#

Lists job runs.

Type annotations and code completion for boto3.client("datazone").list_job_runs method. boto3 documentation

# list_job_runs method definition

def list_job_runs(
    self,
    *,
    domainIdentifier: str,
    jobIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
    sortOrder: SortOrderType = ...,  # (1)
    status: JobRunStatusType = ...,  # (2)
) -> ListJobRunsOutputTypeDef:  # (3)
    ...
  1. See SortOrderType
  2. See JobRunStatusType
  3. See ListJobRunsOutputTypeDef
# list_job_runs method usage example with argument unpacking

kwargs: ListJobRunsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "jobIdentifier": ...,
}

parent.list_job_runs(**kwargs)
  1. See ListJobRunsInputTypeDef

list_lineage_events#

Lists lineage events.

Type annotations and code completion for boto3.client("datazone").list_lineage_events method. boto3 documentation

# list_lineage_events method definition

def list_lineage_events(
    self,
    *,
    domainIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
    processingStatus: LineageEventProcessingStatusType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
    timestampAfter: TimestampTypeDef = ...,
    timestampBefore: TimestampTypeDef = ...,
) -> ListLineageEventsOutputTypeDef:  # (3)
    ...
  1. See LineageEventProcessingStatusType
  2. See SortOrderType
  3. See ListLineageEventsOutputTypeDef
# list_lineage_events method usage example with argument unpacking

kwargs: ListLineageEventsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_lineage_events(**kwargs)
  1. See ListLineageEventsInputTypeDef

list_lineage_node_history#

Lists the history of the specified data lineage node.

Type annotations and code completion for boto3.client("datazone").list_lineage_node_history method. boto3 documentation

# list_lineage_node_history method definition

def list_lineage_node_history(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    direction: EdgeDirectionType = ...,  # (1)
    eventTimestampGTE: TimestampTypeDef = ...,
    eventTimestampLTE: TimestampTypeDef = ...,
    maxResults: int = ...,
    nextToken: str = ...,
    sortOrder: SortOrderType = ...,  # (2)
) -> ListLineageNodeHistoryOutputTypeDef:  # (3)
    ...
  1. See EdgeDirectionType
  2. See SortOrderType
  3. See ListLineageNodeHistoryOutputTypeDef
# list_lineage_node_history method usage example with argument unpacking

kwargs: ListLineageNodeHistoryInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.list_lineage_node_history(**kwargs)
  1. See ListLineageNodeHistoryInputTypeDef

list_metadata_generation_runs#

Lists all metadata generation runs.

Type annotations and code completion for boto3.client("datazone").list_metadata_generation_runs method. boto3 documentation

# list_metadata_generation_runs method definition

def list_metadata_generation_runs(
    self,
    *,
    domainIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
    status: MetadataGenerationRunStatusType = ...,  # (1)
    type: MetadataGenerationRunTypeType = ...,  # (2)
) -> ListMetadataGenerationRunsOutputTypeDef:  # (3)
    ...
  1. See MetadataGenerationRunStatusType
  2. See MetadataGenerationRunTypeType
  3. See ListMetadataGenerationRunsOutputTypeDef
# list_metadata_generation_runs method usage example with argument unpacking

kwargs: ListMetadataGenerationRunsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_metadata_generation_runs(**kwargs)
  1. See ListMetadataGenerationRunsInputTypeDef

list_notifications#

Lists all Amazon DataZone notifications.

Type annotations and code completion for boto3.client("datazone").list_notifications method. boto3 documentation

# list_notifications method definition

def list_notifications(
    self,
    *,
    domainIdentifier: str,
    type: NotificationTypeType,  # (1)
    afterTimestamp: TimestampTypeDef = ...,
    beforeTimestamp: TimestampTypeDef = ...,
    maxResults: int = ...,
    nextToken: str = ...,
    subjects: Sequence[str] = ...,
    taskStatus: TaskStatusType = ...,  # (2)
) -> ListNotificationsOutputTypeDef:  # (3)
    ...
  1. See NotificationTypeType
  2. See TaskStatusType
  3. See ListNotificationsOutputTypeDef
# list_notifications method usage example with argument unpacking

kwargs: ListNotificationsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "type": ...,
}

parent.list_notifications(**kwargs)
  1. See ListNotificationsInputTypeDef

list_policy_grants#

Lists policy grants.

Type annotations and code completion for boto3.client("datazone").list_policy_grants method. boto3 documentation

# list_policy_grants method definition

def list_policy_grants(
    self,
    *,
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: TargetEntityTypeType,  # (1)
    policyType: ManagedPolicyTypeType,  # (2)
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListPolicyGrantsOutputTypeDef:  # (3)
    ...
  1. See TargetEntityTypeType
  2. See ManagedPolicyTypeType
  3. See ListPolicyGrantsOutputTypeDef
# list_policy_grants method usage example with argument unpacking

kwargs: ListPolicyGrantsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
    "policyType": ...,
}

parent.list_policy_grants(**kwargs)
  1. See ListPolicyGrantsInputTypeDef

list_project_memberships#

Lists all members of the specified project.

Type annotations and code completion for boto3.client("datazone").list_project_memberships method. boto3 documentation

# list_project_memberships method definition

def list_project_memberships(
    self,
    *,
    domainIdentifier: str,
    projectIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
    sortBy: SortFieldProjectType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
) -> ListProjectMembershipsOutputTypeDef:  # (3)
    ...
  1. See SortFieldProjectType
  2. See SortOrderType
  3. See ListProjectMembershipsOutputTypeDef
# list_project_memberships method usage example with argument unpacking

kwargs: ListProjectMembershipsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "projectIdentifier": ...,
}

parent.list_project_memberships(**kwargs)
  1. See ListProjectMembershipsInputTypeDef

list_project_profiles#

Lists project profiles.

Type annotations and code completion for boto3.client("datazone").list_project_profiles method. boto3 documentation

# list_project_profiles method definition

def list_project_profiles(
    self,
    *,
    domainIdentifier: str,
    maxResults: int = ...,
    name: str = ...,
    nextToken: str = ...,
    sortBy: SortFieldProjectType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
) -> ListProjectProfilesOutputTypeDef:  # (3)
    ...
  1. See SortFieldProjectType
  2. See SortOrderType
  3. See ListProjectProfilesOutputTypeDef
# list_project_profiles method usage example with argument unpacking

kwargs: ListProjectProfilesInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_project_profiles(**kwargs)
  1. See ListProjectProfilesInputTypeDef

list_projects#

Lists Amazon DataZone projects.

Type annotations and code completion for boto3.client("datazone").list_projects method. boto3 documentation

# list_projects method definition

def list_projects(
    self,
    *,
    domainIdentifier: str,
    groupIdentifier: str = ...,
    maxResults: int = ...,
    name: str = ...,
    nextToken: str = ...,
    userIdentifier: str = ...,
) -> ListProjectsOutputTypeDef:  # (1)
    ...
  1. See ListProjectsOutputTypeDef
# list_projects method usage example with argument unpacking

kwargs: ListProjectsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_projects(**kwargs)
  1. See ListProjectsInputTypeDef

list_rules#

Lists existing rules.

Type annotations and code completion for boto3.client("datazone").list_rules method. boto3 documentation

# list_rules method definition

def list_rules(
    self,
    *,
    domainIdentifier: str,
    targetIdentifier: str,
    targetType: RuleTargetTypeType,  # (1)
    action: RuleActionType = ...,  # (2)
    assetTypes: Sequence[str] = ...,
    dataProduct: bool = ...,
    includeCascaded: bool = ...,
    maxResults: int = ...,
    nextToken: str = ...,
    projectIds: Sequence[str] = ...,
    ruleType: RuleTypeType = ...,  # (3)
) -> ListRulesOutputTypeDef:  # (4)
    ...
  1. See RuleTargetTypeType
  2. See RuleActionType
  3. See RuleTypeType
  4. See ListRulesOutputTypeDef
# list_rules method usage example with argument unpacking

kwargs: ListRulesInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "targetIdentifier": ...,
    "targetType": ...,
}

parent.list_rules(**kwargs)
  1. See ListRulesInputTypeDef

list_subscription_grants#

Lists subscription grants.

Type annotations and code completion for boto3.client("datazone").list_subscription_grants method. boto3 documentation

# list_subscription_grants method definition

def list_subscription_grants(
    self,
    *,
    domainIdentifier: str,
    environmentId: str = ...,
    maxResults: int = ...,
    nextToken: str = ...,
    owningProjectId: str = ...,
    sortBy: SortKeyType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
    subscribedListingId: str = ...,
    subscriptionId: str = ...,
    subscriptionTargetId: str = ...,
) -> ListSubscriptionGrantsOutputTypeDef:  # (3)
    ...
  1. See SortKeyType
  2. See SortOrderType
  3. See ListSubscriptionGrantsOutputTypeDef
# list_subscription_grants method usage example with argument unpacking

kwargs: ListSubscriptionGrantsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_subscription_grants(**kwargs)
  1. See ListSubscriptionGrantsInputTypeDef

list_subscription_requests#

Lists Amazon DataZone subscription requests.

Type annotations and code completion for boto3.client("datazone").list_subscription_requests method. boto3 documentation

# list_subscription_requests method definition

def list_subscription_requests(
    self,
    *,
    domainIdentifier: str,
    approverProjectId: str = ...,
    maxResults: int = ...,
    nextToken: str = ...,
    owningProjectId: str = ...,
    sortBy: SortKeyType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
    status: SubscriptionRequestStatusType = ...,  # (3)
    subscribedListingId: str = ...,
) -> ListSubscriptionRequestsOutputTypeDef:  # (4)
    ...
  1. See SortKeyType
  2. See SortOrderType
  3. See SubscriptionRequestStatusType
  4. See ListSubscriptionRequestsOutputTypeDef
# list_subscription_requests method usage example with argument unpacking

kwargs: ListSubscriptionRequestsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_subscription_requests(**kwargs)
  1. See ListSubscriptionRequestsInputTypeDef

list_subscription_targets#

Lists subscription targets in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").list_subscription_targets method. boto3 documentation

# list_subscription_targets method definition

def list_subscription_targets(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    maxResults: int = ...,
    nextToken: str = ...,
    sortBy: SortKeyType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
) -> ListSubscriptionTargetsOutputTypeDef:  # (3)
    ...
  1. See SortKeyType
  2. See SortOrderType
  3. See ListSubscriptionTargetsOutputTypeDef
# list_subscription_targets method usage example with argument unpacking

kwargs: ListSubscriptionTargetsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
}

parent.list_subscription_targets(**kwargs)
  1. See ListSubscriptionTargetsInputTypeDef

list_subscriptions#

Lists subscriptions in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").list_subscriptions method. boto3 documentation

# list_subscriptions method definition

def list_subscriptions(
    self,
    *,
    domainIdentifier: str,
    approverProjectId: str = ...,
    maxResults: int = ...,
    nextToken: str = ...,
    owningProjectId: str = ...,
    sortBy: SortKeyType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
    status: SubscriptionStatusType = ...,  # (3)
    subscribedListingId: str = ...,
    subscriptionRequestIdentifier: str = ...,
) -> ListSubscriptionsOutputTypeDef:  # (4)
    ...
  1. See SortKeyType
  2. See SortOrderType
  3. See SubscriptionStatusType
  4. See ListSubscriptionsOutputTypeDef
# list_subscriptions method usage example with argument unpacking

kwargs: ListSubscriptionsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.list_subscriptions(**kwargs)
  1. See ListSubscriptionsInputTypeDef

list_tags_for_resource#

Lists tags for the specified resource in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").list_tags_for_resource method. boto3 documentation

# list_tags_for_resource method definition

def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
# list_tags_for_resource method usage example with argument unpacking

kwargs: ListTagsForResourceRequestTypeDef = {  # (1)
    "resourceArn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestTypeDef

list_time_series_data_points#

Lists time series data points.

Type annotations and code completion for boto3.client("datazone").list_time_series_data_points method. boto3 documentation

# list_time_series_data_points method definition

def list_time_series_data_points(
    self,
    *,
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: TimeSeriesEntityTypeType,  # (1)
    formName: str,
    endedAt: TimestampTypeDef = ...,
    maxResults: int = ...,
    nextToken: str = ...,
    startedAt: TimestampTypeDef = ...,
) -> ListTimeSeriesDataPointsOutputTypeDef:  # (2)
    ...
  1. See TimeSeriesEntityTypeType
  2. See ListTimeSeriesDataPointsOutputTypeDef
# list_time_series_data_points method usage example with argument unpacking

kwargs: ListTimeSeriesDataPointsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
    "formName": ...,
}

parent.list_time_series_data_points(**kwargs)
  1. See ListTimeSeriesDataPointsInputTypeDef

post_lineage_event#

Posts a data lineage event.

Type annotations and code completion for boto3.client("datazone").post_lineage_event method. boto3 documentation

# post_lineage_event method definition

def post_lineage_event(
    self,
    *,
    domainIdentifier: str,
    event: BlobTypeDef,
    clientToken: str = ...,
) -> PostLineageEventOutputTypeDef:  # (1)
    ...
  1. See PostLineageEventOutputTypeDef
# post_lineage_event method usage example with argument unpacking

kwargs: PostLineageEventInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "event": ...,
}

parent.post_lineage_event(**kwargs)
  1. See PostLineageEventInputTypeDef

post_time_series_data_points#

Posts time series data points to Amazon DataZone for the specified asset.

Type annotations and code completion for boto3.client("datazone").post_time_series_data_points method. boto3 documentation

# post_time_series_data_points method definition

def post_time_series_data_points(
    self,
    *,
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: TimeSeriesEntityTypeType,  # (1)
    forms: Sequence[TimeSeriesDataPointFormInputTypeDef],  # (2)
    clientToken: str = ...,
) -> PostTimeSeriesDataPointsOutputTypeDef:  # (3)
    ...
  1. See TimeSeriesEntityTypeType
  2. See TimeSeriesDataPointFormInputTypeDef
  3. See PostTimeSeriesDataPointsOutputTypeDef
# post_time_series_data_points method usage example with argument unpacking

kwargs: PostTimeSeriesDataPointsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
    "forms": ...,
}

parent.post_time_series_data_points(**kwargs)
  1. See PostTimeSeriesDataPointsInputTypeDef

put_environment_blueprint_configuration#

Writes the configuration for the specified environment blueprint in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").put_environment_blueprint_configuration method. boto3 documentation

# put_environment_blueprint_configuration method definition

def put_environment_blueprint_configuration(
    self,
    *,
    domainIdentifier: str,
    enabledRegions: Sequence[str],
    environmentBlueprintIdentifier: str,
    environmentRolePermissionBoundary: str = ...,
    manageAccessRoleArn: str = ...,
    provisioningConfigurations: Sequence[ProvisioningConfigurationUnionTypeDef] = ...,  # (1)
    provisioningRoleArn: str = ...,
    regionalParameters: Mapping[str, Mapping[str, str]] = ...,
) -> PutEnvironmentBlueprintConfigurationOutputTypeDef:  # (2)
    ...
  1. See ProvisioningConfigurationTypeDef ProvisioningConfigurationOutputTypeDef
  2. See PutEnvironmentBlueprintConfigurationOutputTypeDef
# put_environment_blueprint_configuration method usage example with argument unpacking

kwargs: PutEnvironmentBlueprintConfigurationInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "enabledRegions": ...,
    "environmentBlueprintIdentifier": ...,
}

parent.put_environment_blueprint_configuration(**kwargs)
  1. See PutEnvironmentBlueprintConfigurationInputTypeDef

reject_predictions#

Rejects automatically generated business-friendly metadata for your Amazon DataZone assets.

Type annotations and code completion for boto3.client("datazone").reject_predictions method. boto3 documentation

# reject_predictions method definition

def reject_predictions(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    clientToken: str = ...,
    rejectChoices: Sequence[RejectChoiceTypeDef] = ...,  # (1)
    rejectRule: RejectRuleTypeDef = ...,  # (2)
    revision: str = ...,
) -> RejectPredictionsOutputTypeDef:  # (3)
    ...
  1. See RejectChoiceTypeDef
  2. See RejectRuleTypeDef
  3. See RejectPredictionsOutputTypeDef
# reject_predictions method usage example with argument unpacking

kwargs: RejectPredictionsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.reject_predictions(**kwargs)
  1. See RejectPredictionsInputTypeDef

reject_subscription_request#

Rejects the specified subscription request.

Type annotations and code completion for boto3.client("datazone").reject_subscription_request method. boto3 documentation

# reject_subscription_request method definition

def reject_subscription_request(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    decisionComment: str = ...,
) -> RejectSubscriptionRequestOutputTypeDef:  # (1)
    ...
  1. See RejectSubscriptionRequestOutputTypeDef
# reject_subscription_request method usage example with argument unpacking

kwargs: RejectSubscriptionRequestInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.reject_subscription_request(**kwargs)
  1. See RejectSubscriptionRequestInputTypeDef

remove_entity_owner#

Removes an owner from an entity.

Type annotations and code completion for boto3.client("datazone").remove_entity_owner method. boto3 documentation

# remove_entity_owner method definition

def remove_entity_owner(
    self,
    *,
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: DataZoneEntityTypeType,  # (1)
    owner: OwnerPropertiesTypeDef,  # (2)
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...
  1. See DataZoneEntityTypeType
  2. See OwnerPropertiesTypeDef
# remove_entity_owner method usage example with argument unpacking

kwargs: RemoveEntityOwnerInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
    "owner": ...,
}

parent.remove_entity_owner(**kwargs)
  1. See RemoveEntityOwnerInputTypeDef

remove_policy_grant#

Removes a policy grant.

Type annotations and code completion for boto3.client("datazone").remove_policy_grant method. boto3 documentation

# remove_policy_grant method definition

def remove_policy_grant(
    self,
    *,
    domainIdentifier: str,
    entityIdentifier: str,
    entityType: TargetEntityTypeType,  # (1)
    policyType: ManagedPolicyTypeType,  # (2)
    principal: PolicyGrantPrincipalUnionTypeDef,  # (3)
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...
  1. See TargetEntityTypeType
  2. See ManagedPolicyTypeType
  3. See PolicyGrantPrincipalTypeDef PolicyGrantPrincipalOutputTypeDef
# remove_policy_grant method usage example with argument unpacking

kwargs: RemovePolicyGrantInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "entityIdentifier": ...,
    "entityType": ...,
    "policyType": ...,
    "principal": ...,
}

parent.remove_policy_grant(**kwargs)
  1. See RemovePolicyGrantInputTypeDef

revoke_subscription#

Revokes a specified subscription in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").revoke_subscription method. boto3 documentation

# revoke_subscription method definition

def revoke_subscription(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    retainPermissions: bool = ...,
) -> RevokeSubscriptionOutputTypeDef:  # (1)
    ...
  1. See RevokeSubscriptionOutputTypeDef
# revoke_subscription method usage example with argument unpacking

kwargs: RevokeSubscriptionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.revoke_subscription(**kwargs)
  1. See RevokeSubscriptionInputTypeDef

Searches for assets in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").search method. boto3 documentation

# search method definition

def search(
    self,
    *,
    domainIdentifier: str,
    searchScope: InventorySearchScopeType,  # (1)
    additionalAttributes: Sequence[SearchOutputAdditionalAttributeType] = ...,  # (2)
    filters: FilterClauseTypeDef = ...,  # (3)
    maxResults: int = ...,
    nextToken: str = ...,
    owningProjectIdentifier: str = ...,
    searchIn: Sequence[SearchInItemTypeDef] = ...,  # (4)
    searchText: str = ...,
    sort: SearchSortTypeDef = ...,  # (5)
) -> SearchOutputTypeDef:  # (6)
    ...
  1. See InventorySearchScopeType
  2. See SearchOutputAdditionalAttributeType
  3. See FilterClauseTypeDef
  4. See SearchInItemTypeDef
  5. See SearchSortTypeDef
  6. See SearchOutputTypeDef
# search method usage example with argument unpacking

kwargs: SearchInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "searchScope": ...,
}

parent.search(**kwargs)
  1. See SearchInputTypeDef

search_group_profiles#

Searches group profiles in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").search_group_profiles method. boto3 documentation

# search_group_profiles method definition

def search_group_profiles(
    self,
    *,
    domainIdentifier: str,
    groupType: GroupSearchTypeType,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
    searchText: str = ...,
) -> SearchGroupProfilesOutputTypeDef:  # (2)
    ...
  1. See GroupSearchTypeType
  2. See SearchGroupProfilesOutputTypeDef
# search_group_profiles method usage example with argument unpacking

kwargs: SearchGroupProfilesInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "groupType": ...,
}

parent.search_group_profiles(**kwargs)
  1. See SearchGroupProfilesInputTypeDef

search_listings#

Searches listings (records of an asset at a given time) in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").search_listings method. boto3 documentation

# search_listings method definition

def search_listings(
    self,
    *,
    domainIdentifier: str,
    additionalAttributes: Sequence[SearchOutputAdditionalAttributeType] = ...,  # (1)
    filters: FilterClauseTypeDef = ...,  # (2)
    maxResults: int = ...,
    nextToken: str = ...,
    searchIn: Sequence[SearchInItemTypeDef] = ...,  # (3)
    searchText: str = ...,
    sort: SearchSortTypeDef = ...,  # (4)
) -> SearchListingsOutputTypeDef:  # (5)
    ...
  1. See SearchOutputAdditionalAttributeType
  2. See FilterClauseTypeDef
  3. See SearchInItemTypeDef
  4. See SearchSortTypeDef
  5. See SearchListingsOutputTypeDef
# search_listings method usage example with argument unpacking

kwargs: SearchListingsInputTypeDef = {  # (1)
    "domainIdentifier": ...,
}

parent.search_listings(**kwargs)
  1. See SearchListingsInputTypeDef

search_types#

Searches for types in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").search_types method. boto3 documentation

# search_types method definition

def search_types(
    self,
    *,
    domainIdentifier: str,
    managed: bool,
    searchScope: TypesSearchScopeType,  # (1)
    filters: FilterClauseTypeDef = ...,  # (2)
    maxResults: int = ...,
    nextToken: str = ...,
    searchIn: Sequence[SearchInItemTypeDef] = ...,  # (3)
    searchText: str = ...,
    sort: SearchSortTypeDef = ...,  # (4)
) -> SearchTypesOutputTypeDef:  # (5)
    ...
  1. See TypesSearchScopeType
  2. See FilterClauseTypeDef
  3. See SearchInItemTypeDef
  4. See SearchSortTypeDef
  5. See SearchTypesOutputTypeDef
# search_types method usage example with argument unpacking

kwargs: SearchTypesInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "managed": ...,
    "searchScope": ...,
}

parent.search_types(**kwargs)
  1. See SearchTypesInputTypeDef

search_user_profiles#

Searches user profiles in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").search_user_profiles method. boto3 documentation

# search_user_profiles method definition

def search_user_profiles(
    self,
    *,
    domainIdentifier: str,
    userType: UserSearchTypeType,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
    searchText: str = ...,
) -> SearchUserProfilesOutputTypeDef:  # (2)
    ...
  1. See UserSearchTypeType
  2. See SearchUserProfilesOutputTypeDef
# search_user_profiles method usage example with argument unpacking

kwargs: SearchUserProfilesInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "userType": ...,
}

parent.search_user_profiles(**kwargs)
  1. See SearchUserProfilesInputTypeDef

start_data_source_run#

Start the run of the specified data source in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").start_data_source_run method. boto3 documentation

# start_data_source_run method definition

def start_data_source_run(
    self,
    *,
    dataSourceIdentifier: str,
    domainIdentifier: str,
    clientToken: str = ...,
) -> StartDataSourceRunOutputTypeDef:  # (1)
    ...
  1. See StartDataSourceRunOutputTypeDef
# start_data_source_run method usage example with argument unpacking

kwargs: StartDataSourceRunInputTypeDef = {  # (1)
    "dataSourceIdentifier": ...,
    "domainIdentifier": ...,
}

parent.start_data_source_run(**kwargs)
  1. See StartDataSourceRunInputTypeDef

start_metadata_generation_run#

Starts the metadata generation run.

Type annotations and code completion for boto3.client("datazone").start_metadata_generation_run method. boto3 documentation

# start_metadata_generation_run method definition

def start_metadata_generation_run(
    self,
    *,
    domainIdentifier: str,
    owningProjectIdentifier: str,
    target: MetadataGenerationRunTargetTypeDef,  # (1)
    type: MetadataGenerationRunTypeType,  # (2)
    clientToken: str = ...,
) -> StartMetadataGenerationRunOutputTypeDef:  # (3)
    ...
  1. See MetadataGenerationRunTargetTypeDef
  2. See MetadataGenerationRunTypeType
  3. See StartMetadataGenerationRunOutputTypeDef
# start_metadata_generation_run method usage example with argument unpacking

kwargs: StartMetadataGenerationRunInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "owningProjectIdentifier": ...,
    "target": ...,
    "type": ...,
}

parent.start_metadata_generation_run(**kwargs)
  1. See StartMetadataGenerationRunInputTypeDef

tag_resource#

Tags a resource in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").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)
  1. See TagResourceRequestTypeDef

untag_resource#

Untags a resource in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").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)
  1. See UntagResourceRequestTypeDef

update_asset_filter#

Updates an asset filter.

Type annotations and code completion for boto3.client("datazone").update_asset_filter method. boto3 documentation

# update_asset_filter method definition

def update_asset_filter(
    self,
    *,
    assetIdentifier: str,
    domainIdentifier: str,
    identifier: str,
    configuration: AssetFilterConfigurationUnionTypeDef = ...,  # (1)
    description: str = ...,
    name: str = ...,
) -> UpdateAssetFilterOutputTypeDef:  # (2)
    ...
  1. See AssetFilterConfigurationTypeDef AssetFilterConfigurationOutputTypeDef
  2. See UpdateAssetFilterOutputTypeDef
# update_asset_filter method usage example with argument unpacking

kwargs: UpdateAssetFilterInputTypeDef = {  # (1)
    "assetIdentifier": ...,
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_asset_filter(**kwargs)
  1. See UpdateAssetFilterInputTypeDef

update_connection#

Updates a connection.

Type annotations and code completion for boto3.client("datazone").update_connection method. boto3 documentation

# update_connection method definition

def update_connection(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    awsLocation: AwsLocationTypeDef = ...,  # (1)
    description: str = ...,
    props: ConnectionPropertiesPatchTypeDef = ...,  # (2)
) -> UpdateConnectionOutputTypeDef:  # (3)
    ...
  1. See AwsLocationTypeDef
  2. See ConnectionPropertiesPatchTypeDef
  3. See UpdateConnectionOutputTypeDef
# update_connection method usage example with argument unpacking

kwargs: UpdateConnectionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_connection(**kwargs)
  1. See UpdateConnectionInputTypeDef

update_data_source#

Updates the specified data source in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_data_source method. boto3 documentation

# update_data_source method definition

def update_data_source(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    assetFormsInput: Sequence[FormInputTypeDef] = ...,  # (1)
    configuration: DataSourceConfigurationInputTypeDef = ...,  # (2)
    description: str = ...,
    enableSetting: EnableSettingType = ...,  # (3)
    name: str = ...,
    publishOnImport: bool = ...,
    recommendation: RecommendationConfigurationTypeDef = ...,  # (4)
    retainPermissionsOnRevokeFailure: bool = ...,
    schedule: ScheduleConfigurationTypeDef = ...,  # (5)
) -> UpdateDataSourceOutputTypeDef:  # (6)
    ...
  1. See FormInputTypeDef
  2. See DataSourceConfigurationInputTypeDef
  3. See EnableSettingType
  4. See RecommendationConfigurationTypeDef
  5. See ScheduleConfigurationTypeDef
  6. See UpdateDataSourceOutputTypeDef
# update_data_source method usage example with argument unpacking

kwargs: UpdateDataSourceInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_data_source(**kwargs)
  1. See UpdateDataSourceInputTypeDef

update_domain#

Updates a Amazon DataZone domain.

Type annotations and code completion for boto3.client("datazone").update_domain method. boto3 documentation

# update_domain method definition

def update_domain(
    self,
    *,
    identifier: str,
    clientToken: str = ...,
    description: str = ...,
    domainExecutionRole: str = ...,
    name: str = ...,
    serviceRole: str = ...,
    singleSignOn: SingleSignOnTypeDef = ...,  # (1)
) -> UpdateDomainOutputTypeDef:  # (2)
    ...
  1. See SingleSignOnTypeDef
  2. See UpdateDomainOutputTypeDef
# update_domain method usage example with argument unpacking

kwargs: UpdateDomainInputTypeDef = {  # (1)
    "identifier": ...,
}

parent.update_domain(**kwargs)
  1. See UpdateDomainInputTypeDef

update_domain_unit#

Updates the domain unit.

Type annotations and code completion for boto3.client("datazone").update_domain_unit method. boto3 documentation

# update_domain_unit method definition

def update_domain_unit(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    description: str = ...,
    name: str = ...,
) -> UpdateDomainUnitOutputTypeDef:  # (1)
    ...
  1. See UpdateDomainUnitOutputTypeDef
# update_domain_unit method usage example with argument unpacking

kwargs: UpdateDomainUnitInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_domain_unit(**kwargs)
  1. See UpdateDomainUnitInputTypeDef

update_environment#

Updates the specified environment in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_environment method. boto3 documentation

# update_environment method definition

def update_environment(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    description: str = ...,
    glossaryTerms: Sequence[str] = ...,
    name: str = ...,
) -> UpdateEnvironmentOutputTypeDef:  # (1)
    ...
  1. See UpdateEnvironmentOutputTypeDef
# update_environment method usage example with argument unpacking

kwargs: UpdateEnvironmentInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_environment(**kwargs)
  1. See UpdateEnvironmentInputTypeDef

update_environment_action#

Updates an environment action.

Type annotations and code completion for boto3.client("datazone").update_environment_action method. boto3 documentation

# update_environment_action method definition

def update_environment_action(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    identifier: str,
    description: str = ...,
    name: str = ...,
    parameters: ActionParametersTypeDef = ...,  # (1)
) -> UpdateEnvironmentActionOutputTypeDef:  # (2)
    ...
  1. See ActionParametersTypeDef
  2. See UpdateEnvironmentActionOutputTypeDef
# update_environment_action method usage example with argument unpacking

kwargs: UpdateEnvironmentActionInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "identifier": ...,
}

parent.update_environment_action(**kwargs)
  1. See UpdateEnvironmentActionInputTypeDef

update_environment_profile#

Updates the specified environment profile in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_environment_profile method. boto3 documentation

# update_environment_profile method definition

def update_environment_profile(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    awsAccountId: str = ...,
    awsAccountRegion: str = ...,
    description: str = ...,
    name: str = ...,
    userParameters: Sequence[EnvironmentParameterTypeDef] = ...,  # (1)
) -> UpdateEnvironmentProfileOutputTypeDef:  # (2)
    ...
  1. See EnvironmentParameterTypeDef
  2. See UpdateEnvironmentProfileOutputTypeDef
# update_environment_profile method usage example with argument unpacking

kwargs: UpdateEnvironmentProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_environment_profile(**kwargs)
  1. See UpdateEnvironmentProfileInputTypeDef

update_glossary#

Updates the business glossary in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_glossary method. boto3 documentation

# update_glossary method definition

def update_glossary(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    clientToken: str = ...,
    description: str = ...,
    name: str = ...,
    status: GlossaryStatusType = ...,  # (1)
) -> UpdateGlossaryOutputTypeDef:  # (2)
    ...
  1. See GlossaryStatusType
  2. See UpdateGlossaryOutputTypeDef
# update_glossary method usage example with argument unpacking

kwargs: UpdateGlossaryInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_glossary(**kwargs)
  1. See UpdateGlossaryInputTypeDef

update_glossary_term#

Updates a business glossary term in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_glossary_term method. boto3 documentation

# update_glossary_term method definition

def update_glossary_term(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    glossaryIdentifier: str = ...,
    longDescription: str = ...,
    name: str = ...,
    shortDescription: str = ...,
    status: GlossaryTermStatusType = ...,  # (1)
    termRelations: TermRelationsUnionTypeDef = ...,  # (2)
) -> UpdateGlossaryTermOutputTypeDef:  # (3)
    ...
  1. See GlossaryTermStatusType
  2. See TermRelationsTypeDef TermRelationsOutputTypeDef
  3. See UpdateGlossaryTermOutputTypeDef
# update_glossary_term method usage example with argument unpacking

kwargs: UpdateGlossaryTermInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_glossary_term(**kwargs)
  1. See UpdateGlossaryTermInputTypeDef

update_group_profile#

Updates the specified group profile in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_group_profile method. boto3 documentation

# update_group_profile method definition

def update_group_profile(
    self,
    *,
    domainIdentifier: str,
    groupIdentifier: str,
    status: GroupProfileStatusType,  # (1)
) -> UpdateGroupProfileOutputTypeDef:  # (2)
    ...
  1. See GroupProfileStatusType
  2. See UpdateGroupProfileOutputTypeDef
# update_group_profile method usage example with argument unpacking

kwargs: UpdateGroupProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "groupIdentifier": ...,
    "status": ...,
}

parent.update_group_profile(**kwargs)
  1. See UpdateGroupProfileInputTypeDef

update_project#

Updates the specified project in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_project method. boto3 documentation

# update_project method definition

def update_project(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    description: str = ...,
    environmentDeploymentDetails: EnvironmentDeploymentDetailsUnionTypeDef = ...,  # (1)
    glossaryTerms: Sequence[str] = ...,
    name: str = ...,
) -> UpdateProjectOutputTypeDef:  # (2)
    ...
  1. See EnvironmentDeploymentDetailsTypeDef EnvironmentDeploymentDetailsOutputTypeDef
  2. See UpdateProjectOutputTypeDef
# update_project method usage example with argument unpacking

kwargs: UpdateProjectInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_project(**kwargs)
  1. See UpdateProjectInputTypeDef

update_project_profile#

Updates a project profile.

Type annotations and code completion for boto3.client("datazone").update_project_profile method. boto3 documentation

# update_project_profile method definition

def update_project_profile(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    description: str = ...,
    domainUnitIdentifier: str = ...,
    environmentConfigurations: Sequence[EnvironmentConfigurationUnionTypeDef] = ...,  # (1)
    name: str = ...,
    status: StatusType = ...,  # (2)
) -> UpdateProjectProfileOutputTypeDef:  # (3)
    ...
  1. See EnvironmentConfigurationTypeDef EnvironmentConfigurationOutputTypeDef
  2. See StatusType
  3. See UpdateProjectProfileOutputTypeDef
# update_project_profile method usage example with argument unpacking

kwargs: UpdateProjectProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_project_profile(**kwargs)
  1. See UpdateProjectProfileInputTypeDef

update_rule#

Updates a rule.

Type annotations and code completion for boto3.client("datazone").update_rule method. boto3 documentation

# update_rule method definition

def update_rule(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    description: str = ...,
    detail: RuleDetailUnionTypeDef = ...,  # (1)
    includeChildDomainUnits: bool = ...,
    name: str = ...,
    scope: RuleScopeUnionTypeDef = ...,  # (2)
) -> UpdateRuleOutputTypeDef:  # (3)
    ...
  1. See RuleDetailTypeDef RuleDetailOutputTypeDef
  2. See RuleScopeTypeDef RuleScopeOutputTypeDef
  3. See UpdateRuleOutputTypeDef
# update_rule method usage example with argument unpacking

kwargs: UpdateRuleInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
}

parent.update_rule(**kwargs)
  1. See UpdateRuleInputTypeDef

update_subscription_grant_status#

Updates the status of the specified subscription grant status in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_subscription_grant_status method. boto3 documentation

# update_subscription_grant_status method definition

def update_subscription_grant_status(
    self,
    *,
    assetIdentifier: str,
    domainIdentifier: str,
    identifier: str,
    status: SubscriptionGrantStatusType,  # (1)
    failureCause: FailureCauseTypeDef = ...,  # (2)
    targetName: str = ...,
) -> UpdateSubscriptionGrantStatusOutputTypeDef:  # (3)
    ...
  1. See SubscriptionGrantStatusType
  2. See FailureCauseTypeDef
  3. See UpdateSubscriptionGrantStatusOutputTypeDef
# update_subscription_grant_status method usage example with argument unpacking

kwargs: UpdateSubscriptionGrantStatusInputTypeDef = {  # (1)
    "assetIdentifier": ...,
    "domainIdentifier": ...,
    "identifier": ...,
    "status": ...,
}

parent.update_subscription_grant_status(**kwargs)
  1. See UpdateSubscriptionGrantStatusInputTypeDef

update_subscription_request#

Updates a specified subscription request in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_subscription_request method. boto3 documentation

# update_subscription_request method definition

def update_subscription_request(
    self,
    *,
    domainIdentifier: str,
    identifier: str,
    requestReason: str,
) -> UpdateSubscriptionRequestOutputTypeDef:  # (1)
    ...
  1. See UpdateSubscriptionRequestOutputTypeDef
# update_subscription_request method usage example with argument unpacking

kwargs: UpdateSubscriptionRequestInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "identifier": ...,
    "requestReason": ...,
}

parent.update_subscription_request(**kwargs)
  1. See UpdateSubscriptionRequestInputTypeDef

update_subscription_target#

Updates the specified subscription target in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_subscription_target method. boto3 documentation

# update_subscription_target method definition

def update_subscription_target(
    self,
    *,
    domainIdentifier: str,
    environmentIdentifier: str,
    identifier: str,
    applicableAssetTypes: Sequence[str] = ...,
    authorizedPrincipals: Sequence[str] = ...,
    manageAccessRole: str = ...,
    name: str = ...,
    provider: str = ...,
    subscriptionTargetConfig: Sequence[SubscriptionTargetFormTypeDef] = ...,  # (1)
) -> UpdateSubscriptionTargetOutputTypeDef:  # (2)
    ...
  1. See SubscriptionTargetFormTypeDef
  2. See UpdateSubscriptionTargetOutputTypeDef
# update_subscription_target method usage example with argument unpacking

kwargs: UpdateSubscriptionTargetInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "environmentIdentifier": ...,
    "identifier": ...,
}

parent.update_subscription_target(**kwargs)
  1. See UpdateSubscriptionTargetInputTypeDef

update_user_profile#

Updates the specified user profile in Amazon DataZone.

Type annotations and code completion for boto3.client("datazone").update_user_profile method. boto3 documentation

# update_user_profile method definition

def update_user_profile(
    self,
    *,
    domainIdentifier: str,
    status: UserProfileStatusType,  # (1)
    userIdentifier: str,
    type: UserProfileTypeType = ...,  # (2)
) -> UpdateUserProfileOutputTypeDef:  # (3)
    ...
  1. See UserProfileStatusType
  2. See UserProfileTypeType
  3. See UpdateUserProfileOutputTypeDef
# update_user_profile method usage example with argument unpacking

kwargs: UpdateUserProfileInputTypeDef = {  # (1)
    "domainIdentifier": ...,
    "status": ...,
    "userIdentifier": ...,
}

parent.update_user_profile(**kwargs)
  1. See UpdateUserProfileInputTypeDef

get_paginator#

Type annotations and code completion for boto3.client("datazone").get_paginator method with overloads.