# RDS 인스턴스

## 리소스 유형

`AWS.RDS.Instance`

## 리소스 ID 형식

RDS 인스턴스의 경우 리소스 ID는 ARN입니다.

`arn:aws:rds:us-west-2:123456789012:db:example-db`

## 배경

AWS RDS 인스턴스는 관계형 데이터베이스를 실행하는 관리형 EC2 인스턴스입니다.

## 필드

| 필드                   | 유형   | 설명                         |
| -------------------- | ---- | -------------------------- |
| `DBParameterGroups`  | `목록` | 인스턴스가 속한 파라미터 그룹           |
| `SnapshotAttributes` | `목록` | 인스턴스의 각 스냅샷과 해당 스냅샷의 속성 목록 |

```javascript
{
    "AccountId": "123456789012",
    "AllocatedStorage": 20,
    "Arn": "arn:aws:rds:us-west-2:123456789012:db:example-db",
    "AssociatedRoles": null,
    "AutoMinorVersionUpgrade": true,
    "AvailabilityZone": "us-west-2a",
    "BackupRetentionPeriod": 7,
    "CACertificateIdentifier": "rds-ca-2015",
    "CharacterSetName": null,
    "CopyTagsToSnapshot": true,
    "DBClusterIdentifier": null,
    "DBInstanceClass": "db.t2.micro",
    "DBInstanceStatus": "available",
    "DBParameterGroups": [
        {
            "DBParameterGroupName": "default.mysql5.7",
            "ParameterApplyStatus": "동기화됨"
        }
    ],
    "DBSecurityGroups": null,
    "DBSubnetGroup": {
        "DBSubnetGroupArn": null,
        "DBSubnetGroupDescription": "기본",
        "DBSubnetGroupName": "기본",
        "SubnetGroupStatus": "완료",
        "Subnets": [
            {
                "SubnetAvailabilityZone": {
                    "Name": "us-west-2b"
                },
                "SubnetIdentifier": "subnet-1",
                "SubnetStatus": "활성"
            },
            {
                "SubnetAvailabilityZone": {
                    "Name": "us-west-2d"
                },
                "SubnetIdentifier": "subnet-2",
                "SubnetStatus": "활성"
            }
        ],
        "VpcId": "vpc-1"
    },
    "DbInstancePort": 0,
    "DbiResourceId": "db-1111",
    "DeletionProtection": false,
    "DomainMemberships": null,
    "EnabledCloudwatchLogsExports": null,
    "Endpoint": {
        "Address": "example-db.1111.us-west-2.rds.amazonaws.com",
        "HostedZoneId": "AAAA",
        "Port": 1234
    },
    "Engine": "mysql",
    "EngineVersion": "5.7.22",
    "EnhancedMonitoringResourceArn": null,
    "IAMDatabaseAuthenticationEnabled": false,
    "Id": "example-db",
    "Iops": null,
    "KmsKeyId": null,
    "LatestRestorableTime": "2019-01-01T00:00:00Z",
    "LicenseModel": "general-public-license",
    "ListenerEndpoint": null,
    "MasterUsername": "superuser",
    "MaxAllocatedStorage": null,
    "MonitoringInterval": 0,
    "MonitoringRoleArn": null,
    "MultiAZ": false,
    "Name": "db_1",
    "OptionGroupMemberships": [
        {
            "OptionGroupName": "default:mysql-5-7",
            "Status": "동기화됨"
        }
    ],
    "PendingModifiedValues": {
        "AllocatedStorage": null,
        "BackupRetentionPeriod": null,
        "CACertificateIdentifier": null,
        "DBInstanceClass": null,
        "DBInstanceIdentifier": null,
        "DBSubnetGroupName": null,
        "EngineVersion": null,
        "Iops": null,
        "LicenseModel": null,
        "MasterUserPassword": null,
        "MultiAZ": null,
        "PendingCloudwatchLogsExports": null,
        "Port": null,
        "ProcessorFeatures": null,
        "StorageType": null
    },
    "PerformanceInsightsEnabled": false,
    "PerformanceInsightsKMSKeyId": null,
    "PerformanceInsightsRetentionPeriod": null,
    "PreferredBackupWindow": "07:31-08:01",
    "PreferredMaintenanceWindow": "thu:12:02-thu:12:32",
    "ProcessorFeatures": null,
    "PromotionTier": null,
    "PubliclyAccessible": true,
    "ReadReplicaDBClusterIdentifiers": null,
    "ReadReplicaDBInstanceIdentifiers": null,
    "ReadReplicaSourceDBInstanceIdentifier": null,
    "Region": "us-west-2",
    "ResourceId": "arn:aws:rds:us-west-2:123456789012:db:example-db",
    "ResourceType": "AWS.RDS.Instance",
    "SecondaryAvailabilityZone": null,
    "SnapshotAttributes": [
        {
            "DBSnapshotAttributes": [
                {
                    "AttributeName": "restore",
                    "AttributeValues": null
                }
            ],
            "DBSnapshotIdentifier": "snapshot-1"
        },
        {
            "DBSnapshotAttributes": [
                {
                    "AttributeName": "restore",
                    "AttributeValues": [
                        "all"
                    ]
                }
            ],
            "DBSnapshotIdentifier": "public-snapshot"
        }
    ],
    "StatusInfos": null,
    "StorageEncrypted": false,
    "StorageType": "gp2",
    "Tags": {
        "workload-type": "other"
    },
    "TdeCredentialArn": null,
    "TimeCreated": "2019-01-01T00:00:00.000Z",
    "Timezone": null,
    "VpcSecurityGroups": [
        {
            "Status": "active",
            "VpcSecurityGroupId": "sg-1"
        }
    ]
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.panther.com/ko/cloud-scanning/cloud-resource-attributes/aws/rds-instance.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
