Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.opsworks.kotlin
import com.pulumi.aws.opsworks.kotlin.outputs.CustomLayerCloudwatchConfiguration
import com.pulumi.aws.opsworks.kotlin.outputs.CustomLayerEbsVolume
import com.pulumi.aws.opsworks.kotlin.outputs.CustomLayerLoadBasedAutoScaling
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
import com.pulumi.aws.opsworks.kotlin.outputs.CustomLayerCloudwatchConfiguration.Companion.toKotlin as customLayerCloudwatchConfigurationToKotlin
import com.pulumi.aws.opsworks.kotlin.outputs.CustomLayerEbsVolume.Companion.toKotlin as customLayerEbsVolumeToKotlin
import com.pulumi.aws.opsworks.kotlin.outputs.CustomLayerLoadBasedAutoScaling.Companion.toKotlin as customLayerLoadBasedAutoScalingToKotlin
/**
* Builder for [CustomLayer].
*/
@PulumiTagMarker
public class CustomLayerResourceBuilder internal constructor() {
public var name: String? = null
public var args: CustomLayerArgs = CustomLayerArgs()
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 CustomLayerArgsBuilder.() -> Unit) {
val builder = CustomLayerArgsBuilder()
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(): CustomLayer {
val builtJavaResource = com.pulumi.aws.opsworks.CustomLayer(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return CustomLayer(builtJavaResource)
}
}
/**
* Provides an OpsWorks custom layer resource.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const custlayer = new aws.opsworks.CustomLayer("custlayer", {
* name: "My Awesome Custom Layer",
* shortName: "awesome",
* stackId: main.id,
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* custlayer = aws.opsworks.CustomLayer("custlayer",
* name="My Awesome Custom Layer",
* short_name="awesome",
* stack_id=main["id"])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var custlayer = new Aws.OpsWorks.CustomLayer("custlayer", new()
* {
* Name = "My Awesome Custom Layer",
* ShortName = "awesome",
* StackId = main.Id,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/opsworks"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := opsworks.NewCustomLayer(ctx, "custlayer", &opsworks.CustomLayerArgs{
* Name: pulumi.String("My Awesome Custom Layer"),
* ShortName: pulumi.String("awesome"),
* StackId: pulumi.Any(main.Id),
* })
* 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.opsworks.CustomLayer;
* import com.pulumi.aws.opsworks.CustomLayerArgs;
* 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 custlayer = new CustomLayer("custlayer", CustomLayerArgs.builder()
* .name("My Awesome Custom Layer")
* .shortName("awesome")
* .stackId(main.id())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* custlayer:
* type: aws:opsworks:CustomLayer
* properties:
* name: My Awesome Custom Layer
* shortName: awesome
* stackId: ${main.id}
* ```
*
* ## Import
* Using `pulumi import`, import OpsWorks Custom Layers using the `id`. For example:
* ```sh
* $ pulumi import aws:opsworks/customLayer:CustomLayer bar 00000000-0000-0000-0000-000000000000
* ```
*/
public class CustomLayer internal constructor(
override val javaResource: com.pulumi.aws.opsworks.CustomLayer,
) : KotlinCustomResource(javaResource, CustomLayerMapper) {
/**
* The Amazon Resource Name(ARN) of the layer.
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* Whether to automatically assign an elastic IP address to the layer's instances.
*/
public val autoAssignElasticIps: Output?
get() = javaResource.autoAssignElasticIps().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* For stacks belonging to a VPC, whether to automatically assign a public IP address to each of the layer's instances.
*/
public val autoAssignPublicIps: Output?
get() = javaResource.autoAssignPublicIps().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Whether to enable auto-healing for the layer.
*/
public val autoHealing: Output?
get() = javaResource.autoHealing().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Will create an EBS volume and connect it to the layer's instances. See Cloudwatch Configuration.
*/
public val cloudwatchConfiguration: Output?
get() = javaResource.cloudwatchConfiguration().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> customLayerCloudwatchConfigurationToKotlin(args0) })
}).orElse(null)
})
public val customConfigureRecipes: Output>?
get() = javaResource.customConfigureRecipes().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
public val customDeployRecipes: Output>?
get() = javaResource.customDeployRecipes().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
/**
* The ARN of an IAM profile that will be used for the layer's instances.
*/
public val customInstanceProfileArn: Output?
get() = javaResource.customInstanceProfileArn().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Custom JSON attributes to apply to the layer.
*/
public val customJson: Output?
get() = javaResource.customJson().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Ids for a set of security groups to apply to the layer's instances.
*/
public val customSecurityGroupIds: Output>?
get() = javaResource.customSecurityGroupIds().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
public val customSetupRecipes: Output>?
get() = javaResource.customSetupRecipes().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
public val customShutdownRecipes: Output>?
get() = javaResource.customShutdownRecipes().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
public val customUndeployRecipes: Output>?
get() = javaResource.customUndeployRecipes().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
/**
* Whether to enable Elastic Load Balancing connection draining.
*/
public val drainElbOnShutdown: Output?
get() = javaResource.drainElbOnShutdown().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Will create an EBS volume and connect it to the layer's instances. See EBS Volume.
*/
public val ebsVolumes: Output>
get() = javaResource.ebsVolumes().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
customLayerEbsVolumeToKotlin(args0)
})
})
})
/**
* Name of an Elastic Load Balancer to attach to this layer
*/
public val elasticLoadBalancer: Output?
get() = javaResource.elasticLoadBalancer().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Whether to install OS and package updates on each instance when it boots.
*/
public val installUpdatesOnBoot: Output?
get() = javaResource.installUpdatesOnBoot().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The time, in seconds, that OpsWorks will wait for Chef to complete after triggering the Shutdown event.
*/
public val instanceShutdownTimeout: Output?
get() = javaResource.instanceShutdownTimeout().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Load-based auto scaling configuration. See Load Based AutoScaling
*/
public val loadBasedAutoScaling: Output
get() = javaResource.loadBasedAutoScaling().applyValue({ args0 ->
args0.let({ args0 ->
customLayerLoadBasedAutoScalingToKotlin(args0)
})
})
/**
* A human-readable name for the layer.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* A short, machine-readable name for the layer, which will be used to identify it in the Chef node JSON.
*/
public val shortName: Output
get() = javaResource.shortName().applyValue({ args0 -> args0 })
/**
* ID of the stack the layer will belong to.
*/
public val stackId: Output
get() = javaResource.stackId().applyValue({ args0 -> args0 })
/**
* Names of a set of system packages to install on the layer's instances.
*/
public val systemPackages: Output>?
get() = javaResource.systemPackages().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
/**
* A map of tags to assign to the resource. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
* The following extra optional arguments, all lists of Chef recipe names, allow
* custom Chef recipes to be applied to layer instances at the five different
* lifecycle events, if custom cookbooks are enabled on the layer's stack:
*/
public val tags: Output