Struct rusoto_servicecatalog::ProvisioningArtifactParameter[][src]

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

The default value.

The description of the parameter.

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.

Constraints that the administrator has put on a parameter.

The parameter key.

The parameter type.

Trait Implementations

impl Default for ProvisioningArtifactParameter
[src]

Returns the "default value" for a type. Read more

impl Debug for ProvisioningArtifactParameter
[src]

Formats the value using the given formatter. Read more

impl Clone for ProvisioningArtifactParameter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ProvisioningArtifactParameter
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations