[][src]Struct rusoto_servicecatalog::ConstraintDetail

pub struct ConstraintDetail {
    pub constraint_id: Option<String>,
    pub description: Option<String>,
    pub owner: Option<String>,
    pub portfolio_id: Option<String>,
    pub product_id: Option<String>,
    pub type_: Option<String>,
}

Information about a constraint.

Fields

constraint_id: Option<String>

The identifier of the constraint.

description: Option<String>

The description of the constraint.

owner: Option<String>

The owner of the constraint.

portfolio_id: Option<String>

The identifier of the portfolio the product resides in. The constraint applies only to the instance of the product that lives within this portfolio.

product_id: Option<String>

The identifier of the product the constraint applies to. Note that a constraint applies to a specific instance of a product within a certain portfolio.

type_: Option<String>

The type of constraint.

  • LAUNCH

  • NOTIFICATION

  • STACKSET

  • TEMPLATE

Trait Implementations

impl Clone for ConstraintDetail[src]

impl Debug for ConstraintDetail[src]

impl Default for ConstraintDetail[src]

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

impl PartialEq<ConstraintDetail> for ConstraintDetail[src]

impl StructuralPartialEq for ConstraintDetail[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, 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> Sealed<T> for T where
    T: ?Sized

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.