Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
class DevEnvironment : KotlinCustomResource

Resource for managing an AWS CodeCatalyst Dev Environment.

Link copied to clipboard
data class DevEnvironmentArgs(val alias: Output<String>? = null, val ides: Output<DevEnvironmentIdesArgs>? = null, val inactivityTimeoutMinutes: Output<Int>? = null, val instanceType: Output<String>? = null, val persistentStorage: Output<DevEnvironmentPersistentStorageArgs>? = null, val projectName: Output<String>? = null, val repositories: Output<List<DevEnvironmentRepositoryArgs>>? = null, val spaceName: Output<String>? = null) : ConvertibleToJava<DevEnvironmentArgs>

Resource for managing an AWS CodeCatalyst Dev Environment.

Link copied to clipboard
Link copied to clipboard
object DevEnvironmentMapper : ResourceMapper<DevEnvironment>
Link copied to clipboard
class Project : KotlinCustomResource

Resource for managing an AWS CodeCatalyst Project.

Link copied to clipboard
data class ProjectArgs(val description: Output<String>? = null, val displayName: Output<String>? = null, val spaceName: Output<String>? = null) : ConvertibleToJava<ProjectArgs>

Resource for managing an AWS CodeCatalyst Project.

Link copied to clipboard
Link copied to clipboard
object ProjectMapper : ResourceMapper<Project>
Link copied to clipboard
Link copied to clipboard
class SourceRepository : KotlinCustomResource

Resource for managing an AWS CodeCatalyst Source Repository.

Link copied to clipboard
data class SourceRepositoryArgs(val description: Output<String>? = null, val name: Output<String>? = null, val projectName: Output<String>? = null, val spaceName: Output<String>? = null) : ConvertibleToJava<SourceRepositoryArgs>

Resource for managing an AWS CodeCatalyst Source Repository.

Link copied to clipboard
object SourceRepositoryMapper : ResourceMapper<SourceRepository>

Functions

Link copied to clipboard
Link copied to clipboard
fun project(name: String): Project
suspend fun project(name: String, block: suspend ProjectResourceBuilder.() -> Unit): Project
Link copied to clipboard