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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type InstanceAccessControlAttributeConfigurationStatus string
// Enum values for InstanceAccessControlAttributeConfigurationStatus
const (
InstanceAccessControlAttributeConfigurationStatusEnabled InstanceAccessControlAttributeConfigurationStatus = "ENABLED"
InstanceAccessControlAttributeConfigurationStatusCreationInProgress InstanceAccessControlAttributeConfigurationStatus = "CREATION_IN_PROGRESS"
InstanceAccessControlAttributeConfigurationStatusCreationFailed InstanceAccessControlAttributeConfigurationStatus = "CREATION_FAILED"
)
// Values returns all known values for
// InstanceAccessControlAttributeConfigurationStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (InstanceAccessControlAttributeConfigurationStatus) Values() []InstanceAccessControlAttributeConfigurationStatus {
return []InstanceAccessControlAttributeConfigurationStatus{
"ENABLED",
"CREATION_IN_PROGRESS",
"CREATION_FAILED",
}
}
type PrincipalType string
// Enum values for PrincipalType
const (
PrincipalTypeUser PrincipalType = "USER"
PrincipalTypeGroup PrincipalType = "GROUP"
)
// Values returns all known values for PrincipalType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (PrincipalType) Values() []PrincipalType {
return []PrincipalType{
"USER",
"GROUP",
}
}
type ProvisioningStatus string
// Enum values for ProvisioningStatus
const (
ProvisioningStatusLatestPermissionSetProvisioned ProvisioningStatus = "LATEST_PERMISSION_SET_PROVISIONED"
ProvisioningStatusLatestPermissionSetNotProvisioned ProvisioningStatus = "LATEST_PERMISSION_SET_NOT_PROVISIONED"
)
// Values returns all known values for ProvisioningStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ProvisioningStatus) Values() []ProvisioningStatus {
return []ProvisioningStatus{
"LATEST_PERMISSION_SET_PROVISIONED",
"LATEST_PERMISSION_SET_NOT_PROVISIONED",
}
}
type ProvisionTargetType string
// Enum values for ProvisionTargetType
const (
ProvisionTargetTypeAwsAccount ProvisionTargetType = "AWS_ACCOUNT"
ProvisionTargetTypeAllProvisionedAccounts ProvisionTargetType = "ALL_PROVISIONED_ACCOUNTS"
)
// Values returns all known values for ProvisionTargetType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ProvisionTargetType) Values() []ProvisionTargetType {
return []ProvisionTargetType{
"AWS_ACCOUNT",
"ALL_PROVISIONED_ACCOUNTS",
}
}
type StatusValues string
// Enum values for StatusValues
const (
StatusValuesInProgress StatusValues = "IN_PROGRESS"
StatusValuesFailed StatusValues = "FAILED"
StatusValuesSucceeded StatusValues = "SUCCEEDED"
)
// Values returns all known values for StatusValues. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (StatusValues) Values() []StatusValues {
return []StatusValues{
"IN_PROGRESS",
"FAILED",
"SUCCEEDED",
}
}
type TargetType string
// Enum values for TargetType
const (
TargetTypeAwsAccount TargetType = "AWS_ACCOUNT"
)
// Values returns all known values for TargetType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (TargetType) Values() []TargetType {
return []TargetType{
"AWS_ACCOUNT",
}
}
|