--- id: source-password-policies-inner title: SourcePasswordPoliciesInner pagination_label: SourcePasswordPoliciesInner sidebar_label: SourcePasswordPoliciesInner sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'SourcePasswordPoliciesInner', 'SourcePasswordPoliciesInner'] slug: /tools/sdk/powershell/v3/models/source-password-policies-inner tags: ['SDK', 'Software Development Kit', 'SourcePasswordPoliciesInner', 'SourcePasswordPoliciesInner'] --- # SourcePasswordPoliciesInner ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Type** | **Enum** [ "PASSWORD_POLICY" ] | Type of object being referenced. | [optional] **Id** | **String** | Policy ID. | [optional] **Name** | **String** | Policy's human-readable display name. | [optional] ## Examples - Prepare the resource ```powershell $SourcePasswordPoliciesInner = Initialize-SourcePasswordPoliciesInner -Type PASSWORD_POLICY ` -Id 2c91808568c529c60168cca6f90c1777 ` -Name My Password Policy ``` - Convert the resource to JSON ```powershell $SourcePasswordPoliciesInner | ConvertTo-JSON ``` [[Back to top]](#)