@Generated(value="software.amazon.awssdk:codegen") public class CreateCustomActionTypeRequest extends CodePipelineRequest implements ToCopyableBuilder<CreateCustomActionTypeRequest.Builder,CreateCustomActionTypeRequest>
Represents the input of a CreateCustomActionType operation.
Modifier and Type | Class and Description |
---|---|
static interface |
CreateCustomActionTypeRequest.Builder |
Modifier and Type | Method and Description |
---|---|
static CreateCustomActionTypeRequest.Builder |
builder() |
ActionCategory |
category()
The category of the custom action, such as a build action or a test action.
|
String |
categoryAsString()
The category of the custom action, such as a build action or a test action.
|
List<ActionConfigurationProperty> |
configurationProperties()
The configuration properties for the custom action.
|
boolean |
equals(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz)
Used to retrieve the value of a field from any class that extends
SdkRequest . |
int |
hashCode() |
ArtifactDetails |
inputArtifactDetails()
The details of the input artifact for the action, such as its commit ID.
|
ArtifactDetails |
outputArtifactDetails()
The details of the output artifact of the action, such as its commit ID.
|
String |
provider()
The provider of the service used in the custom action, such as AWS CodeDeploy.
|
static Class<? extends CreateCustomActionTypeRequest.Builder> |
serializableBuilderClass() |
ActionTypeSettings |
settings()
Returns information about the settings for an action type.
|
CreateCustomActionTypeRequest.Builder |
toBuilder()
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
String |
version()
The version identifier of the custom action.
|
requestOverrideConfig
copy
public ActionCategory category()
The category of the custom action, such as a build action or a test action.
Although Source and Approval are listed as valid values, they are not currently functional. These values are reserved for future use.
If the service returns an enum value that is not available in the current SDK version, category
will
return ActionCategory.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available from
categoryAsString()
.
Although Source and Approval are listed as valid values, they are not currently functional. These values are reserved for future use.
ActionCategory
public String categoryAsString()
The category of the custom action, such as a build action or a test action.
Although Source and Approval are listed as valid values, they are not currently functional. These values are reserved for future use.
If the service returns an enum value that is not available in the current SDK version, category
will
return ActionCategory.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available from
categoryAsString()
.
Although Source and Approval are listed as valid values, they are not currently functional. These values are reserved for future use.
ActionCategory
public String provider()
The provider of the service used in the custom action, such as AWS CodeDeploy.
public String version()
The version identifier of the custom action.
public ActionTypeSettings settings()
Returns information about the settings for an action type.
public List<ActionConfigurationProperty> configurationProperties()
The configuration properties for the custom action.
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.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
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.
public ArtifactDetails inputArtifactDetails()
The details of the input artifact for the action, such as its commit ID.
public ArtifactDetails outputArtifactDetails()
The details of the output artifact of the action, such as its commit ID.
public CreateCustomActionTypeRequest.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<CreateCustomActionTypeRequest.Builder,CreateCustomActionTypeRequest>
toBuilder
in class CodePipelineRequest
public static CreateCustomActionTypeRequest.Builder builder()
public static Class<? extends CreateCustomActionTypeRequest.Builder> serializableBuilderClass()
public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
SdkRequest
SdkRequest
. The field name
specified should match the member name from the corresponding service-2.json model specified in the
codegen-resources folder for a given service. The class specifies what class to cast the returned value to.
If the returned value is also a modeled class, the SdkRequest.getValueForField(String, Class)
method will
again be available.getValueForField
in class SdkRequest
fieldName
- The name of the member to be retrieved.clazz
- The class to cast the returned object to.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.