Interface CfnCustomActionType.ConfigurationPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomActionType.ConfigurationPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnCustomActionType
You can refer to a name in the configuration properties of the custom action within the URL templates by following the format of {Config:name}, as long as the configuration property is both required and not secret. For more information, see Create a Custom Action for a Pipeline .
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.*; ConfigurationPropertiesProperty configurationPropertiesProperty = ConfigurationPropertiesProperty.builder() .key(false) .name("name") .required(false) .secret(false) // the properties below are optional .description("description") .queryable(false) .type("type") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCustomActionType.ConfigurationPropertiesProperty
static final class
An implementation forCfnCustomActionType.ConfigurationPropertiesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The description of the action configuration property that is displayed to users.getKey()
Whether the configuration property is a key.getName()
The name of the action configuration property.default Object
Indicates that the property is used withPollForJobs
.Whether the configuration property is a required value.Whether the configuration property is secret.default String
getType()
The type of the configuration property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
Whether the configuration property is a key.- See Also:
-
getName
The name of the action configuration property.- See Also:
-
getRequired
Whether the configuration property is a required value.- See Also:
-
getSecret
Whether the configuration property is secret.Secrets are hidden from all calls except for
GetJobDetails
,GetThirdPartyJobDetails
,PollForJobs
, andPollForThirdPartyJobs
.When updating a pipeline, passing * * * * * without changing any other values of the action preserves the previous value of the secret.
- See Also:
-
getDescription
The description of the action configuration property that is displayed to users.- See Also:
-
getQueryable
Indicates that the property is used withPollForJobs
.When creating a custom action, an action can have up to one queryable property. If it has one, that property must be both required and not secret.
If you create a pipeline with a custom action type, and that custom action contains a queryable property, the value for that configuration property is subject to other restrictions. The value must be less than or equal to twenty (20) characters. The value can contain only alphanumeric characters, underscores, and hyphens.
- See Also:
-
getType
The type of the configuration property.- See Also:
-
builder
-