--- id: beta-fullcampaign-all-of-role-composition-campaign-info title: FullcampaignAllOfRoleCompositionCampaignInfo pagination_label: FullcampaignAllOfRoleCompositionCampaignInfo sidebar_label: FullcampaignAllOfRoleCompositionCampaignInfo sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'FullcampaignAllOfRoleCompositionCampaignInfo', 'BetaFullcampaignAllOfRoleCompositionCampaignInfo'] slug: /tools/sdk/powershell/beta/models/fullcampaign-all-of-role-composition-campaign-info tags: ['SDK', 'Software Development Kit', 'FullcampaignAllOfRoleCompositionCampaignInfo', 'BetaFullcampaignAllOfRoleCompositionCampaignInfo'] --- # FullcampaignAllOfRoleCompositionCampaignInfo ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Reviewer** | [**FullcampaignAllOfSearchCampaignInfoReviewer**](fullcampaign-all-of-search-campaign-info-reviewer) | | [optional] **RoleIds** | **[]String** | Optional list of roles to include in this campaign. Only one of `roleIds` and `query` may be set; if neither are set, all roles are included. | [optional] **RemediatorRef** | [**FullcampaignAllOfRoleCompositionCampaignInfoRemediatorRef**](fullcampaign-all-of-role-composition-campaign-info-remediator-ref) | | [required] **Query** | **String** | Optional search query to scope this campaign to a set of roles. Only one of `roleIds` and `query` may be set; if neither are set, all roles are included. | [optional] **Description** | **String** | Describes this role composition campaign. Intended for storing the query used, and possibly the number of roles selected/available. | [optional] ## Examples - Prepare the resource ```powershell $FullcampaignAllOfRoleCompositionCampaignInfo = Initialize-PSSailpoint.BetaFullcampaignAllOfRoleCompositionCampaignInfo -Reviewer null ` -RoleIds [2c90ad2a70ace7d50170acf22ca90010] ` -RemediatorRef null ` -Query Search Query ` -Description Role Composition Description ``` - Convert the resource to JSON ```powershell $FullcampaignAllOfRoleCompositionCampaignInfo | ConvertTo-JSON ``` [[Back to top]](#)