Class: Aws::CodePipeline::Types::ActionTypeUrls
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ActionTypeUrls
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Returns information about URLs for web pages that display to customers as links on the pipeline view, such as an external configuration page for the action type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_url ⇒ String
The URL returned to the CodePipeline console that contains a link to the page where customers can configure the external action.
-
#entity_url_template ⇒ String
The URL returned to the CodePipeline console that provides a deep link to the resources of the external system, such as a status page.
-
#execution_url_template ⇒ String
The link to an execution page for the action type in progress.
-
#revision_url_template ⇒ String
The URL returned to the CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
Instance Attribute Details
#configuration_url ⇒ String
The URL returned to the CodePipeline console that contains a link to the page where customers can configure the external action.
1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1092 class ActionTypeUrls < Struct.new( :configuration_url, :entity_url_template, :execution_url_template, :revision_url_template) SENSITIVE = [] include Aws::Structure end |
#entity_url_template ⇒ String
The URL returned to the CodePipeline console that provides a deep link to the resources of the external system, such as a status page. This link is provided as part of the action display in the pipeline.
1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1092 class ActionTypeUrls < Struct.new( :configuration_url, :entity_url_template, :execution_url_template, :revision_url_template) SENSITIVE = [] include Aws::Structure end |
#execution_url_template ⇒ String
The link to an execution page for the action type in progress. For example, for a CodeDeploy action, this link is shown on the pipeline view page in the CodePipeline console, and it links to a CodeDeploy status page.
1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1092 class ActionTypeUrls < Struct.new( :configuration_url, :entity_url_template, :execution_url_template, :revision_url_template) SENSITIVE = [] include Aws::Structure end |
#revision_url_template ⇒ String
The URL returned to the CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1092 class ActionTypeUrls < Struct.new( :configuration_url, :entity_url_template, :execution_url_template, :revision_url_template) SENSITIVE = [] include Aws::Structure end |