1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetDeploymentGroup`](crate::operation::get_deployment_group::builders::GetDeploymentGroupFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`application_name(impl Into<String>)`](crate::operation::get_deployment_group::builders::GetDeploymentGroupFluentBuilder::application_name) / [`set_application_name(Option<String>)`](crate::operation::get_deployment_group::builders::GetDeploymentGroupFluentBuilder::set_application_name): <p>The name of an CodeDeploy application associated with the IAM user or Amazon Web Services account.</p>
/// - [`deployment_group_name(impl Into<String>)`](crate::operation::get_deployment_group::builders::GetDeploymentGroupFluentBuilder::deployment_group_name) / [`set_deployment_group_name(Option<String>)`](crate::operation::get_deployment_group::builders::GetDeploymentGroupFluentBuilder::set_deployment_group_name): <p>The name of a deployment group for the specified application.</p>
/// - On success, responds with [`GetDeploymentGroupOutput`](crate::operation::get_deployment_group::GetDeploymentGroupOutput) with field(s):
/// - [`deployment_group_info(Option<DeploymentGroupInfo>)`](crate::operation::get_deployment_group::GetDeploymentGroupOutput::deployment_group_info): <p>Information about the deployment group.</p>
/// - On failure, responds with [`SdkError<GetDeploymentGroupError>`](crate::operation::get_deployment_group::GetDeploymentGroupError)
pub fn get_deployment_group(
&self,
) -> crate::operation::get_deployment_group::builders::GetDeploymentGroupFluentBuilder {
crate::operation::get_deployment_group::builders::GetDeploymentGroupFluentBuilder::new(
self.handle.clone(),
)
}
}