AWS Doc SDK Examples
翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
UpdateSecurityGroupRuleDescriptionsIngress
で を使用する CLI
以下のコード例は、UpdateSecurityGroupRuleDescriptionsIngress
の使用方法を示しています。
- CLI
-
- AWS CLI
-
例 1: インバウンドセキュリティグループルールの説明をCIDRソースで更新するには
次の
update-security-group-rule-descriptions-ingress
例では、指定されたポートとIPv4アドレス範囲のセキュリティグループルールの説明を更新します。説明 'SSH access from ABC office
' は、ルールの既存の説明を置き換えます。aws ec2 update-security-group-rule-descriptions-ingress \ --group-id
sg-02f0d35a850ba727f
\ --ip-permissions IpProtocol=tcp,FromPort=22,ToPort=22,IpRanges='[{CidrIp=203.0.113.0/16,Description="SSH access from corpnet"}]'出力:
{ "Return": true }
詳細については、「Amazon EC2ユーザーガイド」の「セキュリティグループのルール」を参照してください。
例 2: プレフィックスリストソースを使用してインバウンドセキュリティグループルールの説明を更新するには
次の
update-security-group-rule-descriptions-ingress
例では、指定されたポートとプレフィックスリストのセキュリティグループルールの説明を更新します。説明 'SSH access from ABC office
' は、ルールの既存の説明を置き換えます。aws ec2 update-security-group-rule-descriptions-ingress \ --group-id
sg-02f0d35a850ba727f
\ --ip-permissions IpProtocol=tcp,FromPort=22,ToPort=22,PrefixListIds='[{PrefixListId=pl-12345678,Description="SSH access from corpnet"}]'出力:
{ "Return": true }
詳細については、「Amazon EC2ユーザーガイド」の「セキュリティグループのルール」を参照してください。
-
API 詳細については、AWS CLI 「 コマンドリファレンスUpdateSecurityGroupRuleDescriptionsIngress
」の「」を参照してください。
-
- PowerShell
-
- のツール PowerShell
-
例 1: 既存のイングレス (インバウンド) セキュリティグループルールの説明を更新します。
$existingInboundRule = Get-EC2SecurityGroupRule -SecurityGroupRuleId "sgr-1234567890" $ruleWithUpdatedDescription = [Amazon.EC2.Model.SecurityGroupRuleDescription]@{ "SecurityGroupRuleId" = $existingInboundRule.SecurityGroupRuleId "Description" = "Updated rule description" } Update-EC2SecurityGroupRuleIngressDescription -GroupId $existingInboundRule.GroupId -SecurityGroupRuleDescription $ruleWithUpdatedDescription
例 2: 既存のイングレス (インバウンド) セキュリティグループルールの説明を削除します (リクエストで パラメータを省略)。
$existingInboundRule = Get-EC2SecurityGroupRule -SecurityGroupRuleId "sgr-1234567890" $ruleWithoutDescription = [Amazon.EC2.Model.SecurityGroupRuleDescription]@{ "SecurityGroupRuleId" = $existingInboundRule.SecurityGroupRuleId } Update-EC2SecurityGroupRuleIngressDescription -GroupId $existingInboundRule.GroupId -SecurityGroupRuleDescription $ruleWithoutDescription
-
API 詳細については、「 コマンドレットリファレンスUpdateSecurityGroupRuleDescriptionsIngress」の「」を参照してください。 AWS Tools for PowerShell
-