DescribeTargetGroupAttributes で を使用する CLI - AWS SDK コード例

AWS Doc SDK Examples GitHub リポジトリには他にも AWS SDK例があります。

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

DescribeTargetGroupAttributes で を使用する CLI

以下のコード例は、DescribeTargetGroupAttributes の使用方法を示しています。

CLI
AWS CLI

ターゲットグループ属性を記述するには

次のdescribe-target-group-attributes例では、指定されたターゲットグループの属性を表示します。

aws elbv2 describe-target-group-attributes \ --target-group-arn arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067

プロトコルが HTTPまたは HTTPSで、ターゲットタイプが instanceまたは の場合、出力には 属性が含まれますip

{ "Attributes": [ { "Value": "false", "Key": "stickiness.enabled" }, { "Value": "300", "Key": "deregistration_delay.timeout_seconds" }, { "Value": "lb_cookie", "Key": "stickiness.type" }, { "Value": "86400", "Key": "stickiness.lb_cookie.duration_seconds" }, { "Value": "0", "Key": "slow_start.duration_seconds" } ] }

次の出力には、プロトコルが HTTPまたは HTTPSで、ターゲットタイプが の場合の属性が含まれますlambda

{ "Attributes": [ { "Value": "false", "Key": "lambda.multi_value_headers.enabled" } ] }

次の出力には、プロトコルが TCP、TLS、、または TCP_ の場合UDPの属性が含まれますUDP。

{ "Attributes": [ { "Value": "false", "Key": "proxy_protocol_v2.enabled" }, { "Value": "300", "Key": "deregistration_delay.timeout_seconds" } ] }
PowerShell
のツール PowerShell

例 1: この例では、指定されたターゲットグループの属性について説明します。

Get-ELB2TargetGroupAttribute -TargetGroupArn 'arn:aws:elasticloadbalancing:us-east-1:123456789012:targetgroup/test-tg/a4e04b3688be1970'

出力:

Key Value --- ----- stickiness.enabled false deregistration_delay.timeout_seconds 300 stickiness.type lb_cookie stickiness.lb_cookie.duration_seconds 86400 slow_start.duration_seconds 0 load_balancing.algorithm.type round_robin
  • API 詳細については、「 コマンドレットリファレンスDescribeTargetGroupAttributes」の「」を参照してください。 AWS Tools for PowerShell