Interface CfnCustomActionType.SettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCustomActionType.SettingsProperty.Jsii$Proxy
Enclosing class:
CfnCustomActionType

@Stability(Stable) public static interface CfnCustomActionType.SettingsProperty extends software.amazon.jsii.JsiiSerializable
Settings is a property of the AWS::CodePipeline::CustomActionType resource that provides URLs that users can access to view information about the CodePipeline custom action.

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.codepipeline.*;
 SettingsProperty settingsProperty = SettingsProperty.builder()
         .entityUrlTemplate("entityUrlTemplate")
         .executionUrlTemplate("executionUrlTemplate")
         .revisionUrlTemplate("revisionUrlTemplate")
         .thirdPartyConfigurationUrl("thirdPartyConfigurationUrl")
         .build();
 

See Also: