public static interface ActionConfigurationProperty.Builder extends SdkPojo, CopyableBuilder<ActionConfigurationProperty.Builder,ActionConfigurationProperty>
Modifier and Type | Method and Description |
---|---|
ActionConfigurationProperty.Builder |
description(String description)
The description of the action configuration property that will be displayed to users.
|
ActionConfigurationProperty.Builder |
key(Boolean key)
Whether the configuration property is a key.
|
ActionConfigurationProperty.Builder |
name(String name)
The name of the action configuration property.
|
ActionConfigurationProperty.Builder |
queryable(Boolean queryable)
Indicates that the property will be used in conjunction with PollForJobs.
|
ActionConfigurationProperty.Builder |
required(Boolean required)
Whether the configuration property is a required value.
|
ActionConfigurationProperty.Builder |
secret(Boolean secret)
Whether the configuration property is secret.
|
ActionConfigurationProperty.Builder |
type(ActionConfigurationPropertyType type)
The type of the configuration property.
|
ActionConfigurationProperty.Builder |
type(String type)
The type of the configuration property.
|
copy
applyMutation, build
ActionConfigurationProperty.Builder name(String name)
The name of the action configuration property.
name
- The name of the action configuration property.ActionConfigurationProperty.Builder required(Boolean required)
Whether the configuration property is a required value.
required
- Whether the configuration property is a required value.ActionConfigurationProperty.Builder key(Boolean key)
Whether the configuration property is a key.
key
- Whether the configuration property is a key.ActionConfigurationProperty.Builder secret(Boolean secret)
Whether the configuration property is secret. 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 will preserve the prior value of the secret.
secret
- Whether the configuration property is secret. 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 will preserve the prior value of the secret.
ActionConfigurationProperty.Builder queryable(Boolean queryable)
Indicates that the property will be used in conjunction with PollForJobs. 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 additional restrictions. The value must be less than or equal to twenty (20) characters. The value can contain only alphanumeric characters, underscores, and hyphens.
queryable
- Indicates that the property will be used in conjunction with PollForJobs. 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 additional restrictions. The value must be less than or equal to twenty (20) characters. The value can contain only alphanumeric characters, underscores, and hyphens.
ActionConfigurationProperty.Builder description(String description)
The description of the action configuration property that will be displayed to users.
description
- The description of the action configuration property that will be displayed to users.ActionConfigurationProperty.Builder type(String type)
The type of the configuration property.
type
- The type of the configuration property.ActionConfigurationPropertyType
,
ActionConfigurationPropertyType
ActionConfigurationProperty.Builder type(ActionConfigurationPropertyType type)
The type of the configuration property.
type
- The type of the configuration property.ActionConfigurationPropertyType
,
ActionConfigurationPropertyType
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.