[][src]Struct rusoto_servicecatalog::ProvisioningArtifactParameter

pub struct ProvisioningArtifactParameter {
    pub default_value: Option<String>,
    pub description: Option<String>,
    pub is_no_echo: Option<bool>,
    pub parameter_constraints: Option<ParameterConstraints>,
    pub parameter_key: Option<String>,
    pub parameter_type: Option<String>,
}

Information about a parameter used to provision a product.

Fields

default_value: Option<String>

The default value.

description: Option<String>

The description of the parameter.

is_no_echo: Option<bool>

If this value is true, the value for this parameter is obfuscated from view when the parameter is retrieved. This parameter is used to hide sensitive information.

parameter_constraints: Option<ParameterConstraints>

Constraints that the administrator has put on a parameter.

parameter_key: Option<String>

The parameter key.

parameter_type: Option<String>

The parameter type.

Trait Implementations

impl Clone for ProvisioningArtifactParameter[src]

impl Debug for ProvisioningArtifactParameter[src]

impl Default for ProvisioningArtifactParameter[src]

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

impl PartialEq<ProvisioningArtifactParameter> for ProvisioningArtifactParameter[src]

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