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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// A structure that contains some information about a private re:Post in the
// account.
type SpaceData struct {
// The ARN of the private re:Post.
//
// This member is required.
Arn *string
// The configuration status of the private re:Post.
//
// This member is required.
ConfigurationStatus ConfigurationStatus
// The date when the private re:Post was created.
//
// This member is required.
CreateDateTime *time.Time
// The name for the private re:Post.
//
// This member is required.
Name *string
// The AWS generated subdomain of the private re:Post.
//
// This member is required.
RandomDomain *string
// The unique ID of the private re:Post.
//
// This member is required.
SpaceId *string
// The creation/deletion status of the private re:Post.
//
// This member is required.
Status *string
// The storage limit of the private re:Post.
//
// This member is required.
StorageLimit *int64
// The pricing tier of the private re:Post.
//
// This member is required.
Tier TierLevel
// This custom subdomain that you use to access your private re:Post. All custom
// subdomains must be approved by AWS before use.
//
// This member is required.
VanityDomain *string
// This approval status of the custom subdomain.
//
// This member is required.
VanityDomainStatus VanityDomainStatus
// The content size of the private re:Post.
ContentSize *int64
// The date when the private re:Post was deleted.
DeleteDateTime *time.Time
// The description for the private re:Post. This is used only to help you identify
// this private re:Post.
Description *string
// The number of onboarded users to the private re:Post.
UserCount *int32
// The custom AWS KMS key ARN that’s used for the AWS KMS encryption.
UserKMSKey *string
noSmithyDocumentSerde
}
// Stores information about a field that’s passed inside a request that resulted
// in an exception.
type ValidationExceptionField struct {
// The name of the field.
//
// This member is required.
Message *string
// Message describing why the field failed validation.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|