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

pub struct RecordSetProperties {
    pub alias_target: Option<Value<AliasTarget>>,
    pub comment: Option<Value<String>>,
    pub failover: Option<Value<String>>,
    pub geo_location: Option<Value<GeoLocation>>,
    pub health_check_id: Option<Value<String>>,
    pub hosted_zone_id: Option<Value<String>>,
    pub hosted_zone_name: Option<Value<String>>,
    pub name: Value<String>,
    pub region: Option<Value<String>>,
    pub resource_records: Option<ValueList<String>>,
    pub set_identifier: Option<Value<String>>,
    pub ttl: Option<Value<String>>,
    pub type_: Value<String>,
    pub weight: Option<Value<u32>>,
}

Properties for the RecordSet resource.

Fields

Property AliasTarget.

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

Property Comment.

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

Property Failover.

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

Property GeoLocation.

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

Property HealthCheckId.

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 Name.

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

Property Region.

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

Property ResourceRecords.

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

Property SetIdentifier.

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

Property TTL.

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

Property Type.

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

Property Weight.

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

Trait Implementations

impl Debug for RecordSetProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for RecordSetProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for RecordSetProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<RecordSetProperties> for RecordSet
[src]

[src]

Performs the conversion.

Auto Trait Implementations