-
Notifications
You must be signed in to change notification settings - Fork 0
/
ec2.go
48 lines (42 loc) · 919 Bytes
/
ec2.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package main
import (
"context"
"encoding/json"
"fmt"
"log"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/service/ec2"
"github.com/aws/aws-sdk-go-v2/service/ec2/types"
)
func main() {
const instanceId = ""
cfg, err := config.LoadDefaultConfig(context.TODO())
if err != nil {
log.Fatal(err)
}
client := ec2.NewFromConfig(cfg)
// no filter
//output, err := client.DescribeInstances(context.TODO(), nil)
// filter
output, err := client.DescribeInstances(context.TODO(), &ec2.DescribeInstancesInput{
Filters: []types.Filter{
{
Name: aws.String("instance-state-name"),
Values: []string{
"running",
"pending",
"stopped",
},
},
},
InstanceIds: []string{
instanceId,
},
})
if err != nil {
log.Fatal(err)
}
jsonOutput, _ := json.MarshalIndent(output, "", "\t")
fmt.Println(string(jsonOutput))
}