Method: Aws::ElastiCache::Types::CreateReplicationGroupMessage#transit_encryption_enabled
- Defined in:
- lib/aws-sdk-elasticache/types.rb
#transit_encryption_enabled ⇒ Boolean
A flag that enables in-transit encryption when set to true.
This parameter is valid only if the Engine parameter is redis, the EngineVersion parameter is 3.2.6, 4.x or later, and the cluster is being created in an Amazon VPC.
If you enable in-transit encryption, you must also specify a value for CacheSubnetGroup.
Required: Only available when creating a replication group in an Amazon VPC using Redis OSS version 3.2.6, 4.x or later.
Default: false
For HIPAA compliance, you must specify TransitEncryptionEnabled as true, an AuthToken, and a CacheSubnetGroup.
2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2824 class CreateReplicationGroupMessage < Struct.new( :replication_group_id, :replication_group_description, :global_replication_group_id, :primary_cluster_id, :automatic_failover_enabled, :multi_az_enabled, :num_cache_clusters, :preferred_cache_cluster_a_zs, :num_node_groups, :replicas_per_node_group, :node_group_configuration, :cache_node_type, :engine, :engine_version, :cache_parameter_group_name, :cache_subnet_group_name, :cache_security_group_names, :security_group_ids, :tags, :snapshot_arns, :snapshot_name, :preferred_maintenance_window, :port, :notification_topic_arn, :auto_minor_version_upgrade, :snapshot_retention_limit, :snapshot_window, :auth_token, :transit_encryption_enabled, :at_rest_encryption_enabled, :kms_key_id, :user_group_ids, :log_delivery_configurations, :data_tiering_enabled, :network_type, :ip_discovery, :transit_encryption_mode, :cluster_mode, :serverless_cache_snapshot_name) SENSITIVE = [] include Aws::Structure end |