1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p>The VPC configuration provisioned for the host.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct VpcConfiguration {
/// <p>The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
#[doc(hidden)]
pub vpc_id: std::option::Option<std::string::String>,
/// <p>The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
#[doc(hidden)]
pub subnet_ids: std::option::Option<std::vec::Vec<std::string::String>>,
/// <p>The ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
#[doc(hidden)]
pub security_group_ids: std::option::Option<std::vec::Vec<std::string::String>>,
/// <p>The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.</p>
#[doc(hidden)]
pub tls_certificate: std::option::Option<std::string::String>,
}
impl VpcConfiguration {
/// <p>The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
pub fn vpc_id(&self) -> std::option::Option<&str> {
self.vpc_id.as_deref()
}
/// <p>The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
pub fn subnet_ids(&self) -> std::option::Option<&[std::string::String]> {
self.subnet_ids.as_deref()
}
/// <p>The ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
pub fn security_group_ids(&self) -> std::option::Option<&[std::string::String]> {
self.security_group_ids.as_deref()
}
/// <p>The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.</p>
pub fn tls_certificate(&self) -> std::option::Option<&str> {
self.tls_certificate.as_deref()
}
}
/// See [`VpcConfiguration`](crate::model::VpcConfiguration).
pub mod vpc_configuration {
/// A builder for [`VpcConfiguration`](crate::model::VpcConfiguration).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) vpc_id: std::option::Option<std::string::String>,
pub(crate) subnet_ids: std::option::Option<std::vec::Vec<std::string::String>>,
pub(crate) security_group_ids: std::option::Option<std::vec::Vec<std::string::String>>,
pub(crate) tls_certificate: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
pub fn vpc_id(mut self, input: impl Into<std::string::String>) -> Self {
self.vpc_id = Some(input.into());
self
}
/// <p>The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
pub fn set_vpc_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.vpc_id = input;
self
}
/// Appends an item to `subnet_ids`.
///
/// To override the contents of this collection use [`set_subnet_ids`](Self::set_subnet_ids).
///
/// <p>The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
pub fn subnet_ids(mut self, input: impl Into<std::string::String>) -> Self {
let mut v = self.subnet_ids.unwrap_or_default();
v.push(input.into());
self.subnet_ids = Some(v);
self
}
/// <p>The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
pub fn set_subnet_ids(
mut self,
input: std::option::Option<std::vec::Vec<std::string::String>>,
) -> Self {
self.subnet_ids = input;
self
}
/// Appends an item to `security_group_ids`.
///
/// To override the contents of this collection use [`set_security_group_ids`](Self::set_security_group_ids).
///
/// <p>The ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
pub fn security_group_ids(mut self, input: impl Into<std::string::String>) -> Self {
let mut v = self.security_group_ids.unwrap_or_default();
v.push(input.into());
self.security_group_ids = Some(v);
self
}
/// <p>The ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.</p>
pub fn set_security_group_ids(
mut self,
input: std::option::Option<std::vec::Vec<std::string::String>>,
) -> Self {
self.security_group_ids = input;
self
}
/// <p>The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.</p>
pub fn tls_certificate(mut self, input: impl Into<std::string::String>) -> Self {
self.tls_certificate = Some(input.into());
self
}
/// <p>The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.</p>
pub fn set_tls_certificate(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.tls_certificate = input;
self
}
/// Consumes the builder and constructs a [`VpcConfiguration`](crate::model::VpcConfiguration).
pub fn build(self) -> crate::model::VpcConfiguration {
crate::model::VpcConfiguration {
vpc_id: self.vpc_id,
subnet_ids: self.subnet_ids,
security_group_ids: self.security_group_ids,
tls_certificate: self.tls_certificate,
}
}
}
}
impl VpcConfiguration {
/// Creates a new builder-style object to manufacture [`VpcConfiguration`](crate::model::VpcConfiguration).
pub fn builder() -> crate::model::vpc_configuration::Builder {
crate::model::vpc_configuration::Builder::default()
}
}
/// <p>A tag is a key-value pair that is used to manage the resource.</p>
/// <p>This tag is available for use by AWS services that support tags.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct Tag {
/// <p>The tag's key.</p>
#[doc(hidden)]
pub key: std::option::Option<std::string::String>,
/// <p>The tag's value.</p>
#[doc(hidden)]
pub value: std::option::Option<std::string::String>,
}
impl Tag {
/// <p>The tag's key.</p>
pub fn key(&self) -> std::option::Option<&str> {
self.key.as_deref()
}
/// <p>The tag's value.</p>
pub fn value(&self) -> std::option::Option<&str> {
self.value.as_deref()
}
}
/// See [`Tag`](crate::model::Tag).
pub mod tag {
/// A builder for [`Tag`](crate::model::Tag).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) key: std::option::Option<std::string::String>,
pub(crate) value: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The tag's key.</p>
pub fn key(mut self, input: impl Into<std::string::String>) -> Self {
self.key = Some(input.into());
self
}
/// <p>The tag's key.</p>
pub fn set_key(mut self, input: std::option::Option<std::string::String>) -> Self {
self.key = input;
self
}
/// <p>The tag's value.</p>
pub fn value(mut self, input: impl Into<std::string::String>) -> Self {
self.value = Some(input.into());
self
}
/// <p>The tag's value.</p>
pub fn set_value(mut self, input: std::option::Option<std::string::String>) -> Self {
self.value = input;
self
}
/// Consumes the builder and constructs a [`Tag`](crate::model::Tag).
pub fn build(self) -> crate::model::Tag {
crate::model::Tag {
key: self.key,
value: self.value,
}
}
}
}
impl Tag {
/// Creates a new builder-style object to manufacture [`Tag`](crate::model::Tag).
pub fn builder() -> crate::model::tag::Builder {
crate::model::tag::Builder::default()
}
}
/// <p>A resource that represents the infrastructure where a third-party provider is installed. The host is used when you create connections to an installed third-party provider type, such as GitHub Enterprise Server. You create one host for all connections to that provider.</p> <note>
/// <p>A host created through the CLI or the SDK is in `PENDING` status by default. You can make its status `AVAILABLE` by setting up the host in the console.</p>
/// </note>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct Host {
/// <p>The name of the host.</p>
#[doc(hidden)]
pub name: std::option::Option<std::string::String>,
/// <p>The Amazon Resource Name (ARN) of the host.</p>
#[doc(hidden)]
pub host_arn: std::option::Option<std::string::String>,
/// <p>The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.</p>
#[doc(hidden)]
pub provider_type: std::option::Option<crate::model::ProviderType>,
/// <p>The endpoint of the infrastructure where your provider type is installed.</p>
#[doc(hidden)]
pub provider_endpoint: std::option::Option<std::string::String>,
/// <p>The VPC configuration provisioned for the host.</p>
#[doc(hidden)]
pub vpc_configuration: std::option::Option<crate::model::VpcConfiguration>,
/// <p>The status of the host, such as PENDING, AVAILABLE, VPC_CONFIG_DELETING, VPC_CONFIG_INITIALIZING, and VPC_CONFIG_FAILED_INITIALIZATION.</p>
#[doc(hidden)]
pub status: std::option::Option<std::string::String>,
/// <p>The status description for the host.</p>
#[doc(hidden)]
pub status_message: std::option::Option<std::string::String>,
}
impl Host {
/// <p>The name of the host.</p>
pub fn name(&self) -> std::option::Option<&str> {
self.name.as_deref()
}
/// <p>The Amazon Resource Name (ARN) of the host.</p>
pub fn host_arn(&self) -> std::option::Option<&str> {
self.host_arn.as_deref()
}
/// <p>The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.</p>
pub fn provider_type(&self) -> std::option::Option<&crate::model::ProviderType> {
self.provider_type.as_ref()
}
/// <p>The endpoint of the infrastructure where your provider type is installed.</p>
pub fn provider_endpoint(&self) -> std::option::Option<&str> {
self.provider_endpoint.as_deref()
}
/// <p>The VPC configuration provisioned for the host.</p>
pub fn vpc_configuration(&self) -> std::option::Option<&crate::model::VpcConfiguration> {
self.vpc_configuration.as_ref()
}
/// <p>The status of the host, such as PENDING, AVAILABLE, VPC_CONFIG_DELETING, VPC_CONFIG_INITIALIZING, and VPC_CONFIG_FAILED_INITIALIZATION.</p>
pub fn status(&self) -> std::option::Option<&str> {
self.status.as_deref()
}
/// <p>The status description for the host.</p>
pub fn status_message(&self) -> std::option::Option<&str> {
self.status_message.as_deref()
}
}
/// See [`Host`](crate::model::Host).
pub mod host {
/// A builder for [`Host`](crate::model::Host).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) name: std::option::Option<std::string::String>,
pub(crate) host_arn: std::option::Option<std::string::String>,
pub(crate) provider_type: std::option::Option<crate::model::ProviderType>,
pub(crate) provider_endpoint: std::option::Option<std::string::String>,
pub(crate) vpc_configuration: std::option::Option<crate::model::VpcConfiguration>,
pub(crate) status: std::option::Option<std::string::String>,
pub(crate) status_message: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The name of the host.</p>
pub fn name(mut self, input: impl Into<std::string::String>) -> Self {
self.name = Some(input.into());
self
}
/// <p>The name of the host.</p>
pub fn set_name(mut self, input: std::option::Option<std::string::String>) -> Self {
self.name = input;
self
}
/// <p>The Amazon Resource Name (ARN) of the host.</p>
pub fn host_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.host_arn = Some(input.into());
self
}
/// <p>The Amazon Resource Name (ARN) of the host.</p>
pub fn set_host_arn(mut self, input: std::option::Option<std::string::String>) -> Self {
self.host_arn = input;
self
}
/// <p>The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.</p>
pub fn provider_type(mut self, input: crate::model::ProviderType) -> Self {
self.provider_type = Some(input);
self
}
/// <p>The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.</p>
pub fn set_provider_type(
mut self,
input: std::option::Option<crate::model::ProviderType>,
) -> Self {
self.provider_type = input;
self
}
/// <p>The endpoint of the infrastructure where your provider type is installed.</p>
pub fn provider_endpoint(mut self, input: impl Into<std::string::String>) -> Self {
self.provider_endpoint = Some(input.into());
self
}
/// <p>The endpoint of the infrastructure where your provider type is installed.</p>
pub fn set_provider_endpoint(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.provider_endpoint = input;
self
}
/// <p>The VPC configuration provisioned for the host.</p>
pub fn vpc_configuration(mut self, input: crate::model::VpcConfiguration) -> Self {
self.vpc_configuration = Some(input);
self
}
/// <p>The VPC configuration provisioned for the host.</p>
pub fn set_vpc_configuration(
mut self,
input: std::option::Option<crate::model::VpcConfiguration>,
) -> Self {
self.vpc_configuration = input;
self
}
/// <p>The status of the host, such as PENDING, AVAILABLE, VPC_CONFIG_DELETING, VPC_CONFIG_INITIALIZING, and VPC_CONFIG_FAILED_INITIALIZATION.</p>
pub fn status(mut self, input: impl Into<std::string::String>) -> Self {
self.status = Some(input.into());
self
}
/// <p>The status of the host, such as PENDING, AVAILABLE, VPC_CONFIG_DELETING, VPC_CONFIG_INITIALIZING, and VPC_CONFIG_FAILED_INITIALIZATION.</p>
pub fn set_status(mut self, input: std::option::Option<std::string::String>) -> Self {
self.status = input;
self
}
/// <p>The status description for the host.</p>
pub fn status_message(mut self, input: impl Into<std::string::String>) -> Self {
self.status_message = Some(input.into());
self
}
/// <p>The status description for the host.</p>
pub fn set_status_message(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.status_message = input;
self
}
/// Consumes the builder and constructs a [`Host`](crate::model::Host).
pub fn build(self) -> crate::model::Host {
crate::model::Host {
name: self.name,
host_arn: self.host_arn,
provider_type: self.provider_type,
provider_endpoint: self.provider_endpoint,
vpc_configuration: self.vpc_configuration,
status: self.status,
status_message: self.status_message,
}
}
}
}
impl Host {
/// Creates a new builder-style object to manufacture [`Host`](crate::model::Host).
pub fn builder() -> crate::model::host::Builder {
crate::model::host::Builder::default()
}
}
/// When writing a match expression against `ProviderType`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let providertype = unimplemented!();
/// match providertype {
/// ProviderType::Bitbucket => { /* ... */ },
/// ProviderType::Github => { /* ... */ },
/// ProviderType::GithubEnterpriseServer => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `providertype` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `ProviderType::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `ProviderType::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `ProviderType::NewFeature` is defined.
/// Specifically, when `providertype` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `ProviderType::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum ProviderType {
#[allow(missing_docs)] // documentation missing in model
Bitbucket,
#[allow(missing_docs)] // documentation missing in model
Github,
#[allow(missing_docs)] // documentation missing in model
GithubEnterpriseServer,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for ProviderType {
fn from(s: &str) -> Self {
match s {
"Bitbucket" => ProviderType::Bitbucket,
"GitHub" => ProviderType::Github,
"GitHubEnterpriseServer" => ProviderType::GithubEnterpriseServer,
other => ProviderType::Unknown(crate::types::UnknownVariantValue(other.to_owned())),
}
}
}
impl std::str::FromStr for ProviderType {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(ProviderType::from(s))
}
}
impl ProviderType {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
ProviderType::Bitbucket => "Bitbucket",
ProviderType::Github => "GitHub",
ProviderType::GithubEnterpriseServer => "GitHubEnterpriseServer",
ProviderType::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&["Bitbucket", "GitHub", "GitHubEnterpriseServer"]
}
}
impl AsRef<str> for ProviderType {
fn as_ref(&self) -> &str {
self.as_str()
}
}
/// <p>A resource that is used to connect third-party source providers with services like AWS CodePipeline.</p>
/// <p>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.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct Connection {
/// <p>The name of the connection. Connection names must be unique in an AWS user account.</p>
#[doc(hidden)]
pub connection_name: std::option::Option<std::string::String>,
/// <p>The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.</p> <note>
/// <p>The ARN is never reused if the connection is deleted.</p>
/// </note>
#[doc(hidden)]
pub connection_arn: std::option::Option<std::string::String>,
/// <p>The name of the external provider where your third-party code repository is configured.</p>
#[doc(hidden)]
pub provider_type: std::option::Option<crate::model::ProviderType>,
/// <p>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.</p>
#[doc(hidden)]
pub owner_account_id: std::option::Option<std::string::String>,
/// <p>The current status of the connection. </p>
#[doc(hidden)]
pub connection_status: std::option::Option<crate::model::ConnectionStatus>,
/// <p>The Amazon Resource Name (ARN) of the host associated with the connection.</p>
#[doc(hidden)]
pub host_arn: std::option::Option<std::string::String>,
}
impl Connection {
/// <p>The name of the connection. Connection names must be unique in an AWS user account.</p>
pub fn connection_name(&self) -> std::option::Option<&str> {
self.connection_name.as_deref()
}
/// <p>The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.</p> <note>
/// <p>The ARN is never reused if the connection is deleted.</p>
/// </note>
pub fn connection_arn(&self) -> std::option::Option<&str> {
self.connection_arn.as_deref()
}
/// <p>The name of the external provider where your third-party code repository is configured.</p>
pub fn provider_type(&self) -> std::option::Option<&crate::model::ProviderType> {
self.provider_type.as_ref()
}
/// <p>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.</p>
pub fn owner_account_id(&self) -> std::option::Option<&str> {
self.owner_account_id.as_deref()
}
/// <p>The current status of the connection. </p>
pub fn connection_status(&self) -> std::option::Option<&crate::model::ConnectionStatus> {
self.connection_status.as_ref()
}
/// <p>The Amazon Resource Name (ARN) of the host associated with the connection.</p>
pub fn host_arn(&self) -> std::option::Option<&str> {
self.host_arn.as_deref()
}
}
/// See [`Connection`](crate::model::Connection).
pub mod connection {
/// A builder for [`Connection`](crate::model::Connection).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) connection_name: std::option::Option<std::string::String>,
pub(crate) connection_arn: std::option::Option<std::string::String>,
pub(crate) provider_type: std::option::Option<crate::model::ProviderType>,
pub(crate) owner_account_id: std::option::Option<std::string::String>,
pub(crate) connection_status: std::option::Option<crate::model::ConnectionStatus>,
pub(crate) host_arn: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The name of the connection. Connection names must be unique in an AWS user account.</p>
pub fn connection_name(mut self, input: impl Into<std::string::String>) -> Self {
self.connection_name = Some(input.into());
self
}
/// <p>The name of the connection. Connection names must be unique in an AWS user account.</p>
pub fn set_connection_name(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.connection_name = input;
self
}
/// <p>The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.</p> <note>
/// <p>The ARN is never reused if the connection is deleted.</p>
/// </note>
pub fn connection_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.connection_arn = Some(input.into());
self
}
/// <p>The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.</p> <note>
/// <p>The ARN is never reused if the connection is deleted.</p>
/// </note>
pub fn set_connection_arn(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.connection_arn = input;
self
}
/// <p>The name of the external provider where your third-party code repository is configured.</p>
pub fn provider_type(mut self, input: crate::model::ProviderType) -> Self {
self.provider_type = Some(input);
self
}
/// <p>The name of the external provider where your third-party code repository is configured.</p>
pub fn set_provider_type(
mut self,
input: std::option::Option<crate::model::ProviderType>,
) -> Self {
self.provider_type = input;
self
}
/// <p>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.</p>
pub fn owner_account_id(mut self, input: impl Into<std::string::String>) -> Self {
self.owner_account_id = Some(input.into());
self
}
/// <p>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.</p>
pub fn set_owner_account_id(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.owner_account_id = input;
self
}
/// <p>The current status of the connection. </p>
pub fn connection_status(mut self, input: crate::model::ConnectionStatus) -> Self {
self.connection_status = Some(input);
self
}
/// <p>The current status of the connection. </p>
pub fn set_connection_status(
mut self,
input: std::option::Option<crate::model::ConnectionStatus>,
) -> Self {
self.connection_status = input;
self
}
/// <p>The Amazon Resource Name (ARN) of the host associated with the connection.</p>
pub fn host_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.host_arn = Some(input.into());
self
}
/// <p>The Amazon Resource Name (ARN) of the host associated with the connection.</p>
pub fn set_host_arn(mut self, input: std::option::Option<std::string::String>) -> Self {
self.host_arn = input;
self
}
/// Consumes the builder and constructs a [`Connection`](crate::model::Connection).
pub fn build(self) -> crate::model::Connection {
crate::model::Connection {
connection_name: self.connection_name,
connection_arn: self.connection_arn,
provider_type: self.provider_type,
owner_account_id: self.owner_account_id,
connection_status: self.connection_status,
host_arn: self.host_arn,
}
}
}
}
impl Connection {
/// Creates a new builder-style object to manufacture [`Connection`](crate::model::Connection).
pub fn builder() -> crate::model::connection::Builder {
crate::model::connection::Builder::default()
}
}
/// When writing a match expression against `ConnectionStatus`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let connectionstatus = unimplemented!();
/// match connectionstatus {
/// ConnectionStatus::Available => { /* ... */ },
/// ConnectionStatus::Error => { /* ... */ },
/// ConnectionStatus::Pending => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `connectionstatus` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `ConnectionStatus::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `ConnectionStatus::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `ConnectionStatus::NewFeature` is defined.
/// Specifically, when `connectionstatus` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `ConnectionStatus::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum ConnectionStatus {
#[allow(missing_docs)] // documentation missing in model
Available,
#[allow(missing_docs)] // documentation missing in model
Error,
#[allow(missing_docs)] // documentation missing in model
Pending,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for ConnectionStatus {
fn from(s: &str) -> Self {
match s {
"AVAILABLE" => ConnectionStatus::Available,
"ERROR" => ConnectionStatus::Error,
"PENDING" => ConnectionStatus::Pending,
other => ConnectionStatus::Unknown(crate::types::UnknownVariantValue(other.to_owned())),
}
}
}
impl std::str::FromStr for ConnectionStatus {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(ConnectionStatus::from(s))
}
}
impl ConnectionStatus {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
ConnectionStatus::Available => "AVAILABLE",
ConnectionStatus::Error => "ERROR",
ConnectionStatus::Pending => "PENDING",
ConnectionStatus::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&["AVAILABLE", "ERROR", "PENDING"]
}
}
impl AsRef<str> for ConnectionStatus {
fn as_ref(&self) -> &str {
self.as_str()
}
}