Struct cfn::aws::servicediscovery::ServiceProperties [] [src]

pub struct ServiceProperties {
    pub description: Option<Value<String>>,
    pub dns_config: Value<DnsConfig>,
    pub health_check_config: Option<Value<HealthCheckConfig>>,
    pub name: Option<Value<String>>,
}

Properties for the Service resource.

Fields

Property Description.

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

Property DnsConfig.

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

Property HealthCheckConfig.

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

Property Name.

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

Trait Implementations

impl Debug for ServiceProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ServiceProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ServiceProperties> for Service
[src]

[src]

Performs the conversion.

Auto Trait Implementations