Class ActionTypeSettings
- java.lang.Object
-
- com.amazonaws.services.codepipeline.model.ActionTypeSettings
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ActionTypeSettings extends Object implements Serializable, Cloneable
Returns information about the settings for an action type.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActionTypeSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActionTypeSettings
clone()
boolean
equals(Object obj)
String
getEntityUrlTemplate()
The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group.String
getExecutionUrlTemplate()
The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy.String
getRevisionUrlTemplate()
The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.String
getThirdPartyConfigurationUrl()
The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.int
hashCode()
void
setEntityUrlTemplate(String entityUrlTemplate)
The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group.void
setExecutionUrlTemplate(String executionUrlTemplate)
The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy.void
setRevisionUrlTemplate(String revisionUrlTemplate)
The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.void
setThirdPartyConfigurationUrl(String thirdPartyConfigurationUrl)
The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.String
toString()
Returns a string representation of this object; useful for testing and debugging.ActionTypeSettings
withEntityUrlTemplate(String entityUrlTemplate)
The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group.ActionTypeSettings
withExecutionUrlTemplate(String executionUrlTemplate)
The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy.ActionTypeSettings
withRevisionUrlTemplate(String revisionUrlTemplate)
The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.ActionTypeSettings
withThirdPartyConfigurationUrl(String thirdPartyConfigurationUrl)
The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.
-
-
-
Method Detail
-
setThirdPartyConfigurationUrl
public void setThirdPartyConfigurationUrl(String thirdPartyConfigurationUrl)
The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.
- Parameters:
thirdPartyConfigurationUrl
- The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.
-
getThirdPartyConfigurationUrl
public String getThirdPartyConfigurationUrl()
The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.
- Returns:
- The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.
-
withThirdPartyConfigurationUrl
public ActionTypeSettings withThirdPartyConfigurationUrl(String thirdPartyConfigurationUrl)
The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.
- Parameters:
thirdPartyConfigurationUrl
- The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setEntityUrlTemplate
public void setEntityUrlTemplate(String entityUrlTemplate)
The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group. This link is provided as part of the action display within the pipeline.
- Parameters:
entityUrlTemplate
- The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group. This link is provided as part of the action display within the pipeline.
-
getEntityUrlTemplate
public String getEntityUrlTemplate()
The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group. This link is provided as part of the action display within the pipeline.
- Returns:
- The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group. This link is provided as part of the action display within the pipeline.
-
withEntityUrlTemplate
public ActionTypeSettings withEntityUrlTemplate(String entityUrlTemplate)
The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group. This link is provided as part of the action display within the pipeline.
- Parameters:
entityUrlTemplate
- The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group. This link is provided as part of the action display within the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setExecutionUrlTemplate
public void setExecutionUrlTemplate(String executionUrlTemplate)
The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy. This link is shown on the pipeline view page in the AWS CodePipeline console and provides a link to the execution entity of the external action.
- Parameters:
executionUrlTemplate
- The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy. This link is shown on the pipeline view page in the AWS CodePipeline console and provides a link to the execution entity of the external action.
-
getExecutionUrlTemplate
public String getExecutionUrlTemplate()
The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy. This link is shown on the pipeline view page in the AWS CodePipeline console and provides a link to the execution entity of the external action.
- Returns:
- The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy. This link is shown on the pipeline view page in the AWS CodePipeline console and provides a link to the execution entity of the external action.
-
withExecutionUrlTemplate
public ActionTypeSettings withExecutionUrlTemplate(String executionUrlTemplate)
The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy. This link is shown on the pipeline view page in the AWS CodePipeline console and provides a link to the execution entity of the external action.
- Parameters:
executionUrlTemplate
- The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy. This link is shown on the pipeline view page in the AWS CodePipeline console and provides a link to the execution entity of the external action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setRevisionUrlTemplate
public void setRevisionUrlTemplate(String revisionUrlTemplate)
The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
- Parameters:
revisionUrlTemplate
- The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
-
getRevisionUrlTemplate
public String getRevisionUrlTemplate()
The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
- Returns:
- The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
-
withRevisionUrlTemplate
public ActionTypeSettings withRevisionUrlTemplate(String revisionUrlTemplate)
The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
- Parameters:
revisionUrlTemplate
- The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ActionTypeSettings clone()
-
-