Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1023 Bytes

AudienceConfiguration.md

File metadata and controls

26 lines (20 loc) · 1023 Bytes

LaunchDarklyApi::AudienceConfiguration

Properties

Name Type Description Notes
release_strategy String
require_approval Boolean Whether or not the audience requires approval
notify_member_ids Array<String> An array of member IDs. These members are notified to review the approval request. [optional]
notify_team_keys Array<String> An array of team keys. The members of these teams are notified to review the approval request. [optional]
release_guardian_configuration ReleaseGuardianConfiguration [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::AudienceConfiguration.new(
  release_strategy: null,
  require_approval: true,
  notify_member_ids: [&quot;1234a56b7c89d012345e678f&quot;],
  notify_team_keys: [&quot;example-reviewer-team&quot;],
  release_guardian_configuration: null
)