를 사용하여 Route 53 Profiles 예제 AWS CLI - AWS SDK 코드 예제

AWS Doc SDK ExamplesWord AWS SDK 리포지토리에는 더 많은 GitHub 예제가 있습니다.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

를 사용하여 Route 53 Profiles 예제 AWS CLI

다음 코드 예제에서는 Route 53 Profiles와 AWS Command Line Interface 함께를 사용하여 작업을 수행하고 일반적인 시나리오를 구현하는 방법을 보여줍니다.

작업은 대규모 프로그램에서 발췌한 코드이며 컨텍스트에 맞춰 실행해야 합니다. 작업은 개별 서비스 함수를 직접적으로 호출하는 방법을 보여주며 관련 시나리오의 컨텍스트에 맞는 작업을 볼 수 있습니다.

각 예제에는 컨텍스트에서 코드를 설정하고 실행하는 방법에 대한 지침을 찾을 수 있는 전체 소스 코드에 대한 링크가 포함되어 있습니다.

주제

작업

다음 코드 예시에서는 associate-profile을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필을 연결하려면

다음 associate-profile 예제에서는 프로필을 VPC에 연결합니다.

aws route53profiles associate-profile \ --name test-association \ --profile-id rp-4987774726example \ --resource-id vpc-0af3b96b3example

출력:

{ "ProfileAssociation": { "CreationTime": 1710851336.527, "Id": "rpassoc-489ce212fexample", "ModificationTime": 1710851336.527, "Name": "test-association", "OwnerId": "123456789012", "ProfileId": "rp-4987774726example", "ResourceId": "vpc-0af3b96b3example", "Status": "CREATING", "StatusMessage": "Creating Profile Association" } }

자세한 내용은 Amazon Route 53 개발자 안내서프로필 사용을 참조하세요.

  • API 세부 정보는 AWS CLI 명령 참조AssociateProfile를 참조하세요.

다음 코드 예시에서는 associate-resource-to-profile을 사용하는 방법을 보여 줍니다.

AWS CLI

리소스를 프로파일에 연결하려면

다음 associate-resource-to-profile 예제에서는 DNS Firewall 규칙 그룹을 102의 우선 순위와 프로파일에 연결합니다.

aws route53profiles associate-resource-to-profile \ --name test-resource-association \ --profile-id rp-4987774726example \ --resource-arn arn:aws:route53resolver:us-east-1:123456789012:firewall-rule-group/rslvr-frg-cfe7f72example \ --resource-properties "{\"priority\": 102}"

출력:

{ "ProfileResourceAssociation": { "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": "UPDATING", "StatusMessage": "Updating the Profile to DNS Firewall rule group association" } }

다음 코드 예시에서는 create-profile을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필을 생성하려면

다음 create-profile 예제에서는 프로필을 생성합니다.

aws route53profiles create-profile \ --name test

출력:

{ "Profile": { "Arn": "arn:aws:route53profiles:us-east-1:123456789012:profile/rp-6ffe47d5example", "ClientToken": "2ca1a304-32b3-4f5f-bc4c-EXAMPLE11111", "CreationTime": 1710850903.578, "Id": "rp-6ffe47d5example", "ModificationTime": 1710850903.578, "Name": "test", "OwnerId": "123456789012", "ShareStatus": "NOT_SHARED", "Status": "COMPLETE", "StatusMessage": "Created Profile" } }
  • API 세부 정보는 AWS CLI 명령 참조CreateProfile를 참조하세요.

다음 코드 예시에서는 delete-profile을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필을 삭제하려면

다음 delete-profile 예제에서는 프로필을 삭제합니다.

aws route53profiles delete-profile \ --profile-id rp-6ffe47d5example

출력:

{ "Profile": { "Arn": "arn:aws:route53profiles:us-east-1:123456789012:profile/rp-6ffe47d5example", "ClientToken": "0a15fec0-05d9-4f78-bec0-EXAMPLE11111", "CreationTime": 1710850903.578, "Id": "rp-6ffe47d5example", "ModificationTime": 1710850903.578, "Name": "test", "OwnerId": "123456789012", "ShareStatus": "NOT_SHARED", "Status": "DELETED", "StatusMessage": "Deleted Profile" } }
  • API 세부 정보는 AWS CLI 명령 참조DeleteProfile를 참조하세요.

다음 코드 예시에서는 disassociate-profile을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필 연결을 해제하려면

다음 disassociate-profile 예제에서는 프로필을 VPC에서 연결 해제합니다.

aws route53profiles disassociate-profile \ --profile-id rp-4987774726example \ --resource-id vpc-0af3b96b3example

출력:

{ "ProfileAssociation": { "CreationTime": 1710851336.527, "Id": "rpassoc-489ce212fexample", "ModificationTime": 1710851401.362, "Name": "test-association", "OwnerId": "123456789012", "ProfileId": "rp-4987774726example", "ResourceId": "vpc-0af3b96b3example", "Status": "DELETING", "StatusMessage": "Deleting Profile Association" } }

다음 코드 예시에서는 disassociate-resource-from-profile을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필에서 리소스 연결을 해제하려면

다음 disassociate-resource-from-profile 예제에서는 프로필에서 DNS Firewall 규칙 그룹을 연결 해제합니다.

aws route53profiles disassociate-resource-from-profile \ --profile-id rp-4987774726example \ --resource-arn arn:aws:route53resolver:us-east-1:123456789012:firewall-rule-group/rslvr-frg-cfe7f72example

출력:

{ "ProfileResourceAssociation": { "CreationTime": 1710851216.613, "Id": "rpr-001913120a7example", "ModificationTime": 1710852624.36, "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": "DELETING", "StatusMessage": "Deleting the Profile to DNS Firewall rule group association" } }

다음 코드 예시에서는 get-profile-association을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필 연결에 대한 정보를 가져오려면

다음은 지정된 프로필 연결에 대한 정보를 get-profile-association 반환합니다.

aws route53profiles get-profile-association \ --profile-association-id rpassoc-489ce212fexample

출력:

{ "ProfileAssociation": { "CreationTime": 1709338817.148, "Id": "rrpassoc-489ce212fexample", "ModificationTime": 1709338974.772, "Name": "test-association", "OwnerId": "123456789012", "ProfileId": "rp-4987774726example", "ResourceId": "vpc-0af3b96b3example", "Status": "COMPLETE", "StatusMessage": "Created Profile Association" } }

다음 코드 예시에서는 get-profile-resource-association을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필과 연결된 리소스에 대한 정보를 가져오려면

다음은 지정된 리소스 연결에 대한 정보를 프로파일에 get-profile-resource-association 반환합니다.

aws route53profiles get-profile-resource-association \ --profile-resource-association-id rpr-001913120a7example

출력:

{ "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": "COMPLETE", "StatusMessage": "Completed creation of Profile to DNS Firewall rule group association" } }

다음 코드 예시에서는 get-profile을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필에 대한 정보를 가져오려면

다음은 지정된 프로파일에 대한 정보를 get-profile 반환합니다.

aws route53profiles get-profile \ --profile-id rp-4987774726example

출력:

{ "Profile": { "Arn": "arn:aws:route53profiles:us-east-1:123456789012:profile/rp-4987774726example", "ClientToken": "0cbc5ae7-4921-4204-bea9-EXAMPLE11111", "CreationTime": 1710851044.288, "Id": "rp-4987774726example", "ModificationTime": 1710851044.288, "Name": "test", "OwnerId": "123456789012", "ShareStatus": "NOT_SHARED", "Status": "COMPLETE", "StatusMessage": "Created Profile" } }
  • API 세부 정보는 AWS CLI 명령 참조GetProfile를 참조하세요.

다음 코드 예시에서는 list-profile-associations을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필 연결을 나열하려면

다음은 AWS 계정의 프로필 연결 list-profile-associations 목록입니다.

aws route53profiles list-profile-associations

출력:

{ "ProfileAssociations": [ { "CreationTime": 1709338817.148, "Id": "rpassoc-489ce212fexample", "ModificationTime": 1709338974.772, "Name": "test-association", "OwnerId": "123456789012", "ProfileId": "rp-4987774726example", "ResourceId": "vpc-0af3b96b3example", "Status": "COMPLETE", "StatusMessage": "Created Profile Association" } ] }

다음 코드 예시에서는 list-profile-resource-associations을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필 리소스 연결을 나열하려면

다음은 지정된 프로파일에 대한 프로파일 리소스 연결을 list-profile-resource-associations 나열합니다.

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" } ] }

다음 코드 예시에서는 list-profiles을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필을 나열하려면

다음은 AWS 계정의 프로필을 list-profiles 나열하고 이에 대한 추가 정보를 표시합니다.

aws route53profiles list-profiles

출력:

{ "ProfileSummaries": [ { "Arn": "arn:aws:route53profiles:us-east-1:123456789012:profile/rp-4987774726example", "Id": "rp-4987774726example", "Name": "test", "ShareStatus": "NOT_SHARED" } ] }
  • API 세부 정보는 AWS CLI 명령 참조ListProfiles를 참조하세요.

다음 코드 예시에서는 list-tags-for-resource을 사용하는 방법을 보여 줍니다.

AWS CLI

리소스에 대한 태그를 나열하려면

다음은 지정된 리소스에 대한 태그를 list-tags-for-resource 나열합니다.

aws route53profiles list-tags-for-resource \ --resource-arn arn:aws:route53profiles:us-east-1:123456789012:profile/rp-4987774726example

출력:

{ "Tags": { "my-key-2": "my-value-2", "my-key-1": "my-value-1" } }

다음 코드 예시에서는 update-profile-resource-association을 사용하는 방법을 보여 줍니다.

AWS CLI

프로필에 연결된 리소스를 업데이트하려면

다음은 프로파일에 연결된 DNS Firewall 규칙 그룹의 우선 순위를 update-profile-resource-association 업데이트합니다.

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" } }