1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetScheduleGroup`](crate::operation::get_schedule_group::builders::GetScheduleGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::get_schedule_group::builders::GetScheduleGroupFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_schedule_group::builders::GetScheduleGroupFluentBuilder::set_name): <p>The name of the schedule group to retrieve.</p>
    /// - On success, responds with [`GetScheduleGroupOutput`](crate::operation::get_schedule_group::GetScheduleGroupOutput) with field(s):
    ///   - [`arn(Option<String>)`](crate::operation::get_schedule_group::GetScheduleGroupOutput::arn): <p>The Amazon Resource Name (ARN) of the schedule group.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_schedule_group::GetScheduleGroupOutput::name): <p>The name of the schedule group.</p>
    ///   - [`state(Option<ScheduleGroupState>)`](crate::operation::get_schedule_group::GetScheduleGroupOutput::state): <p>Specifies the state of the schedule group.</p>
    ///   - [`creation_date(Option<DateTime>)`](crate::operation::get_schedule_group::GetScheduleGroupOutput::creation_date): <p>The time at which the schedule group was created.</p>
    ///   - [`last_modification_date(Option<DateTime>)`](crate::operation::get_schedule_group::GetScheduleGroupOutput::last_modification_date): <p>The time at which the schedule group was last modified.</p>
    /// - On failure, responds with [`SdkError<GetScheduleGroupError>`](crate::operation::get_schedule_group::GetScheduleGroupError)
    pub fn get_schedule_group(&self) -> crate::operation::get_schedule_group::builders::GetScheduleGroupFluentBuilder {
        crate::operation::get_schedule_group::builders::GetScheduleGroupFluentBuilder::new(self.handle.clone())
    }
}