Struct cfn::aws::elasticsearch::DomainProperties [] [src]

pub struct DomainProperties {
    pub access_policies: Option<Value<Value>>,
    pub advanced_options: Option<ValueMap<String>>,
    pub domain_name: Option<Value<String>>,
    pub ebs_options: Option<Value<EBSOptions>>,
    pub elasticsearch_cluster_config: Option<Value<ElasticsearchClusterConfig>>,
    pub elasticsearch_version: Option<Value<String>>,
    pub snapshot_options: Option<Value<SnapshotOptions>>,
    pub tags: Option<ValueList<Tag>>,
    pub vpc_options: Option<Value<VPCOptions>>,
}

Properties for the Domain resource.

Fields

Property AccessPolicies.

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

Property AdvancedOptions.

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

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

Property ElasticsearchClusterConfig.

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

Property ElasticsearchVersion.

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

Property SnapshotOptions.

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

Property Tags.

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

Property VPCOptions.

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

Trait Implementations

impl Debug for DomainProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for DomainProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DomainProperties> for Domain
[src]

[src]

Performs the conversion.

Auto Trait Implementations