Struct cfn::aws::dax::ClusterProperties [] [src]

pub struct ClusterProperties {
    pub availability_zones: Option<ValueList<String>>,
    pub cluster_name: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub iam_role_arn: Value<String>,
    pub node_type: Value<String>,
    pub notification_topic_arn: Option<Value<String>>,
    pub parameter_group_name: Option<Value<String>>,
    pub preferred_maintenance_window: Option<Value<String>>,
    pub replication_factor: Value<u32>,
    pub security_group_ids: Option<ValueList<String>>,
    pub subnet_group_name: Option<Value<String>>,
    pub tags: Option<Value<Value>>,
}

Properties for the Cluster resource.

Fields

Property AvailabilityZones.

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

Property ClusterName.

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

Property Description.

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

Property IAMRoleARN.

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

Property NodeType.

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

Property NotificationTopicARN.

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

Property ParameterGroupName.

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

Property PreferredMaintenanceWindow.

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

Property ReplicationFactor.

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

Property SecurityGroupIds.

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

Property SubnetGroupName.

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

Property Tags.

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

Trait Implementations

impl Debug for ClusterProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ClusterProperties
[src]

[src]

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

impl Serialize for ClusterProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ClusterProperties> for Cluster
[src]

[src]

Performs the conversion.

Auto Trait Implementations