Learn R Programming

paws (version 0.2.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
create_lens_shareCreate a lens share
create_lens_versionCreate a new lens version
create_milestoneCreate a milestone for an existing workload
create_workloadCreate a new workload
create_workload_shareCreate a workload share
delete_lensDelete an existing lens
delete_lens_shareDelete a lens share
delete_workloadDelete an existing workload
delete_workload_shareDelete a workload share
disassociate_lensesDisassociate a lens from a workload
export_lensExport an existing lens
get_answerGet the answer to a specific question in a workload review
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_workloadGet an existing workload
import_lensImport a new lens
list_answersList of answers
list_lensesList the available lenses
list_lens_review_improvementsList lens review improvements
list_lens_reviewsList lens reviews
list_lens_sharesList the lens shares associated with the lens
list_milestonesList all milestones for an existing workload
list_notificationsList lens notifications
list_share_invitationsList the workload invitations
list_tags_for_resourceList the tags for a resource
list_workloadsList 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 features
update_lens_reviewUpdate lens review
update_share_invitationUpdate a workload invitation
update_workloadUpdate an existing workload
update_workload_shareUpdate a workload share
upgrade_lens_reviewUpgrade lens review

Examples

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

Run the code above in your browser using DataLab