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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// The details of the bundle.
type BundleDetails struct {
// Developer desktop or mobile app or website platforms.
AvailablePlatforms []Platform
// Unique bundle identifier.
BundleId *string
// Description of the download bundle.
Description *string
// Icon for the download bundle.
IconUrl *string
// Title of the download bundle.
Title *string
// Version of the download bundle.
Version *string
noSmithyDocumentSerde
}
// Detailed information about an AWS Mobile Hub project.
type ProjectDetails struct {
// Website URL for this project in the AWS Mobile Hub console.
ConsoleUrl *string
// Date the project was created.
CreatedDate *time.Time
// Date of the last modification of the project.
LastUpdatedDate *time.Time
// Name of the project.
Name *string
// Unique project identifier.
ProjectId *string
// Default region to use for AWS resource creation in the AWS Mobile Hub project.
Region *string
// List of AWS resources associated with a project.
Resources []Resource
// Synchronization state for a project.
State ProjectState
noSmithyDocumentSerde
}
// Summary information about an AWS Mobile Hub project.
type ProjectSummary struct {
// Name of the project.
Name *string
// Unique project identifier.
ProjectId *string
noSmithyDocumentSerde
}
// Information about an instance of an AWS resource associated with a project.
type Resource struct {
// AWS resource name which uniquely identifies the resource in AWS systems.
Arn *string
// Key-value attribute pairs.
Attributes map[string]string
// Identifies which feature in AWS Mobile Hub is associated with this AWS resource.
Feature *string
// Name of the AWS resource (e.g., for an Amazon S3 bucket this is the name of the
// bucket).
Name *string
// Simplified name for type of AWS resource (e.g., bucket is an Amazon S3 bucket).
Type *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|