[][src]Struct rusoto_codestar_connections::Connection

pub struct Connection {
    pub connection_arn: Option<String>,
    pub connection_name: Option<String>,
    pub connection_status: Option<String>,
    pub host_arn: Option<String>,
    pub owner_account_id: Option<String>,
    pub provider_type: Option<String>,
}

A resource that is used to connect third-party source providers with services like AWS CodePipeline.

Note: A connection created through CloudFormation, the CLI, or the SDK is in `PENDING` status by default. You can make its status `AVAILABLE` by updating the connection in the console.

Fields

connection_arn: Option<String>

The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.

The ARN is never reused if the connection is deleted.

connection_name: Option<String>

The name of the connection. Connection names must be unique in an AWS user account.

connection_status: Option<String>

The current status of the connection.

host_arn: Option<String>

The Amazon Resource Name (ARN) of the host associated with the connection.

owner_account_id: Option<String>

The identifier of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.

provider_type: Option<String>

The name of the external provider where your third-party code repository is configured. The valid provider type is Bitbucket.

Trait Implementations

impl Clone for Connection[src]

impl Debug for Connection[src]

impl Default for Connection[src]

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

impl PartialEq<Connection> for Connection[src]

impl StructuralPartialEq for Connection[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> 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.