

本文属于机器翻译版本。若本译文内容与英语原文存在差异，则一律以英文原文为准。

# 查看和更新与 Amazon Route 53 配置文件关联的 Route 53 资源
<a name="profiles-resources-editing"></a>

选择控制台选项卡查看 Route 53 配置文件资源关联，也可以选择编辑 DNS Firewall 规则组的优先级。选择 CLI 选项卡 AWS CLI ，用于列出资源关联并查看 DNS 防火墙规则组优先级的更新示例。
+ [控制台](#profile-list-resource-console)
+ [CLI](#profile-list-resource-CLI)

------
#### [ Console ]<a name="profile-resources-editing-procedure"></a>

**查看和更新与配置文件关联的资源**

1. 登录 AWS 管理控制台 并打开 Route 53 控制台，网址为[https://console.aws.amazon.com/route53/](https://console.aws.amazon.com/route53/)。

1. 在导航窗格中，选择**配置文件**。

1. 在导航栏上，选择您在其中创建了配置文件的区域。

1. 选择要查看或编辑资源关联的配置文件名称旁边的按钮。

1. 在 **<配置文件名称>** 页面上，选择要查看或编辑的资源的选项卡，即 **DNS Firewall 规则组**、**私有托管区**、**Resolver 规则**或 **VPC 端点**。

1. 在资源的选项卡页上，可以查看关联资源的名称、ARN 和状态。您还可以选择齿轮图标来调整资源表中的显示内容。

   在 **DNS Firewall 规则组**选项卡页上，您还可以选择规则组的优先级条目，并将其编辑为更小或更大的数字。规则组按照从最低优先级序号到最高优先级序号的顺序进行评估。

------
#### [ CLI ]

您可以通过运行如下 AWS CLI 命令并使用自己的值来列出与配置文件关联的资源`profile-id`：

`aws route53profiles list-profile-resource-associations --profile-id rp-4987774726example`

以下是运行此命令后的示例输出。

```
{
    "ProfileResourceAssociations": [
        {
            "CreationTime": 1710851216.613,
            "Id": "rpr-001913120a7example",
            "ModificationTime": 1710851216.613,
            "Name": "test-resource-association",
            "OwnerId": "123456789012",
            "ProfileId": "rp-4987774726example",
            "ResourceArn": "arn:aws:route53resolver:us-east-1:123456789012:firewall-rule-group/rslvr-frg-cfe7f72example",
            "ResourceProperties": "{\"priority\":102}",
            "ResourceType": "FIREWALL_RULE_GROUP",
            "Status": "COMPLETE",
            "StatusMessage": "Completed creation of Profile to DNS Firewall rule group association"
        }
    ]
}
```

您可以更新与配置文件关联的 DNS 防火墙规则组的优先级，方法是运行如下 AWS CLI 命令，为和使用自己的值，`profile-resource-association-id`并使用自己的值`--resource-properties`：

`aws route53profiles update-profile-resource-association --profile-resource-association-id rpr-001913120a7example --resource-properties "{\"priority\": 105}"`

以下是运行此命令后的示例输出。

```
{
    "ProfileResourceAssociation": {
        "CreationTime": 1710851216.613,
        "Id": "rpr-001913120a7example",
        "ModificationTime": 1710852303.798,
        "Name": "test-resource-association",
        "OwnerId": "123456789012",
        "ProfileId": "rp-4987774726example",
        "ResourceArn": "arn:aws:route53resolver:us-east-1:123456789012:firewall-rule-group/rslvr-frg-cfe7f72example",
        "ResourceProperties": "{\"priority\":105}",
        "ResourceType": "FIREWALL_RULE_GROUP",
        "Status": "UPDATING",
        "StatusMessage": "Updating the Profile to DNS Firewall rule group association"
    }
}
```

------