-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
38 lines (32 loc) · 815 Bytes
/
types.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
package main
import (
"github.com/aws/aws-sdk-go-v2/service/iam/types"
awspolicy "github.com/n4ch04/aws-policy"
)
type UserMetaData struct {
User types.User
Groups []types.Group
GroupInlinePolicies []GroupPolicies
GroupAttachedPolicies [][]types.AttachedPolicy
GroupInlinePolicyDocuments []awspolicy.Policy
UserInlinePolicies []string
UserAttachedPolicies [][]types.AttachedPolicy
UserInlinePolicyDocument []awspolicy.Policy
}
// TODO change to lower?
type AllUsers struct {
UserMetaData []UserMetaData
}
//TODO change to lower?
type GroupPolicies struct {
Group types.Group
Policies []string
}
type method struct {
MethodName string
PolicySets []policySet
}
type policySet struct {
PolicyName string
PolicyBool bool
}