public static interface CfnCustomActionType.ConfigurationPropertiesProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCustomActionType.ConfigurationPropertiesProperty.Builder
A builder for
CfnCustomActionType.ConfigurationPropertiesProperty |
static class |
CfnCustomActionType.ConfigurationPropertiesProperty.Jsii$Proxy
An implementation for
CfnCustomActionType.ConfigurationPropertiesProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCustomActionType.ConfigurationPropertiesProperty.Builder |
builder() |
default java.lang.String |
getDescription()
The description of the action configuration property that is displayed to users.
|
java.lang.Object |
getKey()
Whether the configuration property is a key.
|
java.lang.String |
getName()
The name of the action configuration property.
|
default java.lang.Object |
getQueryable()
Indicates that the property is used with `PollForJobs` .
|
java.lang.Object |
getRequired()
Whether the configuration property is a required value.
|
java.lang.Object |
getSecret()
Whether the configuration property is secret.
|
default java.lang.String |
getType()
The type of the configuration property.
|
java.lang.Object getKey()
java.lang.String getName()
java.lang.Object getRequired()
java.lang.Object getSecret()
Secrets are hidden from all calls except for GetJobDetails
, GetThirdPartyJobDetails
, PollForJobs
, and PollForThirdPartyJobs
.
When updating a pipeline, passing * * * * * without changing any other values of the action preserves the previous value of the secret.
default java.lang.String getDescription()
default java.lang.Object getQueryable()
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.
default java.lang.String getType()