Struct aws_sdk_codepipeline::output::get_pipeline_output::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for GetPipelineOutput.
Implementations§
source§impl Builder
impl Builder
sourcepub fn pipeline(self, input: PipelineDeclaration) -> Self
pub fn pipeline(self, input: PipelineDeclaration) -> Self
Represents the structure of actions and stages to be performed in the pipeline.
sourcepub fn set_pipeline(self, input: Option<PipelineDeclaration>) -> Self
pub fn set_pipeline(self, input: Option<PipelineDeclaration>) -> Self
Represents the structure of actions and stages to be performed in the pipeline.
Examples found in repository?
src/json_deser.rs (lines 1210-1214)
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
pub(crate) fn deser_operation_crate_operation_get_pipeline(
value: &[u8],
mut builder: crate::output::get_pipeline_output::Builder,
) -> Result<
crate::output::get_pipeline_output::Builder,
aws_smithy_json::deserialize::error::DeserializeError,
> {
let mut tokens_owned =
aws_smithy_json::deserialize::json_token_iter(crate::json_deser::or_empty_doc(value))
.peekable();
let tokens = &mut tokens_owned;
aws_smithy_json::deserialize::token::expect_start_object(tokens.next())?;
loop {
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => {
match key.to_unescaped()?.as_ref() {
"pipeline" => {
builder = builder.set_pipeline(
crate::json_deser::deser_structure_crate_model_pipeline_declaration(
tokens,
)?,
);
}
"metadata" => {
builder = builder.set_metadata(
crate::json_deser::deser_structure_crate_model_pipeline_metadata(
tokens,
)?,
);
}
_ => aws_smithy_json::deserialize::token::skip_value(tokens)?,
}
}
other => {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {:?}",
other
)),
)
}
}
}
if tokens.next().is_some() {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"found more JSON tokens after completing parsing",
),
);
}
Ok(builder)
}sourcepub fn metadata(self, input: PipelineMetadata) -> Self
pub fn metadata(self, input: PipelineMetadata) -> Self
Represents the pipeline metadata information returned as part of the output of a GetPipeline action.
sourcepub fn set_metadata(self, input: Option<PipelineMetadata>) -> Self
pub fn set_metadata(self, input: Option<PipelineMetadata>) -> Self
Represents the pipeline metadata information returned as part of the output of a GetPipeline action.
Examples found in repository?
src/json_deser.rs (lines 1217-1221)
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
pub(crate) fn deser_operation_crate_operation_get_pipeline(
value: &[u8],
mut builder: crate::output::get_pipeline_output::Builder,
) -> Result<
crate::output::get_pipeline_output::Builder,
aws_smithy_json::deserialize::error::DeserializeError,
> {
let mut tokens_owned =
aws_smithy_json::deserialize::json_token_iter(crate::json_deser::or_empty_doc(value))
.peekable();
let tokens = &mut tokens_owned;
aws_smithy_json::deserialize::token::expect_start_object(tokens.next())?;
loop {
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => {
match key.to_unescaped()?.as_ref() {
"pipeline" => {
builder = builder.set_pipeline(
crate::json_deser::deser_structure_crate_model_pipeline_declaration(
tokens,
)?,
);
}
"metadata" => {
builder = builder.set_metadata(
crate::json_deser::deser_structure_crate_model_pipeline_metadata(
tokens,
)?,
);
}
_ => aws_smithy_json::deserialize::token::skip_value(tokens)?,
}
}
other => {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {:?}",
other
)),
)
}
}
}
if tokens.next().is_some() {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"found more JSON tokens after completing parsing",
),
);
}
Ok(builder)
}sourcepub fn build(self) -> GetPipelineOutput
pub fn build(self) -> GetPipelineOutput
Consumes the builder and constructs a GetPipelineOutput.
Examples found in repository?
src/operation_deser.rs (line 1209)
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
pub fn parse_get_pipeline_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<crate::output::GetPipelineOutput, crate::error::GetPipelineError> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::get_pipeline_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_get_pipeline(
response.body().as_ref(),
output,
)
.map_err(crate::error::GetPipelineError::unhandled)?;
output.build()
})
}