You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::OpsWorks::Types::Source

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Source as input to an Aws::Client method, you can use a vanilla Hash:

{
  type: "git", # accepts git, svn, archive, s3
  url: "String",
  username: "String",
  password: "String",
  ssh_key: "String",
  revision: "String",
}

Contains the information required to retrieve an app or cookbook from a repository. For more information, see Creating Apps or Custom Recipes and Cookbooks.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

When included in a request, the parameter depends on the repository type.

  • For Amazon S3 bundles, set Password to the appropriate IAM secret access key.

  • For HTTP bundles and Subversion repositories, set Password to the password.

For more information on how to safely handle IAM credentials, see https://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html.

In responses, AWS OpsWorks Stacks returns *****FILTERED***** instead of the actual value.

Returns:

  • (String)

    When included in a request, the parameter depends on the repository type.

#revisionString

The application\'s version. AWS OpsWorks Stacks enables you to easily deploy new versions of an application. One of the simplest approaches is to have branches or revisions in your repository that represent different versions that can potentially be deployed.

Returns:

  • (String)

    The application\'s version.

#ssh_keyString

In requests, the repository\'s SSH key.

In responses, AWS OpsWorks Stacks returns *****FILTERED***** instead of the actual value.

Returns:

  • (String)

    In requests, the repository\'s SSH key.

#typeString

The repository type.

Possible values:

  • git
  • svn
  • archive
  • s3

Returns:

  • (String)

    The repository type.

#urlString

The source URL. The following is an example of an Amazon S3 source URL: https://s3.amazonaws.com/opsworks-demo-bucket/opsworks_cookbook_demo.tar.gz.

Returns:

  • (String)

    The source URL.

#usernameString

This parameter depends on the repository type.

  • For Amazon S3 bundles, set Username to the appropriate IAM access key ID.

  • For HTTP bundles, Git repositories, and Subversion repositories, set Username to the user name.

Returns:

  • (String)

    This parameter depends on the repository type.