Interface GetPipelineResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodePipelineResponse.Builder,CopyableBuilder<GetPipelineResponse.Builder,GetPipelineResponse>,SdkBuilder<GetPipelineResponse.Builder,GetPipelineResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetPipelineResponse
public static interface GetPipelineResponse.Builder extends CodePipelineResponse.Builder, SdkPojo, CopyableBuilder<GetPipelineResponse.Builder,GetPipelineResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetPipelineResponse.Buildermetadata(Consumer<PipelineMetadata.Builder> metadata)Represents the pipeline metadata information returned as part of the output of aGetPipelineaction.GetPipelineResponse.Buildermetadata(PipelineMetadata metadata)Represents the pipeline metadata information returned as part of the output of aGetPipelineaction.default GetPipelineResponse.Builderpipeline(Consumer<PipelineDeclaration.Builder> pipeline)Represents the structure of actions and stages to be performed in the pipeline.GetPipelineResponse.Builderpipeline(PipelineDeclaration pipeline)Represents the structure of actions and stages to be performed in the pipeline.-
Methods inherited from interface software.amazon.awssdk.services.codepipeline.model.CodePipelineResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
pipeline
GetPipelineResponse.Builder pipeline(PipelineDeclaration pipeline)
Represents the structure of actions and stages to be performed in the pipeline.
- Parameters:
pipeline- Represents the structure of actions and stages to be performed in the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipeline
default GetPipelineResponse.Builder pipeline(Consumer<PipelineDeclaration.Builder> pipeline)
Represents the structure of actions and stages to be performed in the pipeline.
This is a convenience method that creates an instance of thePipelineDeclaration.Builderavoiding the need to create one manually viaPipelineDeclaration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topipeline(PipelineDeclaration).- Parameters:
pipeline- a consumer that will call methods onPipelineDeclaration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
pipeline(PipelineDeclaration)
-
metadata
GetPipelineResponse.Builder metadata(PipelineMetadata metadata)
Represents the pipeline metadata information returned as part of the output of a
GetPipelineaction.- Parameters:
metadata- Represents the pipeline metadata information returned as part of the output of aGetPipelineaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metadata
default GetPipelineResponse.Builder metadata(Consumer<PipelineMetadata.Builder> metadata)
Represents the pipeline metadata information returned as part of the output of a
This is a convenience method that creates an instance of theGetPipelineaction.PipelineMetadata.Builderavoiding the need to create one manually viaPipelineMetadata.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tometadata(PipelineMetadata).- Parameters:
metadata- a consumer that will call methods onPipelineMetadata.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
metadata(PipelineMetadata)
-
-