Struct cfn::aws::ecr::RepositoryProperties [] [src]

pub struct RepositoryProperties {
    pub lifecycle_policy: Option<Value<LifecyclePolicy>>,
    pub repository_name: Option<Value<String>>,
    pub repository_policy_text: Option<Value<Value>>,
}

Properties for the Repository resource.

Fields

Property LifecyclePolicy.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property RepositoryName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property RepositoryPolicyText.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for RepositoryProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for RepositoryProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<RepositoryProperties> for Repository
[src]

[src]

Performs the conversion.

Auto Trait Implementations