Interface CustomActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CustomActionProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:36.919Z")
@Stability(Stable)
public interface CustomActionProperty
extends software.amazon.jsii.JsiiSerializable
The creation attributes used for defining a configuration property of a 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.*;
CustomActionProperty customActionProperty = CustomActionProperty.builder()
.name("name")
.required(false)
// the properties below are optional
.description("description")
.key(false)
.queryable(false)
.secret(false)
.type("type")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCustomActionPropertystatic final classAn implementation forCustomActionProperty -
Method Summary
Modifier and TypeMethodDescriptionstatic CustomActionProperty.Builderbuilder()default StringThe description of the property.default BooleangetKey()Whether this property is a key.getName()The name of the property.default BooleanWhether this property is queryable.Whether this property is required.default BooleanWhether this property is secret, like a password, or access key.default StringgetType()The type of the property, like 'String', 'Number', or 'Boolean'.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the property.You use this name in the
configurationattribute when defining your custom Action class. -
getRequired
Whether this property is required. -
getDescription
The description of the property.Default: the description will be empty
-
getKey
Whether this property is a key.Default: false
- See Also:
-
getQueryable
Whether this property is queryable.Note that only a single property of a custom Action can be queryable.
Default: false
- See Also:
-
getSecret
Whether this property is secret, like a password, or access key.Default: false
-
getType
The type of the property, like 'String', 'Number', or 'Boolean'.Default: 'String'
-
builder
- Returns:
- a
CustomActionProperty.BuilderofCustomActionProperty
-