Interface CfnApp.SourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApp.SourceProperty.Jsii$Proxy
- Enclosing class:
CfnApp
@Stability(Stable)
public static interface CfnApp.SourceProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.opsworks.*;
SourceProperty sourceProperty = SourceProperty.builder()
.password("password")
.revision("revision")
.sshKey("sshKey")
.type("type")
.url("url")
.username("username")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApp.SourcePropertystatic final classAn implementation forCfnApp.SourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringWhen included in a request, the parameter depends on the repository type.default StringThe application's version.default StringIn requests, the repository's SSH key.default StringgetType()The repository type.default StringgetUrl()The source URL.default StringThis parameter depends on the repository type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPassword
When included in a request, the parameter depends on the repository type.- For Amazon S3 bundles, set
Passwordto the appropriate IAM secret access key. - For HTTP bundles and Subversion repositories, set
Passwordto the password.
For more information on how to safely handle IAM credentials, see .
In responses, OpsWorks Stacks returns
*****FILTERED*****instead of the actual value.- See Also:
- For Amazon S3 bundles, set
-
getRevision
The application's version.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.
- See Also:
-
getSshKey
In requests, the repository's SSH key.In responses, OpsWorks Stacks returns
*****FILTERED*****instead of the actual value.- See Also:
-
getType
The repository type.- See Also:
-
getUrl
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.- See Also:
-
getUsername
This parameter depends on the repository type.- For Amazon S3 bundles, set
Usernameto the appropriate IAM access key ID. - For HTTP bundles, Git repositories, and Subversion repositories, set
Usernameto the user name.
- See Also:
- For Amazon S3 bundles, set
-
builder
- Returns:
- a
CfnApp.SourceProperty.BuilderofCfnApp.SourceProperty
-