aws-sdk-groundstation 1.80.0

AWS SDK for AWS Ground Station
Documentation
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 [`GetDataflowEndpointGroup`](crate::operation::get_dataflow_endpoint_group::builders::GetDataflowEndpointGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`dataflow_endpoint_group_id(impl Into<String>)`](crate::operation::get_dataflow_endpoint_group::builders::GetDataflowEndpointGroupFluentBuilder::dataflow_endpoint_group_id) / [`set_dataflow_endpoint_group_id(Option<String>)`](crate::operation::get_dataflow_endpoint_group::builders::GetDataflowEndpointGroupFluentBuilder::set_dataflow_endpoint_group_id):<br>required: **true**<br><p>UUID of a dataflow endpoint group.</p><br>
    /// - On success, responds with [`GetDataflowEndpointGroupOutput`](crate::operation::get_dataflow_endpoint_group::GetDataflowEndpointGroupOutput) with field(s):
    ///   - [`dataflow_endpoint_group_id(Option<String>)`](crate::operation::get_dataflow_endpoint_group::GetDataflowEndpointGroupOutput::dataflow_endpoint_group_id): <p>UUID of a dataflow endpoint group.</p>
    ///   - [`dataflow_endpoint_group_arn(Option<String>)`](crate::operation::get_dataflow_endpoint_group::GetDataflowEndpointGroupOutput::dataflow_endpoint_group_arn): <p>ARN of a dataflow endpoint group.</p>
    ///   - [`endpoints_details(Option<Vec::<EndpointDetails>>)`](crate::operation::get_dataflow_endpoint_group::GetDataflowEndpointGroupOutput::endpoints_details): <p>Details of a dataflow endpoint.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_dataflow_endpoint_group::GetDataflowEndpointGroupOutput::tags): <p>Tags assigned to a dataflow endpoint group.</p>
    ///   - [`contact_pre_pass_duration_seconds(Option<i32>)`](crate::operation::get_dataflow_endpoint_group::GetDataflowEndpointGroupOutput::contact_pre_pass_duration_seconds): <p>Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a <code>PREPASS</code> state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the <code>PREPASS</code> state.</p>
    ///   - [`contact_post_pass_duration_seconds(Option<i32>)`](crate::operation::get_dataflow_endpoint_group::GetDataflowEndpointGroupOutput::contact_post_pass_duration_seconds): <p>Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a <code>POSTPASS</code> state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the <code>POSTPASS</code> state.</p>
    /// - On failure, responds with [`SdkError<GetDataflowEndpointGroupError>`](crate::operation::get_dataflow_endpoint_group::GetDataflowEndpointGroupError)
    pub fn get_dataflow_endpoint_group(&self) -> crate::operation::get_dataflow_endpoint_group::builders::GetDataflowEndpointGroupFluentBuilder {
        crate::operation::get_dataflow_endpoint_group::builders::GetDataflowEndpointGroupFluentBuilder::new(self.handle.clone())
    }
}