aws-sdk-groundstation 1.105.0

AWS SDK for AWS Ground Station
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeEphemeris`](crate::operation::describe_ephemeris::builders::DescribeEphemerisFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`ephemeris_id(impl Into<String>)`](crate::operation::describe_ephemeris::builders::DescribeEphemerisFluentBuilder::ephemeris_id) / [`set_ephemeris_id(Option<String>)`](crate::operation::describe_ephemeris::builders::DescribeEphemerisFluentBuilder::set_ephemeris_id):<br>required: **true**<br><p>The AWS Ground Station ephemeris ID.</p><br>
    /// - On success, responds with [`DescribeEphemerisOutput`](crate::operation::describe_ephemeris::DescribeEphemerisOutput) with field(s):
    ///   - [`ephemeris_id(Option<String>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::ephemeris_id): <p>The AWS Ground Station ephemeris ID.</p>
    ///   - [`satellite_id(Option<String>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::satellite_id): <p>The AWS Ground Station satellite ID associated with ephemeris.</p>
    ///   - [`status(Option<EphemerisStatus>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::status): <p>The status of the ephemeris.</p>
    ///   - [`priority(Option<i32>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::priority): <p>A priority score that determines which ephemeris to use when multiple ephemerides overlap.</p> <p>Higher numbers take precedence. The default is 1. Must be 1 or greater.</p>
    ///   - [`creation_time(Option<DateTime>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::creation_time): <p>The time the ephemeris was uploaded in UTC.</p>
    ///   - [`enabled(Option<bool>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::enabled): <p>Whether or not the ephemeris is enabled.</p>
    ///   - [`name(Option<String>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::name): <p>A name that you can use to identify the ephemeris.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::tags): <p>Tags assigned to an ephemeris.</p>
    ///   - [`supplied_data(Option<EphemerisTypeDescription>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::supplied_data): <p>Supplied ephemeris data.</p>
    ///   - [`invalid_reason(Option<EphemerisInvalidReason>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::invalid_reason): <p>Reason that an ephemeris failed validation. Appears only when the status is <code>INVALID</code>.</p>
    ///   - [`error_reasons(Option<Vec::<EphemerisErrorReason>>)`](crate::operation::describe_ephemeris::DescribeEphemerisOutput::error_reasons): <p>Detailed error information for ephemerides with <code>INVALID</code> status.</p> <p>Provides specific error codes and messages to help diagnose validation failures.</p>
    /// - On failure, responds with [`SdkError<DescribeEphemerisError>`](crate::operation::describe_ephemeris::DescribeEphemerisError)
    pub fn describe_ephemeris(&self) -> crate::operation::describe_ephemeris::builders::DescribeEphemerisFluentBuilder {
        crate::operation::describe_ephemeris::builders::DescribeEphemerisFluentBuilder::new(self.handle.clone())
    }
}