com.pulumi.aws.rds.kotlin.Snapshot.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.rds.kotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
/**
* Builder for [Snapshot].
*/
@PulumiTagMarker
public class SnapshotResourceBuilder internal constructor() {
public var name: String? = null
public var args: SnapshotArgs = SnapshotArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend SnapshotArgsBuilder.() -> Unit) {
val builder = SnapshotArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): Snapshot {
val builtJavaResource = com.pulumi.aws.rds.Snapshot(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Snapshot(builtJavaResource)
}
}
/**
* Manages an RDS database instance snapshot. For managing RDS database cluster snapshots, see the `aws.rds.ClusterSnapshot` resource.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const bar = new aws.rds.Instance("bar", {
* allocatedStorage: 10,
* engine: "mysql",
* engineVersion: "5.6.21",
* instanceClass: aws.rds.InstanceType.T2_Micro,
* dbName: "baz",
* password: "barbarbarbar",
* username: "foo",
* maintenanceWindow: "Fri:09:00-Fri:09:30",
* backupRetentionPeriod: 0,
* parameterGroupName: "default.mysql5.6",
* });
* const test = new aws.rds.Snapshot("test", {
* dbInstanceIdentifier: bar.identifier,
* dbSnapshotIdentifier: "testsnapshot1234",
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* bar = aws.rds.Instance("bar",
* allocated_storage=10,
* engine="mysql",
* engine_version="5.6.21",
* instance_class=aws.rds.InstanceType.T2_MICRO,
* db_name="baz",
* password="barbarbarbar",
* username="foo",
* maintenance_window="Fri:09:00-Fri:09:30",
* backup_retention_period=0,
* parameter_group_name="default.mysql5.6")
* test = aws.rds.Snapshot("test",
* db_instance_identifier=bar.identifier,
* db_snapshot_identifier="testsnapshot1234")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var bar = new Aws.Rds.Instance("bar", new()
* {
* AllocatedStorage = 10,
* Engine = "mysql",
* EngineVersion = "5.6.21",
* InstanceClass = Aws.Rds.InstanceType.T2_Micro,
* DbName = "baz",
* Password = "barbarbarbar",
* Username = "foo",
* MaintenanceWindow = "Fri:09:00-Fri:09:30",
* BackupRetentionPeriod = 0,
* ParameterGroupName = "default.mysql5.6",
* });
* var test = new Aws.Rds.Snapshot("test", new()
* {
* DbInstanceIdentifier = bar.Identifier,
* DbSnapshotIdentifier = "testsnapshot1234",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/rds"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* bar, err := rds.NewInstance(ctx, "bar", &rds.InstanceArgs{
* AllocatedStorage: pulumi.Int(10),
* Engine: pulumi.String("mysql"),
* EngineVersion: pulumi.String("5.6.21"),
* InstanceClass: pulumi.String(rds.InstanceType_T2_Micro),
* DbName: pulumi.String("baz"),
* Password: pulumi.String("barbarbarbar"),
* Username: pulumi.String("foo"),
* MaintenanceWindow: pulumi.String("Fri:09:00-Fri:09:30"),
* BackupRetentionPeriod: pulumi.Int(0),
* ParameterGroupName: pulumi.String("default.mysql5.6"),
* })
* if err != nil {
* return err
* }
* _, err = rds.NewSnapshot(ctx, "test", &rds.SnapshotArgs{
* DbInstanceIdentifier: bar.Identifier,
* DbSnapshotIdentifier: pulumi.String("testsnapshot1234"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.rds.Instance;
* import com.pulumi.aws.rds.InstanceArgs;
* import com.pulumi.aws.rds.Snapshot;
* import com.pulumi.aws.rds.SnapshotArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var bar = new Instance("bar", InstanceArgs.builder()
* .allocatedStorage(10)
* .engine("mysql")
* .engineVersion("5.6.21")
* .instanceClass("db.t2.micro")
* .dbName("baz")
* .password("barbarbarbar")
* .username("foo")
* .maintenanceWindow("Fri:09:00-Fri:09:30")
* .backupRetentionPeriod(0)
* .parameterGroupName("default.mysql5.6")
* .build());
* var test = new Snapshot("test", SnapshotArgs.builder()
* .dbInstanceIdentifier(bar.identifier())
* .dbSnapshotIdentifier("testsnapshot1234")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* bar:
* type: aws:rds:Instance
* properties:
* allocatedStorage: 10
* engine: mysql
* engineVersion: 5.6.21
* instanceClass: db.t2.micro
* dbName: baz
* password: barbarbarbar
* username: foo
* maintenanceWindow: Fri:09:00-Fri:09:30
* backupRetentionPeriod: 0
* parameterGroupName: default.mysql5.6
* test:
* type: aws:rds:Snapshot
* properties:
* dbInstanceIdentifier: ${bar.identifier}
* dbSnapshotIdentifier: testsnapshot1234
* ```
*
* ## Import
* Using `pulumi import`, import `aws_db_snapshot` using the snapshot identifier. For example:
* ```sh
* $ pulumi import aws:rds/snapshot:Snapshot example my-snapshot
* ```
*/
public class Snapshot internal constructor(
override val javaResource: com.pulumi.aws.rds.Snapshot,
) : KotlinCustomResource(javaResource, SnapshotMapper) {
/**
* Specifies the allocated storage size in gigabytes (GB).
*/
public val allocatedStorage: Output
get() = javaResource.allocatedStorage().applyValue({ args0 -> args0 })
/**
* Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.
*/
public val availabilityZone: Output
get() = javaResource.availabilityZone().applyValue({ args0 -> args0 })
/**
* The DB Instance Identifier from which to take the snapshot.
*/
public val dbInstanceIdentifier: Output
get() = javaResource.dbInstanceIdentifier().applyValue({ args0 -> args0 })
/**
* The Amazon Resource Name (ARN) for the DB snapshot.
*/
public val dbSnapshotArn: Output
get() = javaResource.dbSnapshotArn().applyValue({ args0 -> args0 })
/**
* The Identifier for the snapshot.
*/
public val dbSnapshotIdentifier: Output
get() = javaResource.dbSnapshotIdentifier().applyValue({ args0 -> args0 })
/**
* Specifies whether the DB snapshot is encrypted.
*/
public val encrypted: Output
get() = javaResource.encrypted().applyValue({ args0 -> args0 })
/**
* Specifies the name of the database engine.
*/
public val engine: Output
get() = javaResource.engine().applyValue({ args0 -> args0 })
/**
* Specifies the version of the database engine.
*/
public val engineVersion: Output
get() = javaResource.engineVersion().applyValue({ args0 -> args0 })
/**
* Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.
*/
public val iops: Output
get() = javaResource.iops().applyValue({ args0 -> args0 })
/**
* The ARN for the KMS encryption key.
*/
public val kmsKeyId: Output
get() = javaResource.kmsKeyId().applyValue({ args0 -> args0 })
/**
* License model information for the restored DB instance.
*/
public val licenseModel: Output
get() = javaResource.licenseModel().applyValue({ args0 -> args0 })
/**
* Provides the option group name for the DB snapshot.
*/
public val optionGroupName: Output
get() = javaResource.optionGroupName().applyValue({ args0 -> args0 })
public val port: Output
get() = javaResource.port().applyValue({ args0 -> args0 })
/**
* List of AWS Account IDs to share the snapshot with. Use `all` to make the snapshot public.
*/
public val sharedAccounts: Output>?
get() = javaResource.sharedAccounts().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
public val snapshotType: Output
get() = javaResource.snapshotType().applyValue({ args0 -> args0 })
/**
* The DB snapshot Arn that the DB snapshot was copied from. It only has value in case of cross customer or cross region copy.
*/
public val sourceDbSnapshotIdentifier: Output
get() = javaResource.sourceDbSnapshotIdentifier().applyValue({ args0 -> args0 })
/**
* The region that the DB snapshot was created in or copied from.
*/
public val sourceRegion: Output
get() = javaResource.sourceRegion().applyValue({ args0 -> args0 })
/**
* Specifies the status of this DB snapshot.
*/
public val status: Output
get() = javaResource.status().applyValue({ args0 -> args0 })
/**
* Specifies the storage type associated with DB snapshot.
*/
public val storageType: Output
get() = javaResource.storageType().applyValue({ args0 -> args0 })
/**
* Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*/
public val tags: Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy