Documentation ¶
Index ¶
- type App
- type Artifact
- type AutoBranchCreationConfig
- type BackendEnvironment
- type BadRequestException
- type Branch
- type CustomRule
- type DependentServiceFailureException
- type DomainAssociation
- type DomainStatus
- type InternalFailureException
- type Job
- type JobStatus
- type JobSummary
- type JobType
- type LimitExceededException
- type NotFoundException
- type Platform
- type ProductionBranch
- type RepositoryCloneMethod
- type ResourceNotFoundException
- type Stage
- type Step
- type SubDomain
- type SubDomainSetting
- type UnauthorizedException
- type Webhook
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type App ¶
type App struct { // The Amazon Resource Name (ARN) of the Amplify app. // // This member is required. AppArn *string // The unique ID of the Amplify app. // // This member is required. AppId *string // Creates a date and time for the Amplify app. // // This member is required. CreateTime *time.Time // The default domain for the Amplify app. // // This member is required. DefaultDomain *string // The description for the Amplify app. // // This member is required. Description *string // Enables basic authorization for the Amplify app's branches. // // This member is required. EnableBasicAuth *bool // Enables the auto-building of branches for the Amplify app. // // This member is required. EnableBranchAutoBuild *bool // The environment variables for the Amplify app. // // This member is required. EnvironmentVariables map[string]string // The name for the Amplify app. // // This member is required. Name *string // The platform for the Amplify app. // // This member is required. Platform Platform // The Git repository for the Amplify app. // // This member is required. Repository *string // Updates the date and time for the Amplify app. // // This member is required. UpdateTime *time.Time // Describes the automated branch creation configuration for the Amplify app. AutoBranchCreationConfig *AutoBranchCreationConfig // Describes the automated branch creation glob patterns for the Amplify app. AutoBranchCreationPatterns []string // The basic authorization credentials for branches for the Amplify app. You must // base64-encode the authorization credentials and provide them in the format // user:password. BasicAuthCredentials *string // Describes the content of the build specification (build spec) for the Amplify // app. BuildSpec *string // Describes the custom HTTP headers for the Amplify app. CustomHeaders *string // Describes the custom redirect and rewrite rules for the Amplify app. CustomRules []CustomRule // Enables automated branch creation for the Amplify app. EnableAutoBranchCreation *bool // Automatically disconnect a branch in the Amplify Console when you delete a // branch from your Git repository. EnableBranchAutoDeletion *bool // The AWS Identity and Access Management (IAM) service role for the Amazon // Resource Name (ARN) of the Amplify app. IamServiceRoleArn *string // Describes the information about a production branch of the Amplify app. ProductionBranch *ProductionBranch // This is for internal use. The Amplify service uses this parameter to specify the // authentication protocol to use to access the Git repository for an Amplify app. // Amplify specifies TOKEN for a GitHub repository, SIGV4 for an Amazon Web // Services CodeCommit repository, and SSH for GitLab and Bitbucket repositories. RepositoryCloneMethod RepositoryCloneMethod // The tag for the Amplify app. Tags map[string]string // contains filtered or unexported fields }
Represents the different branches of a repository for building, deploying, and hosting an Amplify app.
type Artifact ¶
type Artifact struct { // The file name for the artifact. // // This member is required. ArtifactFileName *string // The unique ID for the artifact. // // This member is required. ArtifactId *string // contains filtered or unexported fields }
Describes an artifact.
type AutoBranchCreationConfig ¶
type AutoBranchCreationConfig struct { // The basic authorization credentials for the autocreated branch. You must // base64-encode the authorization credentials and provide them in the format // user:password. BasicAuthCredentials *string // The build specification (build spec) for the autocreated branch. BuildSpec *string // Enables auto building for the autocreated branch. EnableAutoBuild *bool // Enables basic authorization for the autocreated branch. EnableBasicAuth *bool // Enables performance mode for the branch. Performance mode optimizes for faster // hosting performance by keeping content cached at the edge for a longer interval. // When performance mode is enabled, hosting configuration or code changes can take // up to 10 minutes to roll out. EnablePerformanceMode *bool // Enables pull request previews for the autocreated branch. EnablePullRequestPreview *bool // The environment variables for the autocreated branch. EnvironmentVariables map[string]string // The framework for the autocreated branch. Framework *string // The Amplify environment name for the pull request. PullRequestEnvironmentName *string // Describes the current stage for the autocreated branch. Stage Stage // contains filtered or unexported fields }
Describes the automated branch creation configuration.
type BackendEnvironment ¶
type BackendEnvironment struct { // The Amazon Resource Name (ARN) for a backend environment that is part of an // Amplify app. // // This member is required. BackendEnvironmentArn *string // The creation date and time for a backend environment that is part of an Amplify // app. // // This member is required. CreateTime *time.Time // The name for a backend environment that is part of an Amplify app. // // This member is required. EnvironmentName *string // The last updated date and time for a backend environment that is part of an // Amplify app. // // This member is required. UpdateTime *time.Time // The name of deployment artifacts. DeploymentArtifacts *string // The AWS CloudFormation stack name of a backend environment. StackName *string // contains filtered or unexported fields }
Describes the backend environment for an Amplify app.
type BadRequestException ¶
type BadRequestException struct { Message *string // contains filtered or unexported fields }
A request contains unexpected data.
func (*BadRequestException) Error ¶
func (e *BadRequestException) Error() string
func (*BadRequestException) ErrorCode ¶
func (e *BadRequestException) ErrorCode() string
func (*BadRequestException) ErrorFault ¶
func (e *BadRequestException) ErrorFault() smithy.ErrorFault
func (*BadRequestException) ErrorMessage ¶
func (e *BadRequestException) ErrorMessage() string
type Branch ¶
type Branch struct { // The ID of the active job for a branch of an Amplify app. // // This member is required. ActiveJobId *string // The Amazon Resource Name (ARN) for a branch that is part of an Amplify app. // // This member is required. BranchArn *string // The name for the branch that is part of an Amplify app. // // This member is required. BranchName *string // The creation date and time for a branch that is part of an Amplify app. // // This member is required. CreateTime *time.Time // The custom domains for a branch of an Amplify app. // // This member is required. CustomDomains []string // The description for the branch that is part of an Amplify app. // // This member is required. Description *string // The display name for the branch. This is used as the default domain prefix. // // This member is required. DisplayName *string // Enables auto-building on push for a branch of an Amplify app. // // This member is required. EnableAutoBuild *bool // Enables basic authorization for a branch of an Amplify app. // // This member is required. EnableBasicAuth *bool // Enables notifications for a branch that is part of an Amplify app. // // This member is required. EnableNotification *bool // Enables pull request previews for the branch. // // This member is required. EnablePullRequestPreview *bool // The environment variables specific to a branch of an Amplify app. // // This member is required. EnvironmentVariables map[string]string // The framework for a branch of an Amplify app. // // This member is required. Framework *string // The current stage for the branch that is part of an Amplify app. // // This member is required. Stage Stage // The total number of jobs that are part of an Amplify app. // // This member is required. TotalNumberOfJobs *string // The content Time to Live (TTL) for the website in seconds. // // This member is required. Ttl *string // The last updated date and time for a branch that is part of an Amplify app. // // This member is required. UpdateTime *time.Time // A list of custom resources that are linked to this branch. AssociatedResources []string // The Amazon Resource Name (ARN) for a backend environment that is part of an // Amplify app. BackendEnvironmentArn *string // The basic authorization credentials for a branch of an Amplify app. You must // base64-encode the authorization credentials and provide them in the format // user:password. BasicAuthCredentials *string // The build specification (build spec) content for the branch of an Amplify app. BuildSpec *string // The destination branch if the branch is a pull request branch. DestinationBranch *string // Enables performance mode for the branch. Performance mode optimizes for faster // hosting performance by keeping content cached at the edge for a longer interval. // When performance mode is enabled, hosting configuration or code changes can take // up to 10 minutes to roll out. EnablePerformanceMode *bool // The Amplify environment name for the pull request. PullRequestEnvironmentName *string // The source branch if the branch is a pull request branch. SourceBranch *string // The tag for the branch of an Amplify app. Tags map[string]string // The thumbnail URL for the branch of an Amplify app. ThumbnailUrl *string // contains filtered or unexported fields }
The branch for an Amplify app, which maps to a third-party repository branch.
type CustomRule ¶
type CustomRule struct { // The source pattern for a URL rewrite or redirect rule. // // This member is required. Source *string // The target pattern for a URL rewrite or redirect rule. // // This member is required. Target *string // The condition for a URL rewrite or redirect rule, such as a country code. Condition *string // The status code for a URL rewrite or redirect rule. 200 Represents a 200 rewrite // rule. 301 Represents a 301 (moved pemanently) redirect rule. This and all future // requests should be directed to the target URL. 302 Represents a 302 temporary // redirect rule. 404 Represents a 404 redirect rule. 404-200 Represents a 404 // rewrite rule. Status *string // contains filtered or unexported fields }
Describes a custom rewrite or redirect rule.
type DependentServiceFailureException ¶
type DependentServiceFailureException struct { Message *string // contains filtered or unexported fields }
An operation failed because a dependent service threw an exception.
func (*DependentServiceFailureException) Error ¶
func (e *DependentServiceFailureException) Error() string
func (*DependentServiceFailureException) ErrorCode ¶
func (e *DependentServiceFailureException) ErrorCode() string
func (*DependentServiceFailureException) ErrorFault ¶
func (e *DependentServiceFailureException) ErrorFault() smithy.ErrorFault
func (*DependentServiceFailureException) ErrorMessage ¶
func (e *DependentServiceFailureException) ErrorMessage() string
type DomainAssociation ¶
type DomainAssociation struct { // The Amazon Resource Name (ARN) for the domain association. // // This member is required. DomainAssociationArn *string // The name of the domain. // // This member is required. DomainName *string // The current status of the domain association. // // This member is required. DomainStatus DomainStatus // Enables the automated creation of subdomains for branches. // // This member is required. EnableAutoSubDomain *bool // The reason for the current status of the domain association. // // This member is required. StatusReason *string // The subdomains for the domain association. // // This member is required. SubDomains []SubDomain // Sets branch patterns for automatic subdomain creation. AutoSubDomainCreationPatterns []string // The required AWS Identity and Access Management (IAM) service role for the // Amazon Resource Name (ARN) for automatically creating subdomains. AutoSubDomainIAMRole *string // The DNS record for certificate verification. CertificateVerificationDNSRecord *string // contains filtered or unexported fields }
Describes a domain association that associates a custom domain with an Amplify app.
type DomainStatus ¶
type DomainStatus string
const ( DomainStatusPendingVerification DomainStatus = "PENDING_VERIFICATION" DomainStatusInProgress DomainStatus = "IN_PROGRESS" DomainStatusAvailable DomainStatus = "AVAILABLE" DomainStatusPendingDeployment DomainStatus = "PENDING_DEPLOYMENT" DomainStatusFailed DomainStatus = "FAILED" DomainStatusCreating DomainStatus = "CREATING" DomainStatusRequestingCertificate DomainStatus = "REQUESTING_CERTIFICATE" DomainStatusUpdating DomainStatus = "UPDATING" )
Enum values for DomainStatus
func (DomainStatus) Values ¶ added in v0.29.0
func (DomainStatus) Values() []DomainStatus
Values returns all known values for DomainStatus. 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.
type InternalFailureException ¶
type InternalFailureException struct { Message *string // contains filtered or unexported fields }
The service failed to perform an operation due to an internal issue.
func (*InternalFailureException) Error ¶
func (e *InternalFailureException) Error() string
func (*InternalFailureException) ErrorCode ¶
func (e *InternalFailureException) ErrorCode() string
func (*InternalFailureException) ErrorFault ¶
func (e *InternalFailureException) ErrorFault() smithy.ErrorFault
func (*InternalFailureException) ErrorMessage ¶
func (e *InternalFailureException) ErrorMessage() string
type Job ¶
type Job struct { // The execution steps for an execution job, for an Amplify app. // // This member is required. Steps []Step // Describes the summary for an execution job for an Amplify app. // // This member is required. Summary *JobSummary // contains filtered or unexported fields }
Describes an execution job for an Amplify app.
type JobStatus ¶
type JobStatus string
const ( JobStatusPending JobStatus = "PENDING" JobStatusProvisioning JobStatus = "PROVISIONING" JobStatusRunning JobStatus = "RUNNING" JobStatusFailed JobStatus = "FAILED" JobStatusSucceed JobStatus = "SUCCEED" JobStatusCancelling JobStatus = "CANCELLING" JobStatusCancelled JobStatus = "CANCELLED" )
Enum values for JobStatus
type JobSummary ¶
type JobSummary struct { // The commit ID from a third-party repository provider for the job. // // This member is required. CommitId *string // The commit message from a third-party repository provider for the job. // // This member is required. CommitMessage *string // The commit date and time for the job. // // This member is required. CommitTime *time.Time // The Amazon Resource Name (ARN) for the job. // // This member is required. JobArn *string // The unique ID for the job. // // This member is required. JobId *string // The type for the job. If the value is RELEASE, the job was manually released // from its source by using the StartJob API. If the value is RETRY, the job was // manually retried using the StartJob API. If the value is WEB_HOOK, the job was // automatically triggered by webhooks. // // This member is required. JobType JobType // The start date and time for the job. // // This member is required. StartTime *time.Time // The current status for the job. // // This member is required. Status JobStatus // The end date and time for the job. EndTime *time.Time // contains filtered or unexported fields }
Describes the summary for an execution job for an Amplify app.
type JobType ¶
type JobType string
type LimitExceededException ¶
type LimitExceededException struct { Message *string // contains filtered or unexported fields }
A resource could not be created because service quotas were exceeded.
func (*LimitExceededException) Error ¶
func (e *LimitExceededException) Error() string
func (*LimitExceededException) ErrorCode ¶
func (e *LimitExceededException) ErrorCode() string
func (*LimitExceededException) ErrorFault ¶
func (e *LimitExceededException) ErrorFault() smithy.ErrorFault
func (*LimitExceededException) ErrorMessage ¶
func (e *LimitExceededException) ErrorMessage() string
type NotFoundException ¶
type NotFoundException struct { Message *string // contains filtered or unexported fields }
An entity was not found during an operation.
func (*NotFoundException) Error ¶
func (e *NotFoundException) Error() string
func (*NotFoundException) ErrorCode ¶
func (e *NotFoundException) ErrorCode() string
func (*NotFoundException) ErrorFault ¶
func (e *NotFoundException) ErrorFault() smithy.ErrorFault
func (*NotFoundException) ErrorMessage ¶
func (e *NotFoundException) ErrorMessage() string
type ProductionBranch ¶
type ProductionBranch struct { // The branch name for the production branch. BranchName *string // The last deploy time of the production branch. LastDeployTime *time.Time // The status of the production branch. Status *string // The thumbnail URL for the production branch. ThumbnailUrl *string // contains filtered or unexported fields }
Describes the information about a production branch for an Amplify app.
type RepositoryCloneMethod ¶ added in v1.11.0
type RepositoryCloneMethod string
const ( RepositoryCloneMethodSsh RepositoryCloneMethod = "SSH" RepositoryCloneMethodToken RepositoryCloneMethod = "TOKEN" RepositoryCloneMethodSigv4 RepositoryCloneMethod = "SIGV4" )
Enum values for RepositoryCloneMethod
func (RepositoryCloneMethod) Values ¶ added in v1.11.0
func (RepositoryCloneMethod) Values() []RepositoryCloneMethod
Values returns all known values for RepositoryCloneMethod. 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.
type ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string Code *string // contains filtered or unexported fields }
An operation failed due to a non-existent resource.
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 Stage ¶
type Stage string
type Step ¶
type Step struct { // The end date and time of the execution step. // // This member is required. EndTime *time.Time // The start date and time of the execution step. // // This member is required. StartTime *time.Time // The status of the execution step. // // This member is required. Status JobStatus // The name of the execution step. // // This member is required. StepName *string // The URL to the artifact for the execution step. ArtifactsUrl *string // The context for the current step. Includes a build image if the step is build. Context *string // The URL to the logs for the execution step. LogUrl *string // The list of screenshot URLs for the execution step, if relevant. Screenshots map[string]string // The reason for the current step status. StatusReason *string // The URL to the test artifact for the execution step. TestArtifactsUrl *string // The URL to the test configuration for the execution step. TestConfigUrl *string // contains filtered or unexported fields }
Describes an execution step, for an execution job, for an Amplify app.
type SubDomain ¶
type SubDomain struct { // The DNS record for the subdomain. // // This member is required. DnsRecord *string // Describes the settings for the subdomain. // // This member is required. SubDomainSetting *SubDomainSetting // The verified status of the subdomain // // This member is required. Verified *bool // contains filtered or unexported fields }
The subdomain for the domain association.
type SubDomainSetting ¶
type SubDomainSetting struct { // The branch name setting for the subdomain. // // This member is required. BranchName *string // The prefix setting for the subdomain. // // This member is required. Prefix *string // contains filtered or unexported fields }
Describes the settings for the subdomain.
type UnauthorizedException ¶
type UnauthorizedException struct { // contains filtered or unexported fields }
An operation failed due to a lack of access.
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 Webhook ¶
type Webhook struct { // The name for a branch that is part of an Amplify app. // // This member is required. BranchName *string // The create date and time for a webhook. // // This member is required. CreateTime *time.Time // The description for a webhook. // // This member is required. Description *string // Updates the date and time for a webhook. // // This member is required. UpdateTime *time.Time // The Amazon Resource Name (ARN) for the webhook. // // This member is required. WebhookArn *string // The ID of the webhook. // // This member is required. WebhookId *string // The URL of the webhook. // // This member is required. WebhookUrl *string // contains filtered or unexported fields }
Describes a webhook that connects repository events to an Amplify app.