[][src]Struct rusoto_transfer::ListedServer

pub struct ListedServer {
    pub arn: String,
    pub endpoint_type: Option<String>,
    pub identity_provider_type: Option<String>,
    pub logging_role: Option<String>,
    pub server_id: Option<String>,
    pub state: Option<String>,
    pub user_count: Option<i64>,
}

Returns properties of a file transfer protocol-enabled server that was specified.

Fields

arn: String

Specifies the unique Amazon Resource Name (ARN) for a server to be listed.

endpoint_type: Option<String>

Specifies the type of VPC endpoint that your server is connected to. If your server is connected to a VPC endpoint, your server isn't accessible over the public internet.

identity_provider_type: Option<String>

Specifies the authentication method used to validate a user for a server that was specified. This can include Secure Shell (SSH), user name and password combinations, or your own custom authentication method. Valid values include SERVICE_MANAGED or API_GATEWAY.

logging_role: Option<String>

Specifies the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging.

server_id: Option<String>

Specifies the unique system assigned identifier for the servers that were listed.

state: Option<String>

Specifies the condition of a server for the server that was described. A value of ONLINE indicates that the server can accept jobs and transfer files. A State value of OFFLINE means that the server cannot perform file transfer operations.

The states of STARTING and STOPPING indicate that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of START_FAILED or STOP_FAILED can indicate an error condition.

user_count: Option<i64>

Specifies the number of users that are assigned to a server you specified with the ServerId.

Trait Implementations

impl Clone for ListedServer[src]

impl Debug for ListedServer[src]

impl Default for ListedServer[src]

impl<'de> Deserialize<'de> for ListedServer[src]

impl PartialEq<ListedServer> for ListedServer[src]

impl StructuralPartialEq for ListedServer[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.