Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) CollectResource ¶
type PasswordPolicy ¶ added in v0.3.6
type PasswordPolicy struct {
ID uint `gorm:"primarykey"`
AccountID string
AllowUsersToChangePassword *bool
ExpirePasswords *bool
HardExpiry *bool
MaxPasswordAge *int64
MinimumPasswordLength *int64
PasswordReusePrevention *int64
RequireLowercaseCharacters *bool
RequireNumbers *bool
RequireSymbols *bool
RequireUppercaseCharacters *bool
}
type Role ¶
type Role struct {
ID uint `gorm:"primarykey"`
AccountID string
Arn *string
AssumeRolePolicyDocument *string
CreateDate *time.Time
Description *string
MaxSessionDuration *int64
Path *string
PermissionsBoundary *iam.AttachedPermissionsBoundary `gorm:"embedded;embeddedPrefix:permissions_boundary_"`
RoleId *string
RoleLastUsed *iam.RoleLastUsed `gorm:"embedded;embeddedPrefix:role_last_used_"`
RoleName *string
Tags []*RoleTag `gorm:"constraint:OnDelete:CASCADE;"`
}
type User ¶
type User struct {
ID uint `gorm:"primarykey"`
AccountID string
Arn *string
CreateDate *time.Time
PasswordLastUsed *time.Time
Path *string
PermissionsBoundary *iam.AttachedPermissionsBoundary `gorm:"embedded;embeddedPrefix:permissions_boundary_"`
Tags []*UserTag `gorm:"constraint:OnDelete:CASCADE;"`
UserId *string
UserName *string
}
Click to show internal directories.
Click to hide internal directories.