aws-sdk-groundstation 1.86.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 [`CreateDataflowEndpointGroup`](crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`endpoint_details(EndpointDetails)`](crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder::endpoint_details) / [`set_endpoint_details(Option<Vec::<EndpointDetails>>)`](crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder::set_endpoint_details):<br>required: **true**<br><p>Endpoint details of each endpoint in the dataflow endpoint group. All dataflow endpoints within a single dataflow endpoint group must be of the same type. You cannot mix <a href="https://docs.aws.amazon.com/ground-station/latest/APIReference/API_AwsGroundStationAgentEndpoint.html"> AWS Ground Station Agent endpoints</a> with <a href="https://docs.aws.amazon.com/ground-station/latest/APIReference/API_DataflowEndpoint.html">Dataflow endpoints</a> in the same group. If your use case requires both types of endpoints, you must create separate dataflow endpoint groups for each type.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder::set_tags):<br>required: **false**<br><p>Tags of a dataflow endpoint group.</p><br>
    ///   - [`contact_pre_pass_duration_seconds(i32)`](crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder::contact_pre_pass_duration_seconds) / [`set_contact_pre_pass_duration_seconds(Option<i32>)`](crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder::set_contact_pre_pass_duration_seconds):<br>required: **false**<br><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><br>
    ///   - [`contact_post_pass_duration_seconds(i32)`](crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder::contact_post_pass_duration_seconds) / [`set_contact_post_pass_duration_seconds(Option<i32>)`](crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder::set_contact_post_pass_duration_seconds):<br>required: **false**<br><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><br>
    /// - On success, responds with [`CreateDataflowEndpointGroupOutput`](crate::operation::create_dataflow_endpoint_group::CreateDataflowEndpointGroupOutput) with field(s):
    ///   - [`dataflow_endpoint_group_id(Option<String>)`](crate::operation::create_dataflow_endpoint_group::CreateDataflowEndpointGroupOutput::dataflow_endpoint_group_id): <p>UUID of a dataflow endpoint group.</p>
    /// - On failure, responds with [`SdkError<CreateDataflowEndpointGroupError>`](crate::operation::create_dataflow_endpoint_group::CreateDataflowEndpointGroupError)
    pub fn create_dataflow_endpoint_group(
        &self,
    ) -> crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder {
        crate::operation::create_dataflow_endpoint_group::builders::CreateDataflowEndpointGroupFluentBuilder::new(self.handle.clone())
    }
}