Datazone
This page documents function available when using the Datazone
module, created with @service Datazone
.
Index
Main.Datazone.accept_predictions
Main.Datazone.accept_subscription_request
Main.Datazone.associate_environment_role
Main.Datazone.cancel_metadata_generation_run
Main.Datazone.cancel_subscription
Main.Datazone.create_asset
Main.Datazone.create_asset_revision
Main.Datazone.create_asset_type
Main.Datazone.create_data_source
Main.Datazone.create_domain
Main.Datazone.create_environment
Main.Datazone.create_environment_action
Main.Datazone.create_environment_profile
Main.Datazone.create_form_type
Main.Datazone.create_glossary
Main.Datazone.create_glossary_term
Main.Datazone.create_group_profile
Main.Datazone.create_listing_change_set
Main.Datazone.create_project
Main.Datazone.create_project_membership
Main.Datazone.create_subscription_grant
Main.Datazone.create_subscription_request
Main.Datazone.create_subscription_target
Main.Datazone.create_user_profile
Main.Datazone.delete_asset
Main.Datazone.delete_asset_type
Main.Datazone.delete_data_source
Main.Datazone.delete_domain
Main.Datazone.delete_environment
Main.Datazone.delete_environment_action
Main.Datazone.delete_environment_blueprint_configuration
Main.Datazone.delete_environment_profile
Main.Datazone.delete_form_type
Main.Datazone.delete_glossary
Main.Datazone.delete_glossary_term
Main.Datazone.delete_listing
Main.Datazone.delete_project
Main.Datazone.delete_project_membership
Main.Datazone.delete_subscription_grant
Main.Datazone.delete_subscription_request
Main.Datazone.delete_subscription_target
Main.Datazone.delete_time_series_data_points
Main.Datazone.disassociate_environment_role
Main.Datazone.get_asset
Main.Datazone.get_asset_type
Main.Datazone.get_data_source
Main.Datazone.get_data_source_run
Main.Datazone.get_domain
Main.Datazone.get_environment
Main.Datazone.get_environment_action
Main.Datazone.get_environment_blueprint
Main.Datazone.get_environment_blueprint_configuration
Main.Datazone.get_environment_profile
Main.Datazone.get_form_type
Main.Datazone.get_glossary
Main.Datazone.get_glossary_term
Main.Datazone.get_group_profile
Main.Datazone.get_iam_portal_login_url
Main.Datazone.get_listing
Main.Datazone.get_metadata_generation_run
Main.Datazone.get_project
Main.Datazone.get_subscription
Main.Datazone.get_subscription_grant
Main.Datazone.get_subscription_request_details
Main.Datazone.get_subscription_target
Main.Datazone.get_time_series_data_point
Main.Datazone.get_user_profile
Main.Datazone.list_asset_revisions
Main.Datazone.list_data_source_run_activities
Main.Datazone.list_data_source_runs
Main.Datazone.list_data_sources
Main.Datazone.list_domains
Main.Datazone.list_environment_actions
Main.Datazone.list_environment_blueprint_configurations
Main.Datazone.list_environment_blueprints
Main.Datazone.list_environment_profiles
Main.Datazone.list_environments
Main.Datazone.list_metadata_generation_runs
Main.Datazone.list_notifications
Main.Datazone.list_project_memberships
Main.Datazone.list_projects
Main.Datazone.list_subscription_grants
Main.Datazone.list_subscription_requests
Main.Datazone.list_subscription_targets
Main.Datazone.list_subscriptions
Main.Datazone.list_tags_for_resource
Main.Datazone.list_time_series_data_points
Main.Datazone.post_time_series_data_points
Main.Datazone.put_environment_blueprint_configuration
Main.Datazone.reject_predictions
Main.Datazone.reject_subscription_request
Main.Datazone.revoke_subscription
Main.Datazone.search
Main.Datazone.search_group_profiles
Main.Datazone.search_listings
Main.Datazone.search_types
Main.Datazone.search_user_profiles
Main.Datazone.start_data_source_run
Main.Datazone.start_metadata_generation_run
Main.Datazone.tag_resource
Main.Datazone.untag_resource
Main.Datazone.update_data_source
Main.Datazone.update_domain
Main.Datazone.update_environment
Main.Datazone.update_environment_action
Main.Datazone.update_environment_profile
Main.Datazone.update_glossary
Main.Datazone.update_glossary_term
Main.Datazone.update_group_profile
Main.Datazone.update_project
Main.Datazone.update_subscription_grant_status
Main.Datazone.update_subscription_request
Main.Datazone.update_subscription_target
Main.Datazone.update_user_profile
Documentation
Main.Datazone.accept_predictions
— Methodaccept_predictions(domain_identifier, identifier)
accept_predictions(domain_identifier, identifier, params::Dict{String,<:Any})
Accepts automatically generated business-friendly metadata for your Amazon DataZone assets.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.identifier
: The identifier of the asset.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"acceptChoices"
: Specifies the prediction (aka, the automatically generated piece of metadata) and the target (for example, a column name) that can be accepted."acceptRule"
: Specifies the rule (or the conditions) under which a prediction can be accepted."clientToken"
: A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided."revision"
: The revision that is to be made to the asset.
Main.Datazone.accept_subscription_request
— Methodaccept_subscription_request(domain_identifier, identifier)
accept_subscription_request(domain_identifier, identifier, params::Dict{String,<:Any})
Accepts a subscription request to a specific asset.
Arguments
domain_identifier
: The Amazon DataZone domain where the specified subscription request is being accepted.identifier
: The unique identifier of the subscription request that is to be accepted.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"decisionComment"
: A description that specifies the reason for accepting the specified subscription request.
Main.Datazone.associate_environment_role
— Methodassociate_environment_role(domain_identifier, environment_identifier, environment_role_arn)
associate_environment_role(domain_identifier, environment_identifier, environment_role_arn, params::Dict{String,<:Any})
Associates the environment role in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the environment role is associated.environment_identifier
: The ID of the Amazon DataZone environment.environment_role_arn
: The ARN of the environment role.
Main.Datazone.cancel_metadata_generation_run
— Methodcancel_metadata_generation_run(domain_identifier, identifier)
cancel_metadata_generation_run(domain_identifier, identifier, params::Dict{String,<:Any})
Cancels the metadata generation run.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the metadata generation run is to be cancelled.identifier
: The ID of the metadata generation run.
Main.Datazone.cancel_subscription
— Methodcancel_subscription(domain_identifier, identifier)
cancel_subscription(domain_identifier, identifier, params::Dict{String,<:Any})
Cancels the subscription to the specified asset.
Arguments
domain_identifier
: The unique identifier of the Amazon DataZone domain where the subscription request is being cancelled.identifier
: The unique identifier of the subscription that is being cancelled.
Main.Datazone.create_asset
— Methodcreate_asset(domain_identifier, name, owning_project_identifier, type_identifier)
create_asset(domain_identifier, name, owning_project_identifier, type_identifier, params::Dict{String,<:Any})
Creates an asset in Amazon DataZone catalog.
Arguments
domain_identifier
: Amazon DataZone domain where the asset is created.name
: Asset name.owning_project_identifier
: The unique identifier of the project that owns this asset.type_identifier
: The unique identifier of this asset's type.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."description"
: Asset description."externalIdentifier"
: The external identifier of the asset."formsInput"
: Metadata forms attached to the asset."glossaryTerms"
: Glossary terms attached to the asset."predictionConfiguration"
: The configuration of the automatically generated business-friendly metadata for the asset."typeRevision"
: The revision of this asset's type.
Main.Datazone.create_asset_revision
— Methodcreate_asset_revision(domain_identifier, identifier, name)
create_asset_revision(domain_identifier, identifier, name, params::Dict{String,<:Any})
Creates a revision of the asset.
Arguments
domain_identifier
: The unique identifier of the domain where the asset is being revised.identifier
: The identifier of the asset.name
: Te revised name of the asset.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."description"
: The revised description of the asset."formsInput"
: The metadata forms to be attached to the asset as part of asset revision."glossaryTerms"
: The glossary terms to be attached to the asset as part of asset revision."predictionConfiguration"
: The configuration of the automatically generated business-friendly metadata for the asset."typeRevision"
: The revision type of the asset.
Main.Datazone.create_asset_type
— Methodcreate_asset_type(domain_identifier, forms_input, name, owning_project_identifier)
create_asset_type(domain_identifier, forms_input, name, owning_project_identifier, params::Dict{String,<:Any})
Creates a custom asset type.
Arguments
domain_identifier
: The unique identifier of the Amazon DataZone domain where the custom asset type is being created.forms_input
: The metadata forms that are to be attached to the custom asset type.name
: The name of the custom asset type.owning_project_identifier
: The identifier of the Amazon DataZone project that is to own the custom asset type.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The descripton of the custom asset type.
Main.Datazone.create_data_source
— Methodcreate_data_source(domain_identifier, environment_identifier, name, project_identifier, type)
create_data_source(domain_identifier, environment_identifier, name, project_identifier, type, params::Dict{String,<:Any})
Creates an Amazon DataZone data source.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain where the data source is created.environment_identifier
: The unique identifier of the Amazon DataZone environment to which the data source publishes assets.name
: The name of the data source.project_identifier
: The identifier of the Amazon DataZone project in which you want to add this data source.type
: The type of the data source.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"assetFormsInput"
: The metadata forms that are to be attached to the assets that this data source works with."clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."configuration"
: Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration."description"
: The description of the data source."enableSetting"
: Specifies whether the data source is enabled."publishOnImport"
: Specifies whether the assets that this data source creates in the inventory are to be also automatically published to the catalog."recommendation"
: Specifies whether the business name generation is to be enabled for this data source."schedule"
: The schedule of the data source runs.
Main.Datazone.create_domain
— Methodcreate_domain(domain_execution_role, name)
create_domain(domain_execution_role, name, params::Dict{String,<:Any})
Creates an Amazon DataZone domain.
Arguments
domain_execution_role
: The domain execution role that is created when an Amazon DataZone domain is created. The domain execution role is created in the Amazon Web Services account that houses the Amazon DataZone domain.name
: The name of the Amazon DataZone domain.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."description"
: The description of the Amazon DataZone domain."kmsKeyIdentifier"
: The identifier of the Amazon Web Services Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data."singleSignOn"
: The single-sign on configuration of the Amazon DataZone domain."tags"
: The tags specified for the Amazon DataZone domain.
Main.Datazone.create_environment
— Methodcreate_environment(domain_identifier, environment_profile_identifier, name, project_identifier)
create_environment(domain_identifier, environment_profile_identifier, name, project_identifier, params::Dict{String,<:Any})
Create an Amazon DataZone environment.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which the environment is created.environment_profile_identifier
: The identifier of the environment profile that is used to create this Amazon DataZone environment.name
: The name of the Amazon DataZone environment.project_identifier
: The identifier of the Amazon DataZone project in which this environment is created.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The description of the Amazon DataZone environment."environmentAccountIdentifier"
: The ID of the account in which the environment is being created."environmentAccountRegion"
: The region of the account in which the environment is being created."environmentBlueprintIdentifier"
: The ID of the blueprint with which the environment is being created."glossaryTerms"
: The glossary terms that can be used in this Amazon DataZone environment."userParameters"
: The user parameters of this Amazon DataZone environment.
Main.Datazone.create_environment_action
— Methodcreate_environment_action(domain_identifier, environment_identifier, name, parameters)
create_environment_action(domain_identifier, environment_identifier, name, parameters, params::Dict{String,<:Any})
Creates an action for the environment, for example, creates a console link for an analytics tool that is available in this environment.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the environment action is created.environment_identifier
: The ID of the environment in which the environment action is created.name
: The name of the environment action.parameters
: The parameters of the environment action.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The description of the environment action that is being created in the environment.
Main.Datazone.create_environment_profile
— Methodcreate_environment_profile(domain_identifier, environment_blueprint_identifier, name, project_identifier)
create_environment_profile(domain_identifier, environment_blueprint_identifier, name, project_identifier, params::Dict{String,<:Any})
Creates an Amazon DataZone environment profile.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which this environment profile is created.environment_blueprint_identifier
: The ID of the blueprint with which this environment profile is created.name
: The name of this Amazon DataZone environment profile.project_identifier
: The identifier of the project in which to create the environment profile.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"awsAccountId"
: The Amazon Web Services account in which the Amazon DataZone environment is created."awsAccountRegion"
: The Amazon Web Services region in which this environment profile is created."description"
: The description of this Amazon DataZone environment profile."userParameters"
: The user parameters of this Amazon DataZone environment profile.
Main.Datazone.create_form_type
— Methodcreate_form_type(domain_identifier, model, name, owning_project_identifier)
create_form_type(domain_identifier, model, name, owning_project_identifier, params::Dict{String,<:Any})
Creates a metadata form type.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which this metadata form type is created.model
: The model of this Amazon DataZone metadata form type.name
: The name of this Amazon DataZone metadata form type.owning_project_identifier
: The ID of the Amazon DataZone project that owns this metadata form type.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The description of this Amazon DataZone metadata form type."status"
: The status of this Amazon DataZone metadata form type.
Main.Datazone.create_glossary
— Methodcreate_glossary(domain_identifier, name, owning_project_identifier)
create_glossary(domain_identifier, name, owning_project_identifier, params::Dict{String,<:Any})
Creates an Amazon DataZone business glossary.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which this business glossary is created.name
: The name of this business glossary.owning_project_identifier
: The ID of the project that currently owns business glossary.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."description"
: The description of this business glossary."status"
: The status of this business glossary.
Main.Datazone.create_glossary_term
— Methodcreate_glossary_term(domain_identifier, glossary_identifier, name)
create_glossary_term(domain_identifier, glossary_identifier, name, params::Dict{String,<:Any})
Creates a business glossary term.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which this business glossary term is created.glossary_identifier
: The ID of the business glossary in which this term is created.name
: The name of this business glossary term.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."longDescription"
: The long description of this business glossary term."shortDescription"
: The short description of this business glossary term."status"
: The status of this business glossary term."termRelations"
: The term relations of this business glossary term.
Main.Datazone.create_group_profile
— Methodcreate_group_profile(domain_identifier, group_identifier)
create_group_profile(domain_identifier, group_identifier, params::Dict{String,<:Any})
Creates a group profile in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which the group profile is created.group_identifier
: The identifier of the group for which the group profile is created.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Main.Datazone.create_listing_change_set
— Methodcreate_listing_change_set(action, domain_identifier, entity_identifier, entity_type)
create_listing_change_set(action, domain_identifier, entity_identifier, entity_type, params::Dict{String,<:Any})
Publishes a listing (a record of an asset at a given time) or removes a listing from the catalog.
Arguments
action
: Specifies whether to publish or unpublish a listing.domain_identifier
: The ID of the Amazon DataZone domain.entity_identifier
: The ID of the asset.entity_type
: The type of an entity.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."entityRevision"
: The revision of an asset.
Main.Datazone.create_project
— Methodcreate_project(domain_identifier, name)
create_project(domain_identifier, name, params::Dict{String,<:Any})
Creates an Amazon DataZone project.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which this project is created.name
: The name of the Amazon DataZone project.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The description of the Amazon DataZone project."glossaryTerms"
: The glossary terms that can be used in this Amazon DataZone project.
Main.Datazone.create_project_membership
— Methodcreate_project_membership(designation, domain_identifier, member, project_identifier)
create_project_membership(designation, domain_identifier, member, project_identifier, params::Dict{String,<:Any})
Creates a project membership in Amazon DataZone.
Arguments
designation
: The designation of the project membership.domain_identifier
: The ID of the Amazon DataZone domain in which project membership is created.member
: The project member whose project membership was created.project_identifier
: The ID of the project for which this project membership was created.
Main.Datazone.create_subscription_grant
— Methodcreate_subscription_grant(domain_identifier, environment_identifier, granted_entity, subscription_target_identifier)
create_subscription_grant(domain_identifier, environment_identifier, granted_entity, subscription_target_identifier, params::Dict{String,<:Any})
Creates a subsscription grant in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the subscription grant is created.environment_identifier
: The ID of the environment in which the subscription grant is created.granted_entity
: The entity to which the subscription is to be granted.subscription_target_identifier
: The ID of the subscription target for which the subscription grant is created.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"assetTargetNames"
: The names of the assets for which the subscription grant is created."clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Main.Datazone.create_subscription_request
— Methodcreate_subscription_request(domain_identifier, request_reason, subscribed_listings, subscribed_principals)
create_subscription_request(domain_identifier, request_reason, subscribed_listings, subscribed_principals, params::Dict{String,<:Any})
Creates a subscription request in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the subscription request is created.request_reason
: The reason for the subscription request.subscribed_listings
: The published asset for which the subscription grant is to be created.subscribed_principals
: The Amazon DataZone principals for whom the subscription request is created.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Main.Datazone.create_subscription_target
— Methodcreate_subscription_target(applicable_asset_types, authorized_principals, domain_identifier, environment_identifier, manage_access_role, name, subscription_target_config, type)
create_subscription_target(applicable_asset_types, authorized_principals, domain_identifier, environment_identifier, manage_access_role, name, subscription_target_config, type, params::Dict{String,<:Any})
Creates a subscription target in Amazon DataZone.
Arguments
applicable_asset_types
: The asset types that can be included in the subscription target.authorized_principals
: The authorized principals of the subscription target.domain_identifier
: The ID of the Amazon DataZone domain in which subscription target is created.environment_identifier
: The ID of the environment in which subscription target is created.manage_access_role
: The manage access role that is used to create the subscription target.name
: The name of the subscription target.subscription_target_config
: The configuration of the subscription target.type
: The type of the subscription target.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."provider"
: The provider of the subscription target.
Main.Datazone.create_user_profile
— Methodcreate_user_profile(domain_identifier, user_identifier)
create_user_profile(domain_identifier, user_identifier, params::Dict{String,<:Any})
Creates a user profile in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which a user profile is created.user_identifier
: The identifier of the user for which the user profile is created.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."userType"
: The user type of the user for which the user profile is created.
Main.Datazone.delete_asset
— Methoddelete_asset(domain_identifier, identifier)
delete_asset(domain_identifier, identifier, params::Dict{String,<:Any})
Delets an asset in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the asset is deleted.identifier
: The identifier of the asset that is deleted.
Main.Datazone.delete_asset_type
— Methoddelete_asset_type(domain_identifier, identifier)
delete_asset_type(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes an asset type in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the asset type is deleted.identifier
: The identifier of the asset type that is deleted.
Main.Datazone.delete_data_source
— Methoddelete_data_source(domain_identifier, identifier)
delete_data_source(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes a data source in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the data source is deleted.identifier
: The identifier of the data source that is deleted.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."retainPermissionsOnRevokeFailure"
: Specifies that the granted permissions are retained in case of a self-subscribe functionality failure for a data source.
Main.Datazone.delete_domain
— Methoddelete_domain(identifier)
delete_domain(identifier, params::Dict{String,<:Any})
Deletes a Amazon DataZone domain.
Arguments
identifier
: The identifier of the Amazon Web Services domain that is to be deleted.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."skipDeletionCheck"
: Specifies the optional flag to delete all child entities within the domain.
Main.Datazone.delete_environment
— Methoddelete_environment(domain_identifier, identifier)
delete_environment(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes an environment in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the environment is deleted.identifier
: The identifier of the environment that is to be deleted.
Main.Datazone.delete_environment_action
— Methoddelete_environment_action(domain_identifier, environment_identifier, identifier)
delete_environment_action(domain_identifier, environment_identifier, identifier, params::Dict{String,<:Any})
Deletes an action for the environment, for example, deletes a console link for an analytics tool that is available in this environment.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which an environment action is deleted.environment_identifier
: The ID of the environment where an environment action is deleted.identifier
: The ID of the environment action that is deleted.
Main.Datazone.delete_environment_blueprint_configuration
— Methoddelete_environment_blueprint_configuration(domain_identifier, environment_blueprint_identifier)
delete_environment_blueprint_configuration(domain_identifier, environment_blueprint_identifier, params::Dict{String,<:Any})
Deletes the blueprint configuration in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the blueprint configuration is deleted.environment_blueprint_identifier
: The ID of the blueprint the configuration of which is deleted.
Main.Datazone.delete_environment_profile
— Methoddelete_environment_profile(domain_identifier, identifier)
delete_environment_profile(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes an environment profile in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the environment profile is deleted.identifier
: The ID of the environment profile that is deleted.
Main.Datazone.delete_form_type
— Methoddelete_form_type(domain_identifier, form_type_identifier)
delete_form_type(domain_identifier, form_type_identifier, params::Dict{String,<:Any})
Delets and metadata form type in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the metadata form type is deleted.form_type_identifier
: The ID of the metadata form type that is deleted.
Main.Datazone.delete_glossary
— Methoddelete_glossary(domain_identifier, identifier)
delete_glossary(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes a business glossary in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the business glossary is deleted.identifier
: The ID of the business glossary that is deleted.
Main.Datazone.delete_glossary_term
— Methoddelete_glossary_term(domain_identifier, identifier)
delete_glossary_term(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes a business glossary term in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the business glossary term is deleted.identifier
: The ID of the business glossary term that is deleted.
Main.Datazone.delete_listing
— Methoddelete_listing(domain_identifier, identifier)
delete_listing(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes a listing (a record of an asset at a given time).
Arguments
domain_identifier
: The ID of the Amazon DataZone domain.identifier
: The ID of the listing to be deleted.
Main.Datazone.delete_project
— Methoddelete_project(domain_identifier, identifier)
delete_project(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes a project in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the project is deleted.identifier
: The identifier of the project that is to be deleted.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"skipDeletionCheck"
: Specifies the optional flag to delete all child entities within the project.
Main.Datazone.delete_project_membership
— Methoddelete_project_membership(domain_identifier, member, project_identifier)
delete_project_membership(domain_identifier, member, project_identifier, params::Dict{String,<:Any})
Deletes project membership in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain where project membership is deleted.member
: The project member whose project membership is deleted.project_identifier
: The ID of the Amazon DataZone project the membership to which is deleted.
Main.Datazone.delete_subscription_grant
— Methoddelete_subscription_grant(domain_identifier, identifier)
delete_subscription_grant(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes and subscription grant in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain where the subscription grant is deleted.identifier
: The ID of the subscription grant that is deleted.
Main.Datazone.delete_subscription_request
— Methoddelete_subscription_request(domain_identifier, identifier)
delete_subscription_request(domain_identifier, identifier, params::Dict{String,<:Any})
Deletes a subscription request in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the subscription request is deleted.identifier
: The ID of the subscription request that is deleted.
Main.Datazone.delete_subscription_target
— Methoddelete_subscription_target(domain_identifier, environment_identifier, identifier)
delete_subscription_target(domain_identifier, environment_identifier, identifier, params::Dict{String,<:Any})
Deletes a subscription target in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the subscription target is deleted.environment_identifier
: The ID of the Amazon DataZone environment in which the subscription target is deleted.identifier
: The ID of the subscription target that is deleted.
Main.Datazone.delete_time_series_data_points
— Methoddelete_time_series_data_points(domain_identifier, entity_identifier, entity_type, form_name)
delete_time_series_data_points(domain_identifier, entity_identifier, entity_type, form_name, params::Dict{String,<:Any})
Deletes the specified time series form for the specified asset.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain that houses the asset for which you want to delete a time series form.entity_identifier
: The ID of the asset for which you want to delete a time series form.entity_type
: The type of the asset for which you want to delete a time series form.form_name
: The name of the time series form that you want to delete.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.
Main.Datazone.disassociate_environment_role
— Methoddisassociate_environment_role(domain_identifier, environment_identifier, environment_role_arn)
disassociate_environment_role(domain_identifier, environment_identifier, environment_role_arn, params::Dict{String,<:Any})
Disassociates the environment role in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which an environment role is disassociated.environment_identifier
: The ID of the environment.environment_role_arn
: The ARN of the environment role.
Main.Datazone.get_asset
— Methodget_asset(domain_identifier, identifier)
get_asset(domain_identifier, identifier, params::Dict{String,<:Any})
Gets an Amazon DataZone asset.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain to which the asset belongs.identifier
: The ID of the Amazon DataZone asset.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"revision"
: The revision of the Amazon DataZone asset.
Main.Datazone.get_asset_type
— Methodget_asset_type(domain_identifier, identifier)
get_asset_type(domain_identifier, identifier, params::Dict{String,<:Any})
Gets an Amazon DataZone asset type.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the asset type exists.identifier
: The ID of the asset type.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"revision"
: The revision of the asset type.
Main.Datazone.get_data_source
— Methodget_data_source(domain_identifier, identifier)
get_data_source(domain_identifier, identifier, params::Dict{String,<:Any})
Gets an Amazon DataZone data source.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the data source exists.identifier
: The ID of the Amazon DataZone data source.
Main.Datazone.get_data_source_run
— Methodget_data_source_run(domain_identifier, identifier)
get_data_source_run(domain_identifier, identifier, params::Dict{String,<:Any})
Gets an Amazon DataZone data source run.
Arguments
domain_identifier
: The ID of the domain in which this data source run was performed.identifier
: The ID of the data source run.
Main.Datazone.get_domain
— Methodget_domain(identifier)
get_domain(identifier, params::Dict{String,<:Any})
Gets an Amazon DataZone domain.
Arguments
identifier
: The identifier of the specified Amazon DataZone domain.
Main.Datazone.get_environment
— Methodget_environment(domain_identifier, identifier)
get_environment(domain_identifier, identifier, params::Dict{String,<:Any})
Gets an Amazon DataZone environment.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain where the environment exists.identifier
: The ID of the Amazon DataZone environment.
Main.Datazone.get_environment_action
— Methodget_environment_action(domain_identifier, environment_identifier, identifier)
get_environment_action(domain_identifier, environment_identifier, identifier, params::Dict{String,<:Any})
Gets the specified environment action.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the GetEnvironmentAction API is invoked.environment_identifier
: The environment ID of the environment action.identifier
: The ID of the environment action
Main.Datazone.get_environment_blueprint
— Methodget_environment_blueprint(domain_identifier, identifier)
get_environment_blueprint(domain_identifier, identifier, params::Dict{String,<:Any})
Gets an Amazon DataZone blueprint.
Arguments
domain_identifier
: The identifier of the domain in which this blueprint exists.identifier
: The ID of this Amazon DataZone blueprint.
Main.Datazone.get_environment_blueprint_configuration
— Methodget_environment_blueprint_configuration(domain_identifier, environment_blueprint_identifier)
get_environment_blueprint_configuration(domain_identifier, environment_blueprint_identifier, params::Dict{String,<:Any})
Gets the blueprint configuration in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain where this blueprint exists.environment_blueprint_identifier
: He ID of the blueprint.
Main.Datazone.get_environment_profile
— Methodget_environment_profile(domain_identifier, identifier)
get_environment_profile(domain_identifier, identifier, params::Dict{String,<:Any})
Gets an evinronment profile in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which this environment profile exists.identifier
: The ID of the environment profile.
Main.Datazone.get_form_type
— Methodget_form_type(domain_identifier, form_type_identifier)
get_form_type(domain_identifier, form_type_identifier, params::Dict{String,<:Any})
Gets a metadata form type in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which this metadata form type exists.form_type_identifier
: The ID of the metadata form type.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"revision"
: The revision of this metadata form type.
Main.Datazone.get_glossary
— Methodget_glossary(domain_identifier, identifier)
get_glossary(domain_identifier, identifier, params::Dict{String,<:Any})
Gets a business glossary in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which this business glossary exists.identifier
: The ID of the business glossary.
Main.Datazone.get_glossary_term
— Methodget_glossary_term(domain_identifier, identifier)
get_glossary_term(domain_identifier, identifier, params::Dict{String,<:Any})
Gets a business glossary term in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which this business glossary term exists.identifier
: The ID of the business glossary term.
Main.Datazone.get_group_profile
— Methodget_group_profile(domain_identifier, group_identifier)
get_group_profile(domain_identifier, group_identifier, params::Dict{String,<:Any})
Gets a group profile in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which the group profile exists.group_identifier
: The identifier of the group profile.
Main.Datazone.get_iam_portal_login_url
— Methodget_iam_portal_login_url(domain_identifier)
get_iam_portal_login_url(domain_identifier, params::Dict{String,<:Any})
Gets the data portal URL for the specified Amazon DataZone domain.
Arguments
domain_identifier
: the ID of the Amazon DataZone domain the data portal of which you want to get.
Main.Datazone.get_listing
— Methodget_listing(domain_identifier, identifier)
get_listing(domain_identifier, identifier, params::Dict{String,<:Any})
Gets a listing (a record of an asset at a given time).
Arguments
domain_identifier
: The ID of the Amazon DataZone domain.identifier
: The ID of the listing.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"listingRevision"
: The revision of the listing.
Main.Datazone.get_metadata_generation_run
— Methodget_metadata_generation_run(domain_identifier, identifier)
get_metadata_generation_run(domain_identifier, identifier, params::Dict{String,<:Any})
Gets a metadata generation run in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain the metadata generation run of which you want to get.identifier
: The identifier of the metadata generation run.
Main.Datazone.get_project
— Methodget_project(domain_identifier, identifier)
get_project(domain_identifier, identifier, params::Dict{String,<:Any})
Gets a project in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the project exists.identifier
: The ID of the project.
Main.Datazone.get_subscription
— Methodget_subscription(domain_identifier, identifier)
get_subscription(domain_identifier, identifier, params::Dict{String,<:Any})
Gets a subscription in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the subscription exists.identifier
: The ID of the subscription.
Main.Datazone.get_subscription_grant
— Methodget_subscription_grant(domain_identifier, identifier)
get_subscription_grant(domain_identifier, identifier, params::Dict{String,<:Any})
Gets the subscription grant in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the subscription grant exists.identifier
: The ID of the subscription grant.
Main.Datazone.get_subscription_request_details
— Methodget_subscription_request_details(domain_identifier, identifier)
get_subscription_request_details(domain_identifier, identifier, params::Dict{String,<:Any})
Gets the details of the specified subscription request.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which to get the subscription request details.identifier
: The identifier of the subscription request the details of which to get.
Main.Datazone.get_subscription_target
— Methodget_subscription_target(domain_identifier, environment_identifier, identifier)
get_subscription_target(domain_identifier, environment_identifier, identifier, params::Dict{String,<:Any})
Gets the subscription target in Amazon DataZone.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the subscription target exists.environment_identifier
: The ID of the environment associated with the subscription target.identifier
: The ID of the subscription target.
Main.Datazone.get_time_series_data_point
— Methodget_time_series_data_point(domain_identifier, entity_identifier, entity_type, form_name, identifier)
get_time_series_data_point(domain_identifier, entity_identifier, entity_type, form_name, identifier, params::Dict{String,<:Any})
Gets the existing data point for the asset.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain that houses the asset for which you want to get the data point.entity_identifier
: The ID of the asset for which you want to get the data point.entity_type
: The type of the asset for which you want to get the data point.form_name
: The name of the time series form that houses the data point that you want to get.identifier
: The ID of the data point that you want to get.
Main.Datazone.get_user_profile
— Methodget_user_profile(domain_identifier, user_identifier)
get_user_profile(domain_identifier, user_identifier, params::Dict{String,<:Any})
Gets a user profile in Amazon DataZone.
Arguments
domain_identifier
: the ID of the Amazon DataZone domain the data portal of which you want to get.user_identifier
: The identifier of the user for which you want to get the user profile.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"type"
: The type of the user profile.
Main.Datazone.list_asset_revisions
— Methodlist_asset_revisions(domain_identifier, identifier)
list_asset_revisions(domain_identifier, identifier, params::Dict{String,<:Any})
Lists the revisions for the asset.
Arguments
domain_identifier
: The identifier of the domain.identifier
: The identifier of the asset.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of revisions to return in a single call to ListAssetRevisions. When the number of revisions to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListAssetRevisions to list the next set of revisions."nextToken"
: When the number of revisions is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of revisions, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListAssetRevisions to list the next set of revisions.
Main.Datazone.list_data_source_run_activities
— Methodlist_data_source_run_activities(domain_identifier, identifier)
list_data_source_run_activities(domain_identifier, identifier, params::Dict{String,<:Any})
Lists data source run activities.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which to list data source run activities.identifier
: The identifier of the data source run.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of activities to return in a single call to ListDataSourceRunActivities. When the number of activities to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListDataSourceRunActivities to list the next set of activities."nextToken"
: When the number of activities is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of activities, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListDataSourceRunActivities to list the next set of activities."status"
: The status of the data source run.
Main.Datazone.list_data_source_runs
— Methodlist_data_source_runs(data_source_identifier, domain_identifier)
list_data_source_runs(data_source_identifier, domain_identifier, params::Dict{String,<:Any})
Lists data source runs in Amazon DataZone.
Arguments
data_source_identifier
: The identifier of the data source.domain_identifier
: The identifier of the Amazon DataZone domain in which to invoke the ListDataSourceRuns action.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of runs to return in a single call to ListDataSourceRuns. When the number of runs to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListDataSourceRuns to list the next set of runs."nextToken"
: When the number of runs is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of runs, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListDataSourceRuns to list the next set of runs."status"
: The status of the data source.
Main.Datazone.list_data_sources
— Methodlist_data_sources(domain_identifier, project_identifier)
list_data_sources(domain_identifier, project_identifier, params::Dict{String,<:Any})
Lists data sources in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which to list the data sources.project_identifier
: The identifier of the project in which to list data sources.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"environmentIdentifier"
: The identifier of the environment in which to list the data sources."maxResults"
: The maximum number of data sources to return in a single call to ListDataSources. When the number of data sources to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListDataSources to list the next set of data sources."name"
: The name of the data source."nextToken"
: When the number of data sources is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data sources, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListDataSources to list the next set of data sources."status"
: The status of the data source."type"
: The type of the data source.
Main.Datazone.list_domains
— Methodlist_domains()
list_domains(params::Dict{String,<:Any})
Lists Amazon DataZone domains.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of domains to return in a single call to ListDomains. When the number of domains to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListDomains to list the next set of domains."nextToken"
: When the number of domains is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of domains, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListDomains to list the next set of domains."status"
: The status of the data source.
Main.Datazone.list_environment_actions
— Methodlist_environment_actions(domain_identifier, environment_identifier)
list_environment_actions(domain_identifier, environment_identifier, params::Dict{String,<:Any})
Lists existing environment actions.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which the environment actions are listed.environment_identifier
: The ID of the envrironment whose environment actions are listed.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of environment actions to return in a single call to ListEnvironmentActions. When the number of environment actions to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListEnvironmentActions to list the next set of environment actions."nextToken"
: When the number of environment actions is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of environment actions, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListEnvironmentActions to list the next set of environment actions.
Main.Datazone.list_environment_blueprint_configurations
— Methodlist_environment_blueprint_configurations(domain_identifier)
list_environment_blueprint_configurations(domain_identifier, params::Dict{String,<:Any})
Lists blueprint configurations for a Amazon DataZone environment.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of blueprint configurations to return in a single call to ListEnvironmentBlueprintConfigurations. When the number of configurations to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListEnvironmentBlueprintConfigurations to list the next set of configurations."nextToken"
: When the number of blueprint configurations is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of configurations, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListEnvironmentBlueprintConfigurations to list the next set of configurations.
Main.Datazone.list_environment_blueprints
— Methodlist_environment_blueprints(domain_identifier)
list_environment_blueprints(domain_identifier, params::Dict{String,<:Any})
Lists blueprints in an Amazon DataZone environment.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"managed"
: Specifies whether the environment blueprint is managed by Amazon DataZone."maxResults"
: The maximum number of blueprints to return in a single call to ListEnvironmentBlueprints. When the number of blueprints to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListEnvironmentBlueprints to list the next set of blueprints."name"
: The name of the Amazon DataZone environment."nextToken"
: When the number of blueprints in the environment is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of blueprints in the environment, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListEnvironmentBlueprintsto list the next set of blueprints.
Main.Datazone.list_environment_profiles
— Methodlist_environment_profiles(domain_identifier)
list_environment_profiles(domain_identifier, params::Dict{String,<:Any})
Lists Amazon DataZone environment profiles.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"awsAccountId"
: The identifier of the Amazon Web Services account where you want to list environment profiles."awsAccountRegion"
: The Amazon Web Services region where you want to list environment profiles."environmentBlueprintIdentifier"
: The identifier of the blueprint that was used to create the environment profiles that you want to list."maxResults"
: The maximum number of environment profiles to return in a single call to ListEnvironmentProfiles. When the number of environment profiles to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListEnvironmentProfiles to list the next set of environment profiles."name"
:"nextToken"
: When the number of environment profiles is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of environment profiles, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListEnvironmentProfiles to list the next set of environment profiles."projectIdentifier"
: The identifier of the Amazon DataZone project.
Main.Datazone.list_environments
— Methodlist_environments(domain_identifier, project_identifier)
list_environments(domain_identifier, project_identifier, params::Dict{String,<:Any})
Lists Amazon DataZone environments.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.project_identifier
: The identifier of the Amazon DataZone project.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"awsAccountId"
: The identifier of the Amazon Web Services account where you want to list environments."awsAccountRegion"
: The Amazon Web Services region where you want to list environments."environmentBlueprintIdentifier"
: The identifier of the Amazon DataZone blueprint."environmentProfileIdentifier"
: The identifier of the environment profile."maxResults"
: The maximum number of environments to return in a single call to ListEnvironments. When the number of environments to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListEnvironments to list the next set of environments."name"
: The name of the environment."nextToken"
: When the number of environments is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of environments, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListEnvironments to list the next set of environments."provider"
: The provider of the environment."status"
: The status of the environments that you want to list.
Main.Datazone.list_metadata_generation_runs
— Methodlist_metadata_generation_runs(domain_identifier)
list_metadata_generation_runs(domain_identifier, params::Dict{String,<:Any})
Lists all metadata generation runs.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain where you want to list metadata generation runs.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of metadata generation runs to return in a single call to ListMetadataGenerationRuns. When the number of metadata generation runs to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListMetadataGenerationRuns to list the next set of revisions."nextToken"
: When the number of metadata generation runs is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of metadata generation runs, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListMetadataGenerationRuns to list the next set of revisions."status"
: The status of the metadata generation runs."type"
: The type of the metadata generation runs.
Main.Datazone.list_notifications
— Methodlist_notifications(domain_identifier, type)
list_notifications(domain_identifier, type, params::Dict{String,<:Any})
Lists all Amazon DataZone notifications.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.type
: The type of notifications.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"afterTimestamp"
: The time after which you want to list notifications."beforeTimestamp"
: The time before which you want to list notifications."maxResults"
: The maximum number of notifications to return in a single call to ListNotifications. When the number of notifications to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListNotifications to list the next set of notifications."nextToken"
: When the number of notifications is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of notifications, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListNotifications to list the next set of notifications."subjects"
: The subjects of notifications."taskStatus"
: The task status of notifications.
Main.Datazone.list_project_memberships
— Methodlist_project_memberships(domain_identifier, project_identifier)
list_project_memberships(domain_identifier, project_identifier, params::Dict{String,<:Any})
Lists all members of the specified project.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which you want to list project memberships.project_identifier
: The identifier of the project whose memberships you want to list.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of memberships to return in a single call to ListProjectMemberships. When the number of memberships to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListProjectMemberships to list the next set of memberships."nextToken"
: When the number of memberships is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of memberships, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListProjectMemberships to list the next set of memberships."sortBy"
: The method by which you want to sort the project memberships."sortOrder"
: The sort order of the project memberships.
Main.Datazone.list_projects
— Methodlist_projects(domain_identifier)
list_projects(domain_identifier, params::Dict{String,<:Any})
Lists Amazon DataZone projects.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"groupIdentifier"
: The identifier of a group."maxResults"
: The maximum number of projects to return in a single call to ListProjects. When the number of projects to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListProjects to list the next set of projects."name"
: The name of the project."nextToken"
: When the number of projects is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of projects, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListProjects to list the next set of projects."userIdentifier"
: The identifier of the Amazon DataZone user.
Main.Datazone.list_subscription_grants
— Methodlist_subscription_grants(domain_identifier)
list_subscription_grants(domain_identifier, params::Dict{String,<:Any})
Lists subscription grants.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"environmentId"
: The identifier of the Amazon DataZone environment."maxResults"
: The maximum number of subscription grants to return in a single call to ListSubscriptionGrants. When the number of subscription grants to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListSubscriptionGrants to list the next set of subscription grants."nextToken"
: When the number of subscription grants is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscription grants, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptionGrants to list the next set of subscription grants."sortBy"
: Specifies the way of sorting the results of this action."sortOrder"
: Specifies the sort order of this action."subscribedListingId"
: The identifier of the subscribed listing."subscriptionId"
: The identifier of the subscription."subscriptionTargetId"
: The identifier of the subscription target.
Main.Datazone.list_subscription_requests
— Methodlist_subscription_requests(domain_identifier)
list_subscription_requests(domain_identifier, params::Dict{String,<:Any})
Lists Amazon DataZone subscription requests.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"approverProjectId"
: The identifier of the subscription request approver's project."maxResults"
: The maximum number of subscription requests to return in a single call to ListSubscriptionRequests. When the number of subscription requests to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListSubscriptionRequests to list the next set of subscription requests."nextToken"
: When the number of subscription requests is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscription requests, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptionRequests to list the next set of subscription requests."owningProjectId"
: The identifier of the project for the subscription requests."sortBy"
: Specifies the way to sort the results of this action."sortOrder"
: Specifies the sort order for the results of this action."status"
: Specifies the status of the subscription requests."subscribedListingId"
: The identifier of the subscribed listing.
Main.Datazone.list_subscription_targets
— Methodlist_subscription_targets(domain_identifier, environment_identifier)
list_subscription_targets(domain_identifier, environment_identifier, params::Dict{String,<:Any})
Lists subscription targets in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain where you want to list subscription targets.environment_identifier
: The identifier of the environment where you want to list subscription targets.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of subscription targets to return in a single call to ListSubscriptionTargets. When the number of subscription targets to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListSubscriptionTargets to list the next set of subscription targets."nextToken"
: When the number of subscription targets is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscription targets, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptionTargets to list the next set of subscription targets."sortBy"
: Specifies the way in which the results of this action are to be sorted."sortOrder"
: Specifies the sort order for the results of this action.
Main.Datazone.list_subscriptions
— Methodlist_subscriptions(domain_identifier)
list_subscriptions(domain_identifier, params::Dict{String,<:Any})
Lists subscriptions in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"approverProjectId"
: The identifier of the project for the subscription's approver."maxResults"
: The maximum number of subscriptions to return in a single call to ListSubscriptions. When the number of subscriptions to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListSubscriptions to list the next set of Subscriptions."nextToken"
: When the number of subscriptions is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscriptions, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptions to list the next set of subscriptions."owningProjectId"
: The identifier of the owning project."sortBy"
: Specifies the way in which the results of this action are to be sorted."sortOrder"
: Specifies the sort order for the results of this action."status"
: The status of the subscriptions that you want to list."subscribedListingId"
: The identifier of the subscribed listing for the subscriptions that you want to list."subscriptionRequestIdentifier"
: The identifier of the subscription request for the subscriptions that you want to list.
Main.Datazone.list_tags_for_resource
— Methodlist_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})
Lists tags for the specified resource in Amazon DataZone.
Arguments
resource_arn
: The ARN of the resource whose tags you want to list.
Main.Datazone.list_time_series_data_points
— Methodlist_time_series_data_points(domain_identifier, entity_identifier, entity_type, form_name)
list_time_series_data_points(domain_identifier, entity_identifier, entity_type, form_name, params::Dict{String,<:Any})
Lists time series data points.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain that houses the assets for which you want to list time series data points.entity_identifier
: The ID of the asset for which you want to list data points.entity_type
: The type of the asset for which you want to list data points.form_name
: The name of the time series data points form.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"endedAt"
: The timestamp at which the data points that you wanted to list ended."maxResults"
: The maximum number of data points to return in a single call to ListTimeSeriesDataPoints. When the number of data points to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points."nextToken"
: When the number of data points is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data points, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points."startedAt"
: The timestamp at which the data points that you want to list started.
Main.Datazone.post_time_series_data_points
— Methodpost_time_series_data_points(domain_identifier, entity_identifier, entity_type, forms)
post_time_series_data_points(domain_identifier, entity_identifier, entity_type, forms, params::Dict{String,<:Any})
Posts time series data points to Amazon DataZone for the specified asset.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain in which you want to post time series data points.entity_identifier
: The ID of the asset for which you want to post time series data points.entity_type
: The type of the asset for which you want to post data points.forms
: The forms that contain the data points that you want to post.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Main.Datazone.put_environment_blueprint_configuration
— Methodput_environment_blueprint_configuration(domain_identifier, enabled_regions, environment_blueprint_identifier)
put_environment_blueprint_configuration(domain_identifier, enabled_regions, environment_blueprint_identifier, params::Dict{String,<:Any})
Writes the configuration for the specified environment blueprint in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.enabled_regions
: Specifies the enabled Amazon Web Services Regions.environment_blueprint_identifier
: The identifier of the environment blueprint.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"manageAccessRoleArn"
: The ARN of the manage access role."provisioningRoleArn"
: The ARN of the provisioning role."regionalParameters"
: The regional parameters in the environment blueprint.
Main.Datazone.reject_predictions
— Methodreject_predictions(domain_identifier, identifier)
reject_predictions(domain_identifier, identifier, params::Dict{String,<:Any})
Rejects automatically generated business-friendly metadata for your Amazon DataZone assets.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.identifier
: The identifier of the prediction.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."rejectChoices"
: Specifies the prediction (aka, the automatically generated piece of metadata) and the target (for example, a column name) that can be rejected."rejectRule"
: Specifies the rule (or the conditions) under which a prediction can be rejected."revision"
: The revision that is to be made to the asset.
Main.Datazone.reject_subscription_request
— Methodreject_subscription_request(domain_identifier, identifier)
reject_subscription_request(domain_identifier, identifier, params::Dict{String,<:Any})
Rejects the specified subscription request.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which the subscription request was rejected.identifier
: The identifier of the subscription request that was rejected.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"decisionComment"
: The decision comment of the rejected subscription request.
Main.Datazone.revoke_subscription
— Methodrevoke_subscription(domain_identifier, identifier)
revoke_subscription(domain_identifier, identifier, params::Dict{String,<:Any})
Revokes a specified subscription in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain where you want to revoke a subscription.identifier
: The identifier of the revoked subscription.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"retainPermissions"
: Specifies whether permissions are retained when the subscription is revoked.
Main.Datazone.search
— Methodsearch(domain_identifier, search_scope)
search(domain_identifier, search_scope, params::Dict{String,<:Any})
Searches for assets in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain.search_scope
: The scope of the search.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"additionalAttributes"
: Specifies additional attributes for the Search action."filters"
: Specifies the search filters."maxResults"
: The maximum number of results to return in a single call to Search. When the number of results to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to Search to list the next set of results."nextToken"
: When the number of results is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of results, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to Search to list the next set of results."owningProjectIdentifier"
: The identifier of the owning project specified for the search."searchIn"
: The details of the search."searchText"
: Specifies the text for which to search."sort"
: Specifies the way in which the search results are to be sorted.
Main.Datazone.search_group_profiles
— Methodsearch_group_profiles(domain_identifier, group_type)
search_group_profiles(domain_identifier, group_type, params::Dict{String,<:Any})
Searches group profiles in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which you want to search group profiles.group_type
: The group type for which to search.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return in a single call to SearchGroupProfiles. When the number of results to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to SearchGroupProfiles to list the next set of results."nextToken"
: When the number of results is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of results, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to SearchGroupProfiles to list the next set of results."searchText"
: Specifies the text for which to search.
Main.Datazone.search_listings
— Methodsearch_listings(domain_identifier)
search_listings(domain_identifier, params::Dict{String,<:Any})
Searches listings (records of an asset at a given time) in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the domain in which to search listings.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"additionalAttributes"
: Specifies additional attributes for the search."filters"
: Specifies the filters for the search of listings."maxResults"
: The maximum number of results to return in a single call to SearchListings. When the number of results to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to SearchListings to list the next set of results."nextToken"
: When the number of results is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of results, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to SearchListings to list the next set of results."searchIn"
: The details of the search."searchText"
: Specifies the text for which to search."sort"
: Specifies the way for sorting the search results.
Main.Datazone.search_types
— Methodsearch_types(domain_identifier, managed, search_scope)
search_types(domain_identifier, managed, search_scope, params::Dict{String,<:Any})
Searches for types in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which to invoke the SearchTypes action.managed
: Specifies whether the search is managed.search_scope
: Specifies the scope of the search for types.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"filters"
: The filters for the SearchTypes action."maxResults"
: The maximum number of results to return in a single call to SearchTypes. When the number of results to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to SearchTypes to list the next set of results."nextToken"
: When the number of results is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of results, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to SearchTypes to list the next set of results."searchIn"
: The details of the search."searchText"
: Specifies the text for which to search."sort"
: The specifies the way to sort the SearchTypes results.
Main.Datazone.search_user_profiles
— Methodsearch_user_profiles(domain_identifier, user_type)
search_user_profiles(domain_identifier, user_type, params::Dict{String,<:Any})
Searches user profiles in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which you want to search user profiles.user_type
: Specifies the user type for the SearchUserProfiles action.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return in a single call to SearchUserProfiles. When the number of results to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to SearchUserProfiles to list the next set of results."nextToken"
: When the number of results is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of results, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to SearchUserProfiles to list the next set of results."searchText"
: Specifies the text for which to search.
Main.Datazone.start_data_source_run
— Methodstart_data_source_run(data_source_identifier, domain_identifier)
start_data_source_run(data_source_identifier, domain_identifier, params::Dict{String,<:Any})
Start the run of the specified data source in Amazon DataZone.
Arguments
data_source_identifier
: The identifier of the data source.domain_identifier
: The identifier of the Amazon DataZone domain in which to start a data source run.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Main.Datazone.start_metadata_generation_run
— Methodstart_metadata_generation_run(domain_identifier, owning_project_identifier, target, type)
start_metadata_generation_run(domain_identifier, owning_project_identifier, target, type, params::Dict{String,<:Any})
Starts the metadata generation run.
Arguments
domain_identifier
: The ID of the Amazon DataZone domain where you want to start a metadata generation run.owning_project_identifier
: The ID of the project that owns the asset for which you want to start a metadata generation run.target
: The asset for which you want to start a metadata generation run.type
: The type of the metadata generation run.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.
Main.Datazone.tag_resource
— Methodtag_resource(resource_arn, tags)
tag_resource(resource_arn, tags, params::Dict{String,<:Any})
Tags a resource in Amazon DataZone.
Arguments
resource_arn
: The ARN of the resource to be tagged in Amazon DataZone.tags
: Specifies the tags for the TagResource action.
Main.Datazone.untag_resource
— Methoduntag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})
Untags a resource in Amazon DataZone.
Arguments
resource_arn
: The ARN of the resource to be untagged in Amazon DataZone.tag_keys
: Specifies the tag keys for the UntagResource action.
Main.Datazone.update_data_source
— Methodupdate_data_source(domain_identifier, identifier)
update_data_source(domain_identifier, identifier, params::Dict{String,<:Any})
Updates the specified data source in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the domain in which to update a data source.identifier
: The identifier of the data source to be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"assetFormsInput"
: The asset forms to be updated as part of the UpdateDataSource action."configuration"
: The configuration to be updated as part of the UpdateDataSource action."description"
: The description to be updated as part of the UpdateDataSource action."enableSetting"
: The enable setting to be updated as part of the UpdateDataSource action."name"
: The name to be updated as part of the UpdateDataSource action."publishOnImport"
: The publish on import setting to be updated as part of the UpdateDataSource action."recommendation"
: The recommendation to be updated as part of the UpdateDataSource action."retainPermissionsOnRevokeFailure"
: Specifies that the granted permissions are retained in case of a self-subscribe functionality failure for a data source."schedule"
: The schedule to be updated as part of the UpdateDataSource action.
Main.Datazone.update_domain
— Methodupdate_domain(identifier)
update_domain(identifier, params::Dict{String,<:Any})
Updates a Amazon DataZone domain.
Arguments
identifier
: The ID of the Amazon Web Services domain that is to be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."description"
: The description to be updated as part of the UpdateDomain action."domainExecutionRole"
: The domain execution role to be updated as part of the UpdateDomain action."name"
: The name to be updated as part of the UpdateDomain action."singleSignOn"
: The single sign-on option to be updated as part of the UpdateDomain action.
Main.Datazone.update_environment
— Methodupdate_environment(domain_identifier, identifier)
update_environment(domain_identifier, identifier, params::Dict{String,<:Any})
Updates the specified environment in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the domain in which the environment is to be updated.identifier
: The identifier of the environment that is to be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The description to be updated as part of the UpdateEnvironment action."glossaryTerms"
: The glossary terms to be updated as part of the UpdateEnvironment action."name"
: The name to be updated as part of the UpdateEnvironment action.
Main.Datazone.update_environment_action
— Methodupdate_environment_action(domain_identifier, environment_identifier, identifier)
update_environment_action(domain_identifier, environment_identifier, identifier, params::Dict{String,<:Any})
Updates an environment action.
Arguments
domain_identifier
: The domain ID of the environment action.environment_identifier
: The environment ID of the environment action.identifier
: The ID of the environment action.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The description of the environment action."name"
: The name of the environment action."parameters"
: The parameters of the environment action.
Main.Datazone.update_environment_profile
— Methodupdate_environment_profile(domain_identifier, identifier)
update_environment_profile(domain_identifier, identifier, params::Dict{String,<:Any})
Updates the specified environment profile in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which an environment profile is to be updated.identifier
: The identifier of the environment profile that is to be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"awsAccountId"
: The Amazon Web Services account in which a specified environment profile is to be udpated."awsAccountRegion"
: The Amazon Web Services Region in which a specified environment profile is to be updated."description"
: The description to be updated as part of the UpdateEnvironmentProfile action."name"
: The name to be updated as part of the UpdateEnvironmentProfile action."userParameters"
: The user parameters to be updated as part of the UpdateEnvironmentProfile action.
Main.Datazone.update_glossary
— Methodupdate_glossary(domain_identifier, identifier)
update_glossary(domain_identifier, identifier, params::Dict{String,<:Any})
Updates the business glossary in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which a business glossary is to be updated.identifier
: The identifier of the business glossary to be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that is provided to ensure the idempotency of the request."description"
: The description to be updated as part of the UpdateGlossary action."name"
: The name to be updated as part of the UpdateGlossary action."status"
: The status to be updated as part of the UpdateGlossary action.
Main.Datazone.update_glossary_term
— Methodupdate_glossary_term(domain_identifier, identifier)
update_glossary_term(domain_identifier, identifier, params::Dict{String,<:Any})
Updates a business glossary term in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which a business glossary term is to be updated.identifier
: The identifier of the business glossary term that is to be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"glossaryIdentifier"
: The identifier of the business glossary in which a term is to be updated."longDescription"
: The long description to be updated as part of the UpdateGlossaryTerm action."name"
: The name to be updated as part of the UpdateGlossaryTerm action."shortDescription"
: The short description to be updated as part of the UpdateGlossaryTerm action."status"
: The status to be updated as part of the UpdateGlossaryTerm action."termRelations"
: The term relations to be updated as part of the UpdateGlossaryTerm action.
Main.Datazone.update_group_profile
— Methodupdate_group_profile(domain_identifier, group_identifier, status)
update_group_profile(domain_identifier, group_identifier, status, params::Dict{String,<:Any})
Updates the specified group profile in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which a group profile is updated.group_identifier
: The identifier of the group profile that is updated.status
: The status of the group profile that is updated.
Main.Datazone.update_project
— Methodupdate_project(domain_identifier, identifier)
update_project(domain_identifier, identifier, params::Dict{String,<:Any})
Updates the specified project in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which a project is to be updated.identifier
: The identifier of the project that is to be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The description to be updated as part of the UpdateProject action."glossaryTerms"
: The glossary terms to be updated as part of the UpdateProject action."name"
: The name to be updated as part of the UpdateProject action.
Main.Datazone.update_subscription_grant_status
— Methodupdate_subscription_grant_status(asset_identifier, domain_identifier, identifier, status)
update_subscription_grant_status(asset_identifier, domain_identifier, identifier, status, params::Dict{String,<:Any})
Updates the status of the specified subscription grant status in Amazon DataZone.
Arguments
asset_identifier
: The identifier of the asset the subscription grant status of which is to be updated.domain_identifier
: The identifier of the Amazon DataZone domain in which a subscription grant status is to be updated.identifier
: The identifier of the subscription grant the status of which is to be updated.status
: The status to be updated as part of the UpdateSubscriptionGrantStatus action.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"failureCause"
: Specifies the error message that is returned if the operation cannot be successfully completed."targetName"
: The target name to be updated as part of the UpdateSubscriptionGrantStatus action.
Main.Datazone.update_subscription_request
— Methodupdate_subscription_request(domain_identifier, identifier, request_reason)
update_subscription_request(domain_identifier, identifier, request_reason, params::Dict{String,<:Any})
Updates a specified subscription request in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which a subscription request is to be updated.identifier
: The identifier of the subscription request that is to be updated.request_reason
: The reason for the UpdateSubscriptionRequest action.
Main.Datazone.update_subscription_target
— Methodupdate_subscription_target(domain_identifier, environment_identifier, identifier)
update_subscription_target(domain_identifier, environment_identifier, identifier, params::Dict{String,<:Any})
Updates the specified subscription target in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which a subscription target is to be updated.environment_identifier
: The identifier of the environment in which a subscription target is to be updated.identifier
: Identifier of the subscription target that is to be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"applicableAssetTypes"
: The applicable asset types to be updated as part of the UpdateSubscriptionTarget action."authorizedPrincipals"
: The authorized principals to be updated as part of the UpdateSubscriptionTarget action."manageAccessRole"
: The manage access role to be updated as part of the UpdateSubscriptionTarget action."name"
: The name to be updated as part of the UpdateSubscriptionTarget action."provider"
: The provider to be updated as part of the UpdateSubscriptionTarget action."subscriptionTargetConfig"
: The configuration to be updated as part of the UpdateSubscriptionTarget action.
Main.Datazone.update_user_profile
— Methodupdate_user_profile(domain_identifier, status, user_identifier)
update_user_profile(domain_identifier, status, user_identifier, params::Dict{String,<:Any})
Updates the specified user profile in Amazon DataZone.
Arguments
domain_identifier
: The identifier of the Amazon DataZone domain in which a user profile is updated.status
: The status of the user profile that are to be updated.user_identifier
: The identifier of the user whose user profile is to be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"type"
: The type of the user profile that are to be updated.