Struct cfn::aws::route53::RecordSetGroupProperties [] [src]

pub struct RecordSetGroupProperties {
    pub comment: Option<Value<String>>,
    pub hosted_zone_id: Option<Value<String>>,
    pub hosted_zone_name: Option<Value<String>>,
    pub record_sets: Option<ValueList<RecordSet>>,
}

Properties for the RecordSetGroup resource.

Fields

Property Comment.

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

Property HostedZoneId.

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

Property HostedZoneName.

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

Property RecordSets.

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

Trait Implementations

impl Debug for RecordSetGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for RecordSetGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<RecordSetGroupProperties> for RecordSetGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations