#[non_exhaustive]
pub struct GetRouteOutput {
Show 18 fields pub route_id: Option<String>, pub arn: Option<String>, pub owner_account_id: Option<String>, pub created_by_account_id: Option<String>, pub route_type: Option<RouteType>, pub service_id: Option<String>, pub application_id: Option<String>, pub environment_id: Option<String>, pub source_path: Option<String>, pub methods: Option<Vec<HttpMethod>>, pub include_child_paths: Option<bool>, pub path_resource_to_id: Option<HashMap<String, String>>, pub state: Option<RouteState>, pub tags: Option<HashMap<String, String>>, pub error: Option<ErrorResponse>, pub last_updated_time: Option<DateTime>, pub created_time: Option<DateTime>, pub append_source_path: Option<bool>, /* 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.
§route_id: Option<String>

The unique identifier of the route.

DEFAULT: All traffic that does not match another route is forwarded to the default route. Applications must have a default route before any other routes can be created.

URI_PATH: A route that is based on a URI path.

§arn: Option<String>

The Amazon Resource Name (ARN) of the route.

§owner_account_id: Option<String>

The Amazon Web Services account ID of the route owner.

§created_by_account_id: Option<String>

The Amazon Web Services account ID of the route creator.

§route_type: Option<RouteType>

The type of route.

§service_id: Option<String>

The unique identifier of the service.

§application_id: Option<String>

The ID of the application that the route belongs to.

§environment_id: Option<String>

Unique identifier of the environment.

§source_path: Option<String>

This is the path that Refactor Spaces uses to match traffic. Paths must start with / and are relative to the base of the application. To use path parameters in the source path, add a variable in curly braces. For example, the resource path {user} represents a path parameter called 'user'.

§methods: Option<Vec<HttpMethod>>

A list of HTTP methods to match. An empty list matches all values. If a method is present, only HTTP requests using that method are forwarded to this route’s service.

§include_child_paths: Option<bool>

Indicates whether to match all subpaths of the given source path. If this value is false, requests must match the source path exactly before they are forwarded to this route's service.

§path_resource_to_id: Option<HashMap<String, String>>

A mapping of Amazon API Gateway path resources to resource IDs.

§state: Option<RouteState>

The current state of the route.

§tags: Option<HashMap<String, String>>

The tags assigned to the route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

§error: Option<ErrorResponse>

Any error associated with the route resource.

§last_updated_time: Option<DateTime>

A timestamp that indicates when the route was last updated.

§created_time: Option<DateTime>

The timestamp of when the route is created.

§append_source_path: Option<bool>

If set to true, this option appends the source path to the service URL endpoint.

Implementations§

source§

impl GetRouteOutput

source

pub fn route_id(&self) -> Option<&str>

The unique identifier of the route.

DEFAULT: All traffic that does not match another route is forwarded to the default route. Applications must have a default route before any other routes can be created.

URI_PATH: A route that is based on a URI path.

source

pub fn arn(&self) -> Option<&str>

The Amazon Resource Name (ARN) of the route.

source

pub fn owner_account_id(&self) -> Option<&str>

The Amazon Web Services account ID of the route owner.

source

pub fn created_by_account_id(&self) -> Option<&str>

The Amazon Web Services account ID of the route creator.

source

pub fn route_type(&self) -> Option<&RouteType>

The type of route.

source

pub fn service_id(&self) -> Option<&str>

The unique identifier of the service.

source

pub fn application_id(&self) -> Option<&str>

The ID of the application that the route belongs to.

source

pub fn environment_id(&self) -> Option<&str>

Unique identifier of the environment.

source

pub fn source_path(&self) -> Option<&str>

This is the path that Refactor Spaces uses to match traffic. Paths must start with / and are relative to the base of the application. To use path parameters in the source path, add a variable in curly braces. For example, the resource path {user} represents a path parameter called 'user'.

source

pub fn methods(&self) -> &[HttpMethod]

A list of HTTP methods to match. An empty list matches all values. If a method is present, only HTTP requests using that method are forwarded to this route’s service.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .methods.is_none().

source

pub fn include_child_paths(&self) -> Option<bool>

Indicates whether to match all subpaths of the given source path. If this value is false, requests must match the source path exactly before they are forwarded to this route's service.

source

pub fn path_resource_to_id(&self) -> Option<&HashMap<String, String>>

A mapping of Amazon API Gateway path resources to resource IDs.

source

pub fn state(&self) -> Option<&RouteState>

The current state of the route.

source

pub fn tags(&self) -> Option<&HashMap<String, String>>

The tags assigned to the route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair.

source

pub fn error(&self) -> Option<&ErrorResponse>

Any error associated with the route resource.

source

pub fn last_updated_time(&self) -> Option<&DateTime>

A timestamp that indicates when the route was last updated.

source

pub fn created_time(&self) -> Option<&DateTime>

The timestamp of when the route is created.

source

pub fn append_source_path(&self) -> Option<bool>

If set to true, this option appends the source path to the service URL endpoint.

source§

impl GetRouteOutput

source

pub fn builder() -> GetRouteOutputBuilder

Creates a new builder-style object to manufacture GetRouteOutput.

Trait Implementations§

source§

impl Clone for GetRouteOutput

source§

fn clone(&self) -> GetRouteOutput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GetRouteOutput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for GetRouteOutput

source§

fn eq(&self, other: &GetRouteOutput) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl RequestId for GetRouteOutput

source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.
source§

impl StructuralPartialEq for GetRouteOutput

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Unshared, Shared> IntoShared<Shared> for Unsharedwhere Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more