package types
import "github.com/aws/aws-sdk-go-v2/service/worklink/types"
Index ¶
- type AuthorizationProviderType
- type DeviceStatus
- type DeviceSummary
- type DomainStatus
- type DomainSummary
- type FleetStatus
- type FleetSummary
- type IdentityProviderType
- type InternalServerErrorException
- func (e *InternalServerErrorException) Error() string
- func (e *InternalServerErrorException) ErrorCode() string
- func (e *InternalServerErrorException) ErrorFault() smithy.ErrorFault
- func (e *InternalServerErrorException) ErrorMessage() string
- type InvalidRequestException
- func (e *InvalidRequestException) Error() string
- func (e *InvalidRequestException) ErrorCode() string
- func (e *InvalidRequestException) ErrorFault() smithy.ErrorFault
- func (e *InvalidRequestException) ErrorMessage() string
- type ResourceAlreadyExistsException
- func (e *ResourceAlreadyExistsException) Error() string
- func (e *ResourceAlreadyExistsException) ErrorCode() string
- func (e *ResourceAlreadyExistsException) ErrorFault() smithy.ErrorFault
- func (e *ResourceAlreadyExistsException) ErrorMessage() string
- type ResourceNotFoundException
- func (e *ResourceNotFoundException) Error() string
- func (e *ResourceNotFoundException) ErrorCode() string
- func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
- func (e *ResourceNotFoundException) ErrorMessage() string
- type TooManyRequestsException
- func (e *TooManyRequestsException) Error() string
- func (e *TooManyRequestsException) ErrorCode() string
- func (e *TooManyRequestsException) ErrorFault() smithy.ErrorFault
- func (e *TooManyRequestsException) ErrorMessage() string
- type UnauthorizedException
- func (e *UnauthorizedException) Error() string
- func (e *UnauthorizedException) ErrorCode() string
- func (e *UnauthorizedException) ErrorFault() smithy.ErrorFault
- func (e *UnauthorizedException) ErrorMessage() string
- type WebsiteAuthorizationProviderSummary
- type WebsiteCaSummary
Types ¶
type AuthorizationProviderType ¶
type AuthorizationProviderType string
const ( AuthorizationProviderTypeSaml AuthorizationProviderType = "SAML" )
Enum values for AuthorizationProviderType
type DeviceStatus ¶
type DeviceStatus string
const ( DeviceStatusActive DeviceStatus = "ACTIVE" DeviceStatusSigned_out DeviceStatus = "SIGNED_OUT" )
Enum values for DeviceStatus
type DeviceSummary ¶
type DeviceSummary struct { // The ID of the device. DeviceId *string // The status of the device. DeviceStatus DeviceStatus }
The summary of devices.
type DomainStatus ¶
type DomainStatus string
const ( DomainStatusPending_validation DomainStatus = "PENDING_VALIDATION" DomainStatusAssociating DomainStatus = "ASSOCIATING" DomainStatusActive DomainStatus = "ACTIVE" DomainStatusInactive DomainStatus = "INACTIVE" DomainStatusDisassociating DomainStatus = "DISASSOCIATING" DomainStatusDisassociated DomainStatus = "DISASSOCIATED" DomainStatusFailed_to_associate DomainStatus = "FAILED_TO_ASSOCIATE" DomainStatusFailed_to_disassociate DomainStatus = "FAILED_TO_DISASSOCIATE" )
Enum values for DomainStatus
type DomainSummary ¶
type DomainSummary struct { // The name of the domain. // // This member is required. DomainName *string // The name to display. DisplayName *string // The status of the domain. // // This member is required. DomainStatus DomainStatus // The time that the domain was created. // // This member is required. CreatedTime *time.Time }
The summary of the domain.
type FleetStatus ¶
type FleetStatus string
const ( FleetStatusCreating FleetStatus = "CREATING" FleetStatusActive FleetStatus = "ACTIVE" FleetStatusDeleting FleetStatus = "DELETING" FleetStatusDeleted FleetStatus = "DELETED" FleetStatusFailed_to_create FleetStatus = "FAILED_TO_CREATE" FleetStatusFailed_to_delete FleetStatus = "FAILED_TO_DELETE" )
Enum values for FleetStatus
type FleetSummary ¶
type FleetSummary struct { // The time when the fleet was last updated. LastUpdatedTime *time.Time // The identifier used by users to sign into the Amazon WorkLink app. CompanyCode *string // The name of the fleet to display. DisplayName *string // The name of the fleet. FleetName *string // The time when the fleet was created. CreatedTime *time.Time // The status of the fleet. FleetStatus FleetStatus // The tags attached to the resource. A tag is a key-value pair. Tags map[string]*string // The Amazon Resource Name (ARN) of the fleet. FleetArn *string }
The summary of the fleet.
type IdentityProviderType ¶
type IdentityProviderType string
const ( IdentityProviderTypeSaml IdentityProviderType = "SAML" )
Enum values for IdentityProviderType
type InternalServerErrorException ¶
type InternalServerErrorException struct { Message *string }
The service is temporarily unavailable.
func (*InternalServerErrorException) Error ¶
func (e *InternalServerErrorException) Error() string
func (*InternalServerErrorException) ErrorCode ¶
func (e *InternalServerErrorException) ErrorCode() string
func (*InternalServerErrorException) ErrorFault ¶
func (e *InternalServerErrorException) ErrorFault() smithy.ErrorFault
func (*InternalServerErrorException) ErrorMessage ¶
func (e *InternalServerErrorException) ErrorMessage() string
type InvalidRequestException ¶
type InvalidRequestException struct { Message *string }
The request is not valid.
func (*InvalidRequestException) Error ¶
func (e *InvalidRequestException) Error() string
func (*InvalidRequestException) ErrorCode ¶
func (e *InvalidRequestException) ErrorCode() string
func (*InvalidRequestException) ErrorFault ¶
func (e *InvalidRequestException) ErrorFault() smithy.ErrorFault
func (*InvalidRequestException) ErrorMessage ¶
func (e *InvalidRequestException) ErrorMessage() string
type ResourceAlreadyExistsException ¶
type ResourceAlreadyExistsException struct { Message *string }
The resource already exists.
func (*ResourceAlreadyExistsException) Error ¶
func (e *ResourceAlreadyExistsException) Error() string
func (*ResourceAlreadyExistsException) ErrorCode ¶
func (e *ResourceAlreadyExistsException) ErrorCode() string
func (*ResourceAlreadyExistsException) ErrorFault ¶
func (e *ResourceAlreadyExistsException) ErrorFault() smithy.ErrorFault
func (*ResourceAlreadyExistsException) ErrorMessage ¶
func (e *ResourceAlreadyExistsException) ErrorMessage() string
type ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string }
The requested resource was not found.
func (*ResourceNotFoundException) Error ¶
func (e *ResourceNotFoundException) Error() string
func (*ResourceNotFoundException) ErrorCode ¶
func (e *ResourceNotFoundException) ErrorCode() string
func (*ResourceNotFoundException) ErrorFault ¶
func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
func (*ResourceNotFoundException) ErrorMessage ¶
func (e *ResourceNotFoundException) ErrorMessage() string
type TooManyRequestsException ¶
type TooManyRequestsException struct { Message *string }
The number of requests exceeds the limit.
func (*TooManyRequestsException) Error ¶
func (e *TooManyRequestsException) Error() string
func (*TooManyRequestsException) ErrorCode ¶
func (e *TooManyRequestsException) ErrorCode() string
func (*TooManyRequestsException) ErrorFault ¶
func (e *TooManyRequestsException) ErrorFault() smithy.ErrorFault
func (*TooManyRequestsException) ErrorMessage ¶
func (e *TooManyRequestsException) ErrorMessage() string
type UnauthorizedException ¶
type UnauthorizedException struct { string }*
You are not authorized to perform this action.
func (*UnauthorizedException) Error ¶
func (e *UnauthorizedException) Error() string
func (*UnauthorizedException) ErrorCode ¶
func (e *UnauthorizedException) ErrorCode() string
func (*UnauthorizedException) ErrorFault ¶
func (e *UnauthorizedException) ErrorFault() smithy.ErrorFault
func (*UnauthorizedException) ErrorMessage ¶
func (e *UnauthorizedException) ErrorMessage() string
type WebsiteAuthorizationProviderSummary ¶
type WebsiteAuthorizationProviderSummary struct { // A unique identifier for the authorization provider. AuthorizationProviderId *string // The domain name of the authorization provider. This applies only to SAML-based // authorization providers. DomainName *string // The time of creation. CreatedTime *time.Time // The authorization provider type. // // This member is required. AuthorizationProviderType AuthorizationProviderType }
The summary of the website authorization provider.
type WebsiteCaSummary ¶
type WebsiteCaSummary struct { // The time when the CA was added. CreatedTime *time.Time // A unique identifier for the CA. WebsiteCaId *string // The name to display. DisplayName *string }
The summary of the certificate authority (CA).
Source Files ¶
- Version
- v0.26.0
- Published
- Oct 1, 2020
- Platform
- linux/amd64
- Imports
- 3 packages
- Last checked
- 1 hour ago –
Tools for package owners.