Method: Aws::AppConfig::Types::Deployment#growth_factor

Defined in:
lib/aws-sdk-appconfig/types.rb

#growth_factorFloat

The percentage of targets to receive a deployed configuration during each interval.

Returns:

  • (Float)


1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
# File 'lib/aws-sdk-appconfig/types.rb', line 1135

class Deployment < Struct.new(
  :application_id,
  :environment_id,
  :deployment_strategy_id,
  :configuration_profile_id,
  :deployment_number,
  :configuration_name,
  :configuration_location_uri,
  :configuration_version,
  :description,
  :deployment_duration_in_minutes,
  :growth_type,
  :growth_factor,
  :final_bake_time_in_minutes,
  :state,
  :event_log,
  :percentage_complete,
  :started_at,
  :completed_at,
  :applied_extensions,
  :kms_key_arn,
  :kms_key_identifier,
  :version_label)
  SENSITIVE = []
  include Aws::Structure
end