[][src]Struct rusoto_cloudformation::DescribeTypeOutput

pub struct DescribeTypeOutput {
    pub arn: Option<String>,
    pub default_version_id: Option<String>,
    pub deprecated_status: Option<String>,
    pub description: Option<String>,
    pub documentation_url: Option<String>,
    pub execution_role_arn: Option<String>,
    pub is_default_version: Option<bool>,
    pub last_updated: Option<String>,
    pub logging_config: Option<LoggingConfig>,
    pub provisioning_type: Option<String>,
    pub schema: Option<String>,
    pub source_url: Option<String>,
    pub time_created: Option<String>,
    pub type_: Option<String>,
    pub type_name: Option<String>,
    pub visibility: Option<String>,
}

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the type.

default_version_id: Option<String>

The ID of the default version of the type. The default version is used when the type version is not specified.

To set the default version of a type, use SetTypeDefaultVersion .

deprecated_status: Option<String>

The deprecation status of the type.

Valid values include:

  • LIVE: The type is registered and can be used in CloudFormation operations, dependent on its provisioning behavior and visibility scope.

  • DEPRECATED: The type has been deregistered and can no longer be used in CloudFormation operations.

description: Option<String>

The description of the registered type.

documentation_url: Option<String>

The URL of a page providing detailed documentation for this type.

execution_role_arn: Option<String>

The Amazon Resource Name (ARN) of the IAM execution role used to register the type. If your resource type calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. CloudFormation then assumes that execution role to provide your resource type with the appropriate credentials.

is_default_version: Option<bool>

Whether the specified type version is set as the default version.

last_updated: Option<String>

When the specified type version was registered.

logging_config: Option<LoggingConfig>

Contains logging configuration information for a type.

provisioning_type: Option<String>

The provisioning behavior of the type. AWS CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted.

Valid values include:

  • FULLYMUTABLE: The type includes an update handler to process updates to the type during stack update operations.

  • IMMUTABLE: The type does not include an update handler, so the type cannot be updated and must instead be replaced during stack update operations.

  • NONPROVISIONABLE: The type does not include all of the following handlers, and therefore cannot actually be provisioned.

    • create

    • read

    • delete

schema: Option<String>

The schema that defines the type.

For more information on type schemas, see Resource Provider Schema in the CloudFormation CLI User Guide.

source_url: Option<String>

The URL of the source code for the type.

time_created: Option<String>

When the specified type version was registered.

type_: Option<String>

The kind of type.

Currently the only valid value is RESOURCE.

type_name: Option<String>

The name of the registered type.

visibility: Option<String>

The scope at which the type is visible and usable in CloudFormation operations.

Valid values include:

  • PRIVATE: The type is only visible and usable within the account in which it is registered. Currently, AWS CloudFormation marks any types you register as PRIVATE.

  • PUBLIC: The type is publically visible and usable within any Amazon account.

Trait Implementations

impl Clone for DescribeTypeOutput[src]

impl Debug for DescribeTypeOutput[src]

impl Default for DescribeTypeOutput[src]

impl PartialEq<DescribeTypeOutput> for DescribeTypeOutput[src]

impl StructuralPartialEq for DescribeTypeOutput[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument 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> 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.