aws-sdk-groundstation 1.105.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 [`CreateDataflowEndpointGroupV2`](crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`endpoints(CreateEndpointDetails)`](crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder::endpoints) / [`set_endpoints(Option<Vec::<CreateEndpointDetails>>)`](crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder::set_endpoints):<br>required: **true**<br><p>Dataflow endpoint group's endpoint definitions</p><br>
    ///   - [`contact_pre_pass_duration_seconds(i32)`](crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder::contact_pre_pass_duration_seconds) / [`set_contact_pre_pass_duration_seconds(Option<i32>)`](crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder::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 <a href="https://docs.aws.amazon.com/ground-station/latest/ug/monitoring.automating-events.html">Ground Station Dataflow Endpoint Group State Change event</a> 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_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder::contact_post_pass_duration_seconds) / [`set_contact_post_pass_duration_seconds(Option<i32>)`](crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder::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 <a href="https://docs.aws.amazon.com/ground-station/latest/ug/monitoring.automating-events.html">Ground Station Dataflow Endpoint Group State Change event</a> will be emitted when the Dataflow Endpoint Group enters and exits the <code>POSTPASS</code> state.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder::set_tags):<br>required: **false**<br><p>Tags of a V2 dataflow endpoint group.</p><br>
    /// - On success, responds with [`CreateDataflowEndpointGroupV2Output`](crate::operation::create_dataflow_endpoint_group_v2::CreateDataflowEndpointGroupV2Output) with field(s):
    ///   - [`dataflow_endpoint_group_id(Option<String>)`](crate::operation::create_dataflow_endpoint_group_v2::CreateDataflowEndpointGroupV2Output::dataflow_endpoint_group_id): <p>Dataflow endpoint group ID</p>
    /// - On failure, responds with [`SdkError<CreateDataflowEndpointGroupV2Error>`](crate::operation::create_dataflow_endpoint_group_v2::CreateDataflowEndpointGroupV2Error)
    pub fn create_dataflow_endpoint_group_v2(
        &self,
    ) -> crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder {
        crate::operation::create_dataflow_endpoint_group_v2::builders::CreateDataflowEndpointGroupV2FluentBuilder::new(self.handle.clone())
    }
}