Struct cfn::aws::certificatemanager::CertificateProperties [] [src]

pub struct CertificateProperties {
    pub domain_name: Value<String>,
    pub domain_validation_options: Option<ValueList<DomainValidationOption>>,
    pub subject_alternative_names: Option<ValueList<String>>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the Certificate resource.

Fields

Property DomainName.

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

Property DomainValidationOptions.

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

Property SubjectAlternativeNames.

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

Property Tags.

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

Trait Implementations

impl Debug for CertificateProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for CertificateProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<CertificateProperties> for Certificate
[src]

[src]

Performs the conversion.

Auto Trait Implementations