Well-Architected Tool
This is the Well-Architected Tool API Reference. The WA Tool API provides programmatic access to the Well-Architected Tool in the Amazon Web Services Management Console. For information about the Well-Architected Tool, see the Well-Architected Tool User Guide.
wellarchitected(config = list())
A client for the service. You can call the service's operations using
syntax like svc$operation(...)
, where svc
is the name you've assigned
to the client. The available operations are listed in the
Operations section.
Optional configuration of credentials, endpoint, and/or region.
access_key_id: AWS access key ID
secret_access_key: AWS secret access key
session_token: AWS temporary session token
profile: The name of a profile to use. If not given, then the default profile is used.
anonymous: Set anonymous credentials.
endpoint: The complete URL to use for the constructed client.
region: The AWS Region used in instantiating the client.
close_connection: Immediately close all HTTP connections.
timeout: The time in seconds till a timeout exception is thrown when attempting to make a connection. The default is 60 seconds.
s3_force_path_style: Set this to true
to force the request to use path-style addressing, i.e., http://s3.amazonaws.com/BUCKET/KEY
.
svc <- wellarchitected(
config = list(
credentials = list(
creds = list(
access_key_id = "string",
secret_access_key = "string",
session_token = "string"
),
profile = "string",
anonymous = "logical"
),
endpoint = "string",
region = "string",
close_connection = "logical",
timeout = "numeric",
s3_force_path_style = "logical"
)
)
associate_lenses | Associate a lens to a workload |
create_lens_share | Create a lens share |
create_lens_version | Create a new lens version |
create_milestone | Create a milestone for an existing workload |
create_workload | Create a new workload |
create_workload_share | Create a workload share |
delete_lens | Delete an existing lens |
delete_lens_share | Delete a lens share |
delete_workload | Delete an existing workload |
delete_workload_share | Delete a workload share |
disassociate_lenses | Disassociate a lens from a workload |
export_lens | Export an existing lens |
get_answer | Get the answer to a specific question in a workload review |
get_lens | Get an existing lens |
get_lens_review | Get lens review |
get_lens_review_report | Get lens review report |
get_lens_version_difference | Get lens version differences |
get_milestone | Get a milestone for an existing workload |
get_workload | Get an existing workload |
import_lens | Import a new lens |
list_answers | List of answers |
list_lenses | List the available lenses |
list_lens_review_improvements | List lens review improvements |
list_lens_reviews | List lens reviews |
list_lens_shares | List the lens shares associated with the lens |
list_milestones | List all milestones for an existing workload |
list_notifications | List lens notifications |
list_share_invitations | List the workload invitations |
list_tags_for_resource | List the tags for a resource |
list_workloads | List workloads |
list_workload_shares | List the workload shares associated with the workload |
tag_resource | Adds one or more tags to the specified resource |
untag_resource | Deletes specified tags from a resource |
update_answer | Update the answer to a specific question in a workload review |
update_global_settings | Updates whether the Amazon Web Services account is opted into organization sharing features |
update_lens_review | Update lens review |
update_share_invitation | Update a workload invitation |
update_workload | Update an existing workload |
update_workload_share | Update a workload share |
upgrade_lens_review | Upgrade lens review |
if (FALSE) {
svc <- wellarchitected()
svc$associate_lenses(
Foo = 123
)
}
Run the code above in your browser using DataLab