Values.PutApplicationAssignmentConfigurationRequestSourceConfigure how users gain access to an application. If AssignmentsRequired is true (default value), users don’t have access to the application unless an assignment is created using the CreateApplicationAssignment API. If false, all users have access to the application. If an assignment is created using CreateApplicationAssignment., the user retains access if AssignmentsRequired is set to true.
type nonrec t = {applicationArn : ApplicationArn.t;Specifies the ARN of the application. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
*)assignmentRequired : AssignmentRequired.t;If AssignmentsRequired is true (default value), users don’t have access to the application unless an assignment is created using the CreateApplicationAssignment API. If false, all users have access to the application.
*)}val make :
applicationArn:ApplicationArn.t ->
assignmentRequired:AssignmentRequired.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of AssignmentRequired.t | `String of ApplicationArn.t ])
list ]