paws.compute (version 0.5.0)

elasticbeanstalk: AWS Elastic Beanstalk

Description

AWS Elastic Beanstalk makes it easy for you to create, deploy, and manage scalable, fault-tolerant applications running on the Amazon Web Services cloud.

For more information about this product, go to the AWS Elastic Beanstalk details page. The location of the latest AWS Elastic Beanstalk WSDL is https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl. To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that enable you to access the API, go to Tools for Amazon Web Services.

Endpoints

For a list of region-specific endpoints that AWS Elastic Beanstalk supports, go to Regions and Endpoints in the Amazon Web Services Glossary.

Usage

elasticbeanstalk(
  config = list(),
  credentials = list(),
  endpoint = NULL,
  region = NULL
)

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.

  • credentials:

    • creds:

      • 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.

  • sts_regional_endpoint: Set sts regional endpoint resolver to regional or legacy https://docs.aws.amazon.com/sdkref/latest/guide/feature-sts-regionalized-endpoints.html

credentials

Optional credentials shorthand for the config parameter

  • creds:

    • 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

Optional shorthand for complete URL to use for the constructed client.

region

Optional shorthand for AWS Region used in instantiating the client.

Service syntax

svc <- elasticbeanstalk(
  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",
    sts_regional_endpoint = "string"
  ),
  credentials = list(
    creds = list(
      access_key_id = "string",
      secret_access_key = "string",
      session_token = "string"
    ),
    profile = "string",
    anonymous = "logical"
  ),
  endpoint = "string",
  region = "string"
)

Operations

abort_environment_updateCancels in-progress environment configuration update or application version deployment
apply_environment_managed_actionApplies a scheduled managed action immediately
associate_environment_operations_roleAdd or change the operations role used by an environment
check_dns_availabilityChecks if the specified CNAME is available
compose_environmentsCreate or update a group of environments that each run a separate component of a single application
create_applicationCreates an application that has one configuration template named default and no application versions
create_application_versionCreates an application version for the specified application
create_configuration_templateCreates an AWS Elastic Beanstalk configuration template, associated with a specific Elastic Beanstalk application
create_environmentLaunches an AWS Elastic Beanstalk environment for the specified application using the specified configuration
create_platform_versionCreate a new version of your custom platform
create_storage_locationCreates a bucket in Amazon S3 to store application versions, logs, and other files used by Elastic Beanstalk environments
delete_applicationDeletes the specified application along with all associated versions and configurations
delete_application_versionDeletes the specified version from the specified application
delete_configuration_templateDeletes the specified configuration template
delete_environment_configurationDeletes the draft configuration associated with the running environment
delete_platform_versionDeletes the specified version of a custom platform
describe_account_attributesReturns attributes related to AWS Elastic Beanstalk that are associated with the calling AWS account
describe_applicationsReturns the descriptions of existing applications
describe_application_versionsRetrieve a list of application versions
describe_configuration_optionsDescribes the configuration options that are used in a particular configuration template or environment, or that a specified solution stack defines
describe_configuration_settingsReturns a description of the settings for the specified configuration set, that is, either a configuration template or the configuration set associated with a running environment
describe_environment_healthReturns information about the overall health of the specified environment
describe_environment_managed_action_historyLists an environment's completed and failed managed actions
describe_environment_managed_actionsLists an environment's upcoming and in-progress managed actions
describe_environment_resourcesReturns AWS resources for this environment
describe_environmentsReturns descriptions for existing environments
describe_eventsReturns list of event descriptions matching criteria up to the last 6 weeks
describe_instances_healthRetrieves detailed information about the health of instances in your AWS Elastic Beanstalk
describe_platform_versionDescribes a platform version
disassociate_environment_operations_roleDisassociate the operations role from an environment
list_available_solution_stacksReturns a list of the available solution stack names, with the public version first and then in reverse chronological order
list_platform_branchesLists the platform branches available for your account in an AWS Region
list_platform_versionsLists the platform versions available for your account in an AWS Region
list_tags_for_resourceReturn the tags applied to an AWS Elastic Beanstalk resource
rebuild_environmentDeletes and recreates all of the AWS resources (for example: the Auto Scaling group, load balancer, etc
request_environment_infoInitiates a request to compile the specified type of information of the deployed environment
restart_app_serverCauses the environment to restart the application container server running on each Amazon EC2 instance
retrieve_environment_infoRetrieves the compiled information from a RequestEnvironmentInfo request
swap_environment_cnam_esSwaps the CNAMEs of two environments
terminate_environmentTerminates the specified environment
update_applicationUpdates the specified application to have the specified properties
update_application_resource_lifecycleModifies lifecycle settings for an application
update_application_versionUpdates the specified application version to have the specified properties
update_configuration_templateUpdates the specified configuration template to have the specified properties or configuration option values
update_environmentUpdates the environment description, deploys a new application version, updates the configuration settings to an entirely new configuration template, or updates select configuration option values in the running environment
update_tags_for_resourceUpdate the list of tags applied to an AWS Elastic Beanstalk resource
validate_configuration_settingsTakes a set of configuration settings and either a configuration template or environment, and determines whether those values are valid

Examples

Run this code
if (FALSE) {
svc <- elasticbeanstalk()
# The following code aborts a running application version deployment for
# an environment named my-env:
svc$abort_environment_update(
  EnvironmentName = "my-env"
)
}

Run the code above in your browser using DataLab