third_party_firewall_association_status
Creates, updates, deletes, gets or lists a third_party_firewall_association_status resource.
Overview
| Name | third_party_firewall_association_status |
| Type | Resource |
| Id | aws.fms.third_party_firewall_association_status |
Fields
The following fields are returned by SELECT queries:
- get_third_party_firewall_association_status
| Name | Datatype | Description |
|---|---|---|
marketplace_onboarding_status | string | The status for subscribing to the third-party firewall vendor in the Amazon Web Services Marketplace. NO_SUBSCRIPTION - The Firewall Manager policy administrator isn't subscribed to the third-party firewall service in the Amazon Web Services Marketplace. NOT_COMPLETE - The Firewall Manager policy administrator is in the process of subscribing to the third-party firewall service in the Amazon Web Services Marketplace, but doesn't yet have an active subscription. COMPLETE - The Firewall Manager policy administrator has an active subscription to the third-party firewall service in the Amazon Web Services Marketplace. (NO_SUBSCRIPTION, NOT_COMPLETE, COMPLETE) |
third_party_firewall_status | string | The current status for setting a Firewall Manager policy administrators account as an administrator of the third-party firewall tenant. ONBOARDING - The Firewall Manager policy administrator is being designated as a tenant administrator. ONBOARD_COMPLETE - The Firewall Manager policy administrator is designated as a tenant administrator. OFFBOARDING - The Firewall Manager policy administrator is being removed as a tenant administrator. OFFBOARD_COMPLETE - The Firewall Manager policy administrator has been removed as a tenant administrator. NOT_EXIST - The Firewall Manager policy administrator doesn't exist as a tenant administrator. (ONBOARDING, ONBOARD_COMPLETE, OFFBOARDING, OFFBOARD_COMPLETE, NOT_EXIST) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_third_party_firewall_association_status | select | region | The onboarding status of a Firewall Manager admin account to third-party firewall vendor tenant. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_third_party_firewall_association_status
The onboarding status of a Firewall Manager admin account to third-party firewall vendor tenant.
SELECT
marketplace_onboarding_status,
third_party_firewall_status
FROM aws.fms.third_party_firewall_association_status
WHERE region = '{{ region }}' -- required
;