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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// The summary of devices.
type DeviceSummary struct {
// The ID of the device.
DeviceId *string
// The status of the device.
DeviceStatus DeviceStatus
noSmithyDocumentSerde
}
// The summary of the domain.
type DomainSummary struct {
// The time that the domain was created.
//
// This member is required.
CreatedTime *time.Time
// The name of the domain.
//
// This member is required.
DomainName *string
// The status of the domain.
//
// This member is required.
DomainStatus DomainStatus
// The name to display.
DisplayName *string
noSmithyDocumentSerde
}
// The summary of the fleet.
type FleetSummary struct {
// The identifier used by users to sign into the Amazon WorkLink app.
CompanyCode *string
// The time when the fleet was created.
CreatedTime *time.Time
// The name of the fleet to display.
DisplayName *string
// The Amazon Resource Name (ARN) of the fleet.
FleetArn *string
// The name of the fleet.
FleetName *string
// The status of the fleet.
FleetStatus FleetStatus
// The time when the fleet was last updated.
LastUpdatedTime *time.Time
// The tags attached to the resource. A tag is a key-value pair.
Tags map[string]string
noSmithyDocumentSerde
}
// The summary of the website authorization provider.
type WebsiteAuthorizationProviderSummary struct {
// The authorization provider type.
//
// This member is required.
AuthorizationProviderType AuthorizationProviderType
// A unique identifier for the authorization provider.
AuthorizationProviderId *string
// The time of creation.
CreatedTime *time.Time
// The domain name of the authorization provider. This applies only to SAML-based
// authorization providers.
DomainName *string
noSmithyDocumentSerde
}
// The summary of the certificate authority (CA).
type WebsiteCaSummary struct {
// The time when the CA was added.
CreatedTime *time.Time
// The name to display.
DisplayName *string
// A unique identifier for the CA.
WebsiteCaId *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|