Amp

This page documents function available when using the Amp module, created with @service Amp.

Index

Documentation

Main.Amp.create_workspaceMethod
create_workspace()
create_workspace(params::Dict{String,<:Any})

Creates a new AMP workspace.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "alias": An optional user-assigned alias for this workspace. This alias is for user reference and does not need to be unique.
  • "clientToken": Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
  • "tags": Optional, user-provided tags for this workspace.
source
Main.Amp.delete_workspaceMethod
delete_workspace(workspace_id)
delete_workspace(workspace_id, params::Dict{String,<:Any})

Deletes an AMP workspace.

Arguments

  • workspace_id: The ID of the workspace to delete.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "clientToken": Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
source
Main.Amp.describe_workspaceMethod
describe_workspace(workspace_id)
describe_workspace(workspace_id, params::Dict{String,<:Any})

Describes an existing AMP workspace.

Arguments

  • workspace_id: The ID of the workspace to describe.
source
Main.Amp.list_tags_for_resourceMethod
list_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})

Lists the tags you have assigned to the resource.

Arguments

  • resource_arn: The ARN of the resource.
source
Main.Amp.list_workspacesMethod
list_workspaces()
list_workspaces(params::Dict{String,<:Any})

Lists all AMP workspaces, including workspaces being created or deleted.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "alias": Optional filter for workspace alias. Only the workspaces with aliases that begin with this value will be returned.
  • "maxResults": Maximum results to return in response (default=100, maximum=1000).
  • "nextToken": Pagination token to request the next page in a paginated list. This token is obtained from the output of the previous ListWorkspaces request.
source
Main.Amp.tag_resourceMethod
tag_resource(resource_arn, tags)
tag_resource(resource_arn, tags, params::Dict{String,<:Any})

Creates tags for the specified resource.

Arguments

  • resource_arn: The ARN of the resource.
  • tags:
source
Main.Amp.untag_resourceMethod
untag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})

Deletes tags from the specified resource.

Arguments

  • resource_arn: The ARN of the resource.
  • tag_keys: One or more tag keys
source
Main.Amp.update_workspace_aliasMethod
update_workspace_alias(workspace_id)
update_workspace_alias(workspace_id, params::Dict{String,<:Any})

Updates an AMP workspace alias.

Arguments

  • workspace_id: The ID of the workspace being updated.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "alias": The new alias of the workspace.
  • "clientToken": Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
source