#[non_exhaustive]pub struct DiscoverPollEndpointOutput {
pub endpoint: Option<String>,
pub telemetry_endpoint: Option<String>,
pub service_connect_endpoint: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.endpoint: Option<String>
The endpoint for the Amazon ECS agent to poll.
telemetry_endpoint: Option<String>
The telemetry endpoint for the Amazon ECS agent.
service_connect_endpoint: Option<String>
The endpoint for the Amazon ECS agent to poll for Service Connect configuration. For more information, see Service Connect in the Amazon Elastic Container Service Developer Guide.
Implementations§
source§impl DiscoverPollEndpointOutput
impl DiscoverPollEndpointOutput
sourcepub fn telemetry_endpoint(&self) -> Option<&str>
pub fn telemetry_endpoint(&self) -> Option<&str>
The telemetry endpoint for the Amazon ECS agent.
sourcepub fn service_connect_endpoint(&self) -> Option<&str>
pub fn service_connect_endpoint(&self) -> Option<&str>
The endpoint for the Amazon ECS agent to poll for Service Connect configuration. For more information, see Service Connect in the Amazon Elastic Container Service Developer Guide.
source§impl DiscoverPollEndpointOutput
impl DiscoverPollEndpointOutput
sourcepub fn builder() -> DiscoverPollEndpointOutputBuilder
pub fn builder() -> DiscoverPollEndpointOutputBuilder
Creates a new builder-style object to manufacture DiscoverPollEndpointOutput
.
Trait Implementations§
source§impl Clone for DiscoverPollEndpointOutput
impl Clone for DiscoverPollEndpointOutput
source§fn clone(&self) -> DiscoverPollEndpointOutput
fn clone(&self) -> DiscoverPollEndpointOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DiscoverPollEndpointOutput
impl Debug for DiscoverPollEndpointOutput
source§impl PartialEq<DiscoverPollEndpointOutput> for DiscoverPollEndpointOutput
impl PartialEq<DiscoverPollEndpointOutput> for DiscoverPollEndpointOutput
source§fn eq(&self, other: &DiscoverPollEndpointOutput) -> bool
fn eq(&self, other: &DiscoverPollEndpointOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DiscoverPollEndpointOutput
impl RequestId for DiscoverPollEndpointOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DiscoverPollEndpointOutput
Auto Trait Implementations§
impl RefUnwindSafe for DiscoverPollEndpointOutput
impl Send for DiscoverPollEndpointOutput
impl Sync for DiscoverPollEndpointOutput
impl Unpin for DiscoverPollEndpointOutput
impl UnwindSafe for DiscoverPollEndpointOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more