Documentation
¶
Index ¶
- type AccessDeniedException
- type AccessTokenSummary
- type ComparisonOperator
- type ConflictException
- type DevEnvironmentAccessDetails
- type DevEnvironmentRepositorySummary
- type DevEnvironmentSessionConfiguration
- type DevEnvironmentSessionSummary
- type DevEnvironmentSessionType
- type DevEnvironmentStatus
- type DevEnvironmentSummary
- type EmailAddress
- type EventLogEntry
- type EventPayload
- type ExecuteCommandSessionConfiguration
- type Filter
- type FilterKey
- type Ide
- type IdeConfiguration
- type InstanceType
- type ListSourceRepositoriesItem
- type ListSourceRepositoryBranchesItem
- type OperationType
- type PersistentStorage
- type PersistentStorageConfiguration
- type ProjectInformation
- type ProjectListFilter
- type ProjectSummary
- type RepositoryInput
- type ResourceNotFoundException
- type ServiceQuotaExceededException
- type SpaceSummary
- type ThrottlingException
- type UserIdentity
- type UserType
- type ValidationException
- type WorkflowDefinition
- type WorkflowDefinitionSummary
- type WorkflowRunMode
- type WorkflowRunSortCriteria
- type WorkflowRunStatus
- type WorkflowRunStatusReason
- type WorkflowRunSummary
- type WorkflowSortCriteria
- type WorkflowStatus
- type WorkflowSummary
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccessDeniedException ¶
type AccessDeniedException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.
func (*AccessDeniedException) Error ¶
func (e *AccessDeniedException) Error() string
func (*AccessDeniedException) ErrorCode ¶
func (e *AccessDeniedException) ErrorCode() string
func (*AccessDeniedException) ErrorFault ¶
func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault
func (*AccessDeniedException) ErrorMessage ¶
func (e *AccessDeniedException) ErrorMessage() string
type AccessTokenSummary ¶
type AccessTokenSummary struct { // The system-generated ID of the personal access token. // // This member is required. Id *string // The friendly name of the personal access token. // // This member is required. Name *string // The date and time when the personal access token will expire, in coordinated // universal time (UTC) timestamp format as specified in [RFC 3339]. // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 ExpiresTime *time.Time // contains filtered or unexported fields }
Information about a specified personal access token (PAT).
type ComparisonOperator ¶
type ComparisonOperator string
const ( ComparisonOperatorEquals ComparisonOperator = "EQ" ComparisonOperatorGreaterThan ComparisonOperator = "GT" ComparisonOperatorGreaterThanOrEquals ComparisonOperator = "GE" ComparisonOperatorLessThan ComparisonOperator = "LT" ComparisonOperatorLessThanOrEquals ComparisonOperator = "LE" ComparisonOperatorBeginsWith ComparisonOperator = "BEGINS_WITH" )
Enum values for ComparisonOperator
func (ComparisonOperator) Values ¶
func (ComparisonOperator) Values() []ComparisonOperator
Values returns all known values for ComparisonOperator. 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 ConflictException ¶
type ConflictException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request. Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.
func (*ConflictException) Error ¶
func (e *ConflictException) Error() string
func (*ConflictException) ErrorCode ¶
func (e *ConflictException) ErrorCode() string
func (*ConflictException) ErrorFault ¶
func (e *ConflictException) ErrorFault() smithy.ErrorFault
func (*ConflictException) ErrorMessage ¶
func (e *ConflictException) ErrorMessage() string
type DevEnvironmentAccessDetails ¶
type DevEnvironmentAccessDetails struct { // The URL used to send commands to and from the Dev Environment. // // This member is required. StreamUrl *string // An encrypted token value that contains session and caller information used to // authenticate the connection. // // This member is required. TokenValue *string // contains filtered or unexported fields }
Information about connection details for a Dev Environment.
type DevEnvironmentRepositorySummary ¶
type DevEnvironmentRepositorySummary struct { // The name of the source repository. // // This member is required. RepositoryName *string // The name of the branch in a source repository cloned into the Dev Environment. BranchName *string // contains filtered or unexported fields }
Information about the source repsitory for a Dev Environment.
type DevEnvironmentSessionConfiguration ¶
type DevEnvironmentSessionConfiguration struct { // The type of the session. // // This member is required. SessionType DevEnvironmentSessionType // Information about optional commands that will be run on the Dev Environment // when the SSH session begins. ExecuteCommandSessionConfiguration *ExecuteCommandSessionConfiguration // contains filtered or unexported fields }
Information about the configuration of a Dev Environment session.
type DevEnvironmentSessionSummary ¶ added in v1.3.0
type DevEnvironmentSessionSummary struct { // The system-generated unique ID of the Dev Environment. // // This member is required. DevEnvironmentId *string // The system-generated unique ID of the Dev Environment session. // // This member is required. Id *string // The name of the project in the space. // // This member is required. ProjectName *string // The name of the space. // // This member is required. SpaceName *string // The date and time the session started, in coordinated universal time (UTC) // timestamp format as specified in [RFC 3339] // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 // // This member is required. StartedTime *time.Time // contains filtered or unexported fields }
Information about active sessions for a Dev Environment.
type DevEnvironmentSessionType ¶
type DevEnvironmentSessionType string
const ( DevEnvironmentSessionTypeSsm DevEnvironmentSessionType = "SSM" DevEnvironmentSessionTypeSsh DevEnvironmentSessionType = "SSH" )
Enum values for DevEnvironmentSessionType
func (DevEnvironmentSessionType) Values ¶
func (DevEnvironmentSessionType) Values() []DevEnvironmentSessionType
Values returns all known values for DevEnvironmentSessionType. 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 DevEnvironmentStatus ¶
type DevEnvironmentStatus string
const ( DevEnvironmentStatusPending DevEnvironmentStatus = "PENDING" DevEnvironmentStatusRunning DevEnvironmentStatus = "RUNNING" DevEnvironmentStatusStarting DevEnvironmentStatus = "STARTING" DevEnvironmentStatusStopping DevEnvironmentStatus = "STOPPING" DevEnvironmentStatusStopped DevEnvironmentStatus = "STOPPED" DevEnvironmentStatusFailed DevEnvironmentStatus = "FAILED" DevEnvironmentStatusDeleting DevEnvironmentStatus = "DELETING" DevEnvironmentStatusDeleted DevEnvironmentStatus = "DELETED" )
Enum values for DevEnvironmentStatus
func (DevEnvironmentStatus) Values ¶
func (DevEnvironmentStatus) Values() []DevEnvironmentStatus
Values returns all known values for DevEnvironmentStatus. 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 DevEnvironmentSummary ¶
type DevEnvironmentSummary struct { // The system-generated unique ID of the user who created the Dev Environment. // // This member is required. CreatorId *string // The system-generated unique ID for the Dev Environment. // // This member is required. Id *string // The amount of time the Dev Environment will run without any activity detected // before stopping, in minutes. Dev Environments consume compute minutes when // running. // // This member is required. InactivityTimeoutMinutes int32 // The Amazon EC2 instace type used for the Dev Environment. // // This member is required. InstanceType InstanceType // The time when the Dev Environment was last updated, in coordinated universal // time (UTC) timestamp format as specified in [RFC 3339]. // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 // // This member is required. LastUpdatedTime *time.Time // Information about the configuration of persistent storage for the Dev // Environment. // // This member is required. PersistentStorage *PersistentStorage // Information about the repositories that will be cloned into the Dev // Environment. If no rvalue is specified, no repository is cloned. // // This member is required. Repositories []DevEnvironmentRepositorySummary // The status of the Dev Environment. // // This member is required. Status DevEnvironmentStatus // The user-specified alias for the Dev Environment. Alias *string // Information about the integrated development environment (IDE) configured for a // Dev Environment. Ides []Ide // The name of the project in the space. ProjectName *string // The name of the space. SpaceName *string // The reason for the status. StatusReason *string // The name of the connection used to connect to Amazon VPC used when the Dev // Environment was created, if any. VpcConnectionName *string // contains filtered or unexported fields }
Information about a Dev Environment.
type EmailAddress ¶
type EmailAddress struct { // The email address. Email *string // Whether the email address has been verified. Verified *bool // contains filtered or unexported fields }
Information about an email address.
type EventLogEntry ¶
type EventLogEntry struct { // The category for the event. // // This member is required. EventCategory *string // The name of the event. // // This member is required. EventName *string // The source of the event. // // This member is required. EventSource *string // The time the event took place, in coordinated universal time (UTC) timestamp // format as specified in [RFC 3339]. // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 // // This member is required. EventTime *time.Time // The type of the event. // // This member is required. EventType *string // The system-generated unique ID of the event. // // This member is required. Id *string // The type of the event. // // This member is required. OperationType OperationType // The system-generated unique ID of the user whose actions are recorded in the // event. // // This member is required. UserIdentity *UserIdentity // The code of the error, if any. ErrorCode *string // Information about the project where the event occurred. ProjectInformation *ProjectInformation // The system-generated unique ID of the request. RequestId *string // Information about the payload of the request. RequestPayload *EventPayload // Information about the payload of the response, if any. ResponsePayload *EventPayload // The IP address of the user whose actions are recorded in the event. SourceIpAddress *string // The user agent whose actions are recorded in the event. UserAgent *string // contains filtered or unexported fields }
Information about an entry in an event log of Amazon CodeCatalyst activity.
type EventPayload ¶
type EventPayload struct { // The type of content in the event payload. ContentType *string // The data included in the event payload. Data *string // contains filtered or unexported fields }
Information about the payload of an event recording Amazon CodeCatalyst activity.
type ExecuteCommandSessionConfiguration ¶
type ExecuteCommandSessionConfiguration struct { // The command used at the beginning of the SSH session to a Dev Environment. // // This member is required. Command *string // An array of arguments containing arguments and members. Arguments []string // contains filtered or unexported fields }
Information about the commands that will be run on a Dev Environment when an SSH session begins.
type Filter ¶
type Filter struct { // A key that can be used to sort results. // // This member is required. Key *string // The values of the key. // // This member is required. Values []string // The operator used to compare the fields. ComparisonOperator *string // contains filtered or unexported fields }
Information about a filter used to limit results of a query.
type Ide ¶
type Ide struct { // The name of the IDE. Name *string // A link to the IDE runtime image. Runtime *string // contains filtered or unexported fields }
Information about an integrated development environment (IDE) used in a Dev Environment.
type IdeConfiguration ¶
type IdeConfiguration struct { // The name of the IDE. Valid values include Cloud9 , IntelliJ , PyCharm , GoLand , // and VSCode . Name *string // A link to the IDE runtime image. // // This parameter is not required for VSCode . Runtime *string // contains filtered or unexported fields }
Information about the configuration of an integrated development environment (IDE) for a Dev Environment.
type InstanceType ¶
type InstanceType string
const ( InstanceTypeDevStandard1Small InstanceType = "dev.standard1.small" InstanceTypeDevStandard1Medium InstanceType = "dev.standard1.medium" InstanceTypeDevStandard1Large InstanceType = "dev.standard1.large" InstanceTypeDevStandard1Xlarge InstanceType = "dev.standard1.xlarge" )
Enum values for InstanceType
func (InstanceType) Values ¶
func (InstanceType) Values() []InstanceType
Values returns all known values for InstanceType. 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 ListSourceRepositoriesItem ¶
type ListSourceRepositoriesItem struct { // The time the source repository was created, in coordinated universal time (UTC) // timestamp format as specified in [RFC 3339]. // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 // // This member is required. CreatedTime *time.Time // The system-generated unique ID of the source repository. // // This member is required. Id *string // The time the source repository was last updated, in coordinated universal time // (UTC) timestamp format as specified in [RFC 3339]. // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 // // This member is required. LastUpdatedTime *time.Time // The name of the source repository. // // This member is required. Name *string // The description of the repository, if any. Description *string // contains filtered or unexported fields }
Information about a source repository returned in a list of source repositories.
type ListSourceRepositoryBranchesItem ¶
type ListSourceRepositoryBranchesItem struct { // The commit ID of the tip of the branch at the time of the request, also known // as the head commit. HeadCommitId *string // The time the branch was last updated, in coordinated universal time (UTC) // timestamp format as specified in [RFC 3339]. // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 LastUpdatedTime *time.Time // The name of the branch. Name *string // The Git reference name of the branch. Ref *string // contains filtered or unexported fields }
Information about a branch of a source repository returned in a list of branches.
type OperationType ¶
type OperationType string
const ( OperationTypeReadonly OperationType = "READONLY" OperationTypeMutation OperationType = "MUTATION" )
Enum values for OperationType
func (OperationType) Values ¶
func (OperationType) Values() []OperationType
Values returns all known values for OperationType. 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 PersistentStorage ¶
type PersistentStorage struct { // The size of the persistent storage in gigabytes (specifically GiB). // // Valid values for storage are based on memory sizes in 16GB increments. Valid // values are 16, 32, and 64. // // This member is required. SizeInGiB *int32 // contains filtered or unexported fields }
Information about the persistent storage for a Dev Environment.
type PersistentStorageConfiguration ¶
type PersistentStorageConfiguration struct { // The size of the persistent storage in gigabytes (specifically GiB). // // Valid values for storage are based on memory sizes in 16GB increments. Valid // values are 16, 32, and 64. // // This member is required. SizeInGiB *int32 // contains filtered or unexported fields }
Information about the configuration of persistent storage for a Dev Environment.
type ProjectInformation ¶
type ProjectInformation struct { // The name of the project in the space. Name *string // The system-generated unique ID of the project. ProjectId *string // contains filtered or unexported fields }
Information about a project in a space.
type ProjectListFilter ¶
type ProjectListFilter struct { // A key that can be used to sort results. // // This member is required. Key FilterKey // The values of the key. // // This member is required. Values []string // The operator used to compare the fields. ComparisonOperator ComparisonOperator // contains filtered or unexported fields }
nformation about the filter used to narrow the results returned in a list of projects.
type ProjectSummary ¶
type ProjectSummary struct { // The name of the project in the space. // // This member is required. Name *string // The description of the project. Description *string // The friendly name displayed to users of the project in Amazon CodeCatalyst. DisplayName *string // contains filtered or unexported fields }
Information about a project.
type RepositoryInput ¶
type RepositoryInput struct { // The name of the source repository. // // This member is required. RepositoryName *string // The name of the branch in a source repository. BranchName *string // contains filtered or unexported fields }
Information about a repository that will be cloned to a Dev Environment.
type ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the 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 ServiceQuotaExceededException ¶
type ServiceQuotaExceededException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce the number of resources, or change the tier if applicable.
func (*ServiceQuotaExceededException) Error ¶
func (e *ServiceQuotaExceededException) Error() string
func (*ServiceQuotaExceededException) ErrorCode ¶
func (e *ServiceQuotaExceededException) ErrorCode() string
func (*ServiceQuotaExceededException) ErrorFault ¶
func (e *ServiceQuotaExceededException) ErrorFault() smithy.ErrorFault
func (*ServiceQuotaExceededException) ErrorMessage ¶
func (e *ServiceQuotaExceededException) ErrorMessage() string
type SpaceSummary ¶
type SpaceSummary struct { // The name of the space. // // This member is required. Name *string // The Amazon Web Services Region where the space exists. // // This member is required. RegionName *string // The description of the space. Description *string // The friendly name of the space displayed to users. DisplayName *string // contains filtered or unexported fields }
Information about an space.
type ThrottlingException ¶
type ThrottlingException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The request was denied due to request throttling.
func (*ThrottlingException) Error ¶
func (e *ThrottlingException) Error() string
func (*ThrottlingException) ErrorCode ¶
func (e *ThrottlingException) ErrorCode() string
func (*ThrottlingException) ErrorFault ¶
func (e *ThrottlingException) ErrorFault() smithy.ErrorFault
func (*ThrottlingException) ErrorMessage ¶
func (e *ThrottlingException) ErrorMessage() string
type UserIdentity ¶
type UserIdentity struct { // The ID of the Amazon CodeCatalyst service principal. // // This member is required. PrincipalId *string // The role assigned to the user in a Amazon CodeCatalyst space or project when // the event occurred. // // This member is required. UserType UserType // The Amazon Web Services account number of the user in Amazon Web Services, if // any. AwsAccountId *string // The display name of the user in Amazon CodeCatalyst. UserName *string // contains filtered or unexported fields }
Information about a user whose activity is recorded in an event for a space.
type UserType ¶
type UserType string
type ValidationException ¶
type ValidationException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.
func (*ValidationException) Error ¶
func (e *ValidationException) Error() string
func (*ValidationException) ErrorCode ¶
func (e *ValidationException) ErrorCode() string
func (*ValidationException) ErrorFault ¶
func (e *ValidationException) ErrorFault() smithy.ErrorFault
func (*ValidationException) ErrorMessage ¶
func (e *ValidationException) ErrorMessage() string
type WorkflowDefinition ¶ added in v1.8.0
type WorkflowDefinition struct { // The path to the workflow definition file stored in the source repository for // the project, including the file name. // // This member is required. Path *string // contains filtered or unexported fields }
Information about a workflow definition file.
type WorkflowDefinitionSummary ¶ added in v1.8.0
type WorkflowDefinitionSummary struct { // The path to the workflow definition file stored in the source repository for // the project, including the file name. // // This member is required. Path *string // contains filtered or unexported fields }
Information about a workflow definition.
type WorkflowRunMode ¶ added in v1.8.0
type WorkflowRunMode string
const ( WorkflowRunModeQueued WorkflowRunMode = "QUEUED" WorkflowRunModeParallel WorkflowRunMode = "PARALLEL" WorkflowRunModeSuperseded WorkflowRunMode = "SUPERSEDED" )
Enum values for WorkflowRunMode
func (WorkflowRunMode) Values ¶ added in v1.8.0
func (WorkflowRunMode) Values() []WorkflowRunMode
Values returns all known values for WorkflowRunMode. 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 WorkflowRunSortCriteria ¶ added in v1.8.0
type WorkflowRunSortCriteria struct {
// contains filtered or unexported fields
}
Information used to sort workflow runs in the returned list.
type WorkflowRunStatus ¶ added in v1.8.0
type WorkflowRunStatus string
const ( WorkflowRunStatusSucceeded WorkflowRunStatus = "SUCCEEDED" WorkflowRunStatusFailed WorkflowRunStatus = "FAILED" WorkflowRunStatusStopped WorkflowRunStatus = "STOPPED" WorkflowRunStatusSuperseded WorkflowRunStatus = "SUPERSEDED" WorkflowRunStatusCancelled WorkflowRunStatus = "CANCELLED" WorkflowRunStatusNotRun WorkflowRunStatus = "NOT_RUN" WorkflowRunStatusValidating WorkflowRunStatus = "VALIDATING" WorkflowRunStatusProvisioning WorkflowRunStatus = "PROVISIONING" WorkflowRunStatusInProgress WorkflowRunStatus = "IN_PROGRESS" WorkflowRunStatusStopping WorkflowRunStatus = "STOPPING" WorkflowRunStatusAbandoned WorkflowRunStatus = "ABANDONED" )
Enum values for WorkflowRunStatus
func (WorkflowRunStatus) Values ¶ added in v1.8.0
func (WorkflowRunStatus) Values() []WorkflowRunStatus
Values returns all known values for WorkflowRunStatus. 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 WorkflowRunStatusReason ¶ added in v1.8.0
type WorkflowRunStatusReason struct {
// contains filtered or unexported fields
}
Information about the status of a workflow run.
type WorkflowRunSummary ¶ added in v1.8.0
type WorkflowRunSummary struct { // The system-generated unique ID of the workflow run. // // This member is required. Id *string // The date and time the workflow was last updated, in coordinated universal time // (UTC) timestamp format as specified in [RFC 3339] // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 // // This member is required. LastUpdatedTime *time.Time // The date and time the workflow run began, in coordinated universal time (UTC) // timestamp format as specified in [RFC 3339]. // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 // // This member is required. StartTime *time.Time // The status of the workflow run. // // This member is required. Status WorkflowRunStatus // The system-generated unique ID of the workflow. // // This member is required. WorkflowId *string // The name of the workflow. // // This member is required. WorkflowName *string // The date and time the workflow run ended, in coordinated universal time (UTC) // timestamp format as specified in [RFC 3339] // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 EndTime *time.Time // The reasons for the workflow run status. StatusReasons []WorkflowRunStatusReason // contains filtered or unexported fields }
Information about a workflow run.
type WorkflowSortCriteria ¶ added in v1.8.0
type WorkflowSortCriteria struct {
// contains filtered or unexported fields
}
Information used to sort workflows in the returned list.
type WorkflowStatus ¶ added in v1.8.0
type WorkflowStatus string
const ( WorkflowStatusInvalid WorkflowStatus = "INVALID" WorkflowStatusActive WorkflowStatus = "ACTIVE" )
Enum values for WorkflowStatus
func (WorkflowStatus) Values ¶ added in v1.8.0
func (WorkflowStatus) Values() []WorkflowStatus
Values returns all known values for WorkflowStatus. 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 WorkflowSummary ¶ added in v1.8.0
type WorkflowSummary struct { // The date and time the workflow was created, in coordinated universal time (UTC) // timestamp format as specified in [RFC 3339] // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 // // This member is required. CreatedTime *time.Time // Information about the workflow definition file. // // This member is required. Definition *WorkflowDefinitionSummary // The system-generated unique ID of a workflow. // // This member is required. Id *string // The date and time the workflow was last updated, in coordinated universal time // (UTC) timestamp format as specified in [RFC 3339] // // [RFC 3339]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 // // This member is required. LastUpdatedTime *time.Time // The name of the workflow. // // This member is required. Name *string // The run mode of the workflow. // // This member is required. RunMode WorkflowRunMode // The name of the branch of the source repository where the workflow definition // file is stored. // // This member is required. SourceBranchName *string // The name of the source repository where the workflow definition file is stored. // // This member is required. SourceRepositoryName *string // The status of the workflow. // // This member is required. Status WorkflowStatus // contains filtered or unexported fields }
Information about a workflow.