Learn R Programming

paws (version 0.3.0)

wellarchitected: AWS Well-Architected Tool

Description

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.

Usage

wellarchitected(config = list())

Value

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.

Arguments

config

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.

Service syntax

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"
  )
)

Operations

associate_lensesAssociate a lens to a workload
associate_profilesAssociate a profile with a workload
create_lens_shareCreate a lens share
create_lens_versionCreate a new lens version
create_milestoneCreate a milestone for an existing workload
create_profileCreate a profile
create_profile_shareCreate a profile share
create_workloadCreate a new workload
create_workload_shareCreate a workload share
delete_lensDelete an existing lens
delete_lens_shareDelete a lens share
delete_profileDelete a profile
delete_profile_shareDelete a profile share
delete_workloadDelete an existing workload
delete_workload_shareDelete a workload share
disassociate_lensesDisassociate a lens from a workload
disassociate_profilesDisassociate a profile from a workload
export_lensExport an existing lens
get_answerGet the answer to a specific question in a workload review
get_consolidated_reportGet a consolidated report of your workloads
get_lensGet an existing lens
get_lens_reviewGet lens review
get_lens_review_reportGet lens review report
get_lens_version_differenceGet lens version differences
get_milestoneGet a milestone for an existing workload
get_profileGet profile information
get_profile_templateGet profile template
get_workloadGet an existing workload
import_lensImport a new custom lens or update an existing custom lens
list_answersList of answers for a particular workload and lens
list_check_detailsList of Trusted Advisor check details by account related to the workload
list_check_summariesList of Trusted Advisor checks summarized for all accounts related to the workload
list_lensesList the available lenses
list_lens_review_improvementsList lens review improvements
list_lens_reviewsList lens reviews for a particular workload
list_lens_sharesList the lens shares associated with the lens
list_milestonesList all milestones for an existing workload
list_notificationsList lens notifications
list_profile_notificationsList profile notifications
list_profilesList profiles
list_profile_sharesList profile shares
list_share_invitationsList the workload invitations
list_tags_for_resourceList the tags for a resource
list_workloadsPaginated list of workloads
list_workload_sharesList the workload shares associated with the workload
tag_resourceAdds one or more tags to the specified resource
untag_resourceDeletes specified tags from a resource
update_answerUpdate the answer to a specific question in a workload review
update_global_settingsUpdates whether the Amazon Web Services account is opted into organization sharing and discovery integration features
update_lens_reviewUpdate lens review for a particular workload
update_profileUpdate a profile
update_share_invitationUpdate a workload or custom lens share invitation
update_workloadUpdate an existing workload
update_workload_shareUpdate a workload share
upgrade_lens_reviewUpgrade lens review for a particular workload
upgrade_profile_versionUpgrade a profile

Examples

Run this code
if (FALSE) {
svc <- wellarchitected()
svc$associate_lenses(
  Foo = 123
)
}

Run the code above in your browser using DataLab