Struct cfn::aws::apigateway::DomainNameProperties [] [src]

pub struct DomainNameProperties {
    pub certificate_arn: Option<Value<String>>,
    pub domain_name: Value<String>,
    pub endpoint_configuration: Option<Value<EndpointConfiguration>>,
    pub regional_certificate_arn: Option<Value<String>>,
}

Properties for the DomainName resource.

Fields

Property CertificateArn.

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

Property DomainName.

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

Property EndpointConfiguration.

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

Property RegionalCertificateArn.

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

Trait Implementations

impl Debug for DomainNameProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for DomainNameProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DomainNameProperties> for DomainName
[src]

[src]

Performs the conversion.

Auto Trait Implementations