Class: Aws::CodeDeploy::Types::RevisionLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::RevisionLocation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Information about the location of an application revision.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_spec_content ⇒ Types::AppSpecContent
The content of an AppSpec file for an Lambda or Amazon ECS deployment.
-
#git_hub_location ⇒ Types::GitHubLocation
Information about the location of application artifacts stored in GitHub.
-
#revision_type ⇒ String
The type of application revision:.
-
#s3_location ⇒ Types::S3Location
Information about the location of a revision stored in Amazon S3.
-
#string ⇒ Types::RawString
Information about the location of an Lambda deployment revision stored as a RawString.
Instance Attribute Details
#app_spec_content ⇒ Types::AppSpecContent
The content of an AppSpec file for an Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML and stored as a RawString.
4430 4431 4432 4433 4434 4435 4436 4437 4438 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4430 class RevisionLocation < Struct.new( :revision_type, :s3_location, :git_hub_location, :string, :app_spec_content) SENSITIVE = [] include Aws::Structure end |
#git_hub_location ⇒ Types::GitHubLocation
Information about the location of application artifacts stored in GitHub.
4430 4431 4432 4433 4434 4435 4436 4437 4438 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4430 class RevisionLocation < Struct.new( :revision_type, :s3_location, :git_hub_location, :string, :app_spec_content) SENSITIVE = [] include Aws::Structure end |
#revision_type ⇒ String
The type of application revision:
-
S3: An application revision stored in Amazon S3.
-
GitHub: An application revision stored in GitHub (EC2/On-premises deployments only).
-
String: A YAML-formatted or JSON-formatted string (Lambda deployments only).
-
AppSpecContent: An ‘AppSpecContent` object that contains the contents of an AppSpec file for an Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML stored as a RawString.
4430 4431 4432 4433 4434 4435 4436 4437 4438 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4430 class RevisionLocation < Struct.new( :revision_type, :s3_location, :git_hub_location, :string, :app_spec_content) SENSITIVE = [] include Aws::Structure end |
#s3_location ⇒ Types::S3Location
Information about the location of a revision stored in Amazon S3.
4430 4431 4432 4433 4434 4435 4436 4437 4438 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4430 class RevisionLocation < Struct.new( :revision_type, :s3_location, :git_hub_location, :string, :app_spec_content) SENSITIVE = [] include Aws::Structure end |
#string ⇒ Types::RawString
Information about the location of an Lambda deployment revision stored as a RawString.
4430 4431 4432 4433 4434 4435 4436 4437 4438 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4430 class RevisionLocation < Struct.new( :revision_type, :s3_location, :git_hub_location, :string, :app_spec_content) SENSITIVE = [] include Aws::Structure end |