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>,
}Expand description
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§
Source§impl Clone for Connection
impl Clone for Connection
Source§fn clone(&self) -> Connection
fn clone(&self) -> Connection
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more